diff --git a/go.mod b/go.mod index e1650bc06..cbe954dd0 100644 --- a/go.mod +++ b/go.mod @@ -35,6 +35,7 @@ require ( golang.org/x/crypto v0.43.0 golang.org/x/sync v0.17.0 gopkg.in/dnaeon/go-vcr.v3 v3.2.0 + gopkg.in/dnaeon/go-vcr.v4 v4.0.5 ) require ( @@ -85,6 +86,7 @@ require ( github.com/fsnotify/fsnotify v1.8.0 // indirect github.com/go-logr/logr v1.4.3 // indirect github.com/go-logr/stdr v1.2.2 // indirect + github.com/goccy/go-yaml v1.18.0 // indirect github.com/golang/protobuf v1.5.4 // indirect github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect github.com/gookit/color v1.5.1 // indirect diff --git a/internal/acctest/acctest.go b/internal/acctest/acctest.go index 78fa20a29..df3bee196 100644 --- a/internal/acctest/acctest.go +++ b/internal/acctest/acctest.go @@ -1,6 +1,10 @@ package acctest import ( + "encoding/base64" + "encoding/json" + "encoding/xml" + "net/http" "os" "strconv" "strings" @@ -9,11 +13,15 @@ import ( "github.com/hashicorp/terraform-plugin-go/tfprotov6" "github.com/hashicorp/terraform-plugin-mux/tf6muxserver" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/scaleway-sdk-go/vcr" "github.com/scaleway/terraform-provider-scaleway/v2/internal/env" "github.com/scaleway/terraform-provider-scaleway/v2/internal/meta" "github.com/scaleway/terraform-provider-scaleway/v2/internal/transport" "github.com/scaleway/terraform-provider-scaleway/v2/provider" "github.com/stretchr/testify/require" + "gopkg.in/dnaeon/go-vcr.v4/pkg/cassette" + "gopkg.in/dnaeon/go-vcr.v4/pkg/recorder" ) func PreCheck(_ *testing.T) {} @@ -25,6 +33,77 @@ type TestTools struct { Cleanup func() } +var foldersUsingVCRv4 = []string{ + "instance", +} + +func folderUsesVCRv4(fullFolderPath string) bool { + fullPathSplit := strings.Split(fullFolderPath, "/") + + folder := fullPathSplit[len(fullPathSplit)-1] + for _, migratedFolder := range foldersUsingVCRv4 { + if migratedFolder == folder { + return true + } + } + + return false +} + +// s3Encoder encodes binary payloads as base64 because serialization changed on go-vcr.v4 +func s3Encoder(i *cassette.Interaction) error { + if !strings.HasSuffix(i.Request.Host, "scw.cloud") { + return nil + } + + if i.Request.Body != "" && i.Request.Headers.Get("Content-Type") == "application/octet-stream" { + requestBody := []byte(i.Request.Body) + if !json.Valid(requestBody) { + err := xml.Unmarshal(requestBody, new(any)) + if err != nil { + i.Request.Body = base64.StdEncoding.EncodeToString(requestBody) + } + } + } + + if i.Response.Body != "" && i.Response.Headers.Get("Content-Type") == "binary/octet-stream" { + responseBody := []byte(i.Response.Body) + if !json.Valid(responseBody) { + err := xml.Unmarshal(responseBody, new(any)) + if err != nil { + i.Response.Body = base64.StdEncoding.EncodeToString(responseBody) + } + } + } + + return nil +} + +func NewRecordedClient(t *testing.T, pkgFolder string, update bool) (client *http.Client, cleanup func(), err error) { + t.Helper() + + s3EncoderHook := vcr.AdditionalHook{ + HookFunc: s3Encoder, + Kind: recorder.AfterCaptureHook, + } + + r, err := vcr.NewHTTPRecorder(t, pkgFolder, update, nil, s3EncoderHook) + if err != nil { + return nil, nil, err + } + + retryOptions := transport.RetryableTransportOptions{} + if !update { + retryOptions.RetryWaitMax = scw.TimeDurationPtr(0) + } + + return &http.Client{ + Transport: transport.NewRetryableTransportWithOptions(r, retryOptions), + }, func() { + require.NoError(t, r.Stop()) // Make sure recorder is stopped once done with it + }, nil +} + func NewTestTools(t *testing.T) *TestTools { t.Helper() @@ -35,8 +114,18 @@ func NewTestTools(t *testing.T) *TestTools { t.Fatalf("cannot detect working directory for testing") } - // Create a http client with recording capabilities - httpClient, cleanup, err := getHTTPRecoder(t, folder, *UpdateCassettes) + // Create an HTTP client with recording capabilities + var ( + httpClient *http.Client + cleanup func() + ) + + if folderUsesVCRv4(folder) { + httpClient, cleanup, err = NewRecordedClient(t, folder, *UpdateCassettes) + } else { + httpClient, cleanup, err = getHTTPRecoder(t, folder, *UpdateCassettes) + } + require.NoError(t, err) // Create meta that will be passed in the provider config @@ -48,11 +137,11 @@ func NewTestTools(t *testing.T) *TestTools { require.NoError(t, err) if !*UpdateCassettes { - // If no recording is happening, the delay to retry to interactions should be 0 + // If no recording is happening, the delay to retry interactions should be 0 tmp := 0 * time.Second transport.DefaultWaitRetryInterval = &tmp } else if os.Getenv(env.RetryDelay) != "" { - // Overriding the delay interval is helpful to reduce the amount of requests performed while waiting for a ressource to be available + // Overriding the delay interval is helpful to reduce the amount of requests performed while waiting for a resource to be available tmp, err := time.ParseDuration(os.Getenv(env.RetryDelay)) if err != nil { t.Fatal(err) diff --git a/internal/services/instance/server_test.go b/internal/services/instance/server_test.go index 3fa73ddeb..0c58253d2 100644 --- a/internal/services/instance/server_test.go +++ b/internal/services/instance/server_test.go @@ -726,25 +726,25 @@ func TestAccServer_WithPlacementGroup(t *testing.T) { policy_type = "max_availability" } - resource "scaleway_instance_server" "base" { + resource "scaleway_instance_server" "ha" { count = 3 name = "tf-tests-server-${count.index}-with-placement-group" image = "ubuntu_focal" type = "PLAY2-PICO" placement_group_id = "${scaleway_instance_placement_group.ha.id}" - tags = [ "terraform-test", "scaleway_instance_server", "placement_group" ] + tags = [ "terraform-test", "scaleway_instance_server", "placement_group", "${count.index}" ] }`, Check: resource.ComposeTestCheckFunc( - isServerPresent(tt, "scaleway_instance_server.base.0"), - isServerPresent(tt, "scaleway_instance_server.base.1"), - isServerPresent(tt, "scaleway_instance_server.base.2"), + isServerPresent(tt, "scaleway_instance_server.ha.0"), + isServerPresent(tt, "scaleway_instance_server.ha.1"), + isServerPresent(tt, "scaleway_instance_server.ha.2"), isPlacementGroupPresent(tt, "scaleway_instance_placement_group.ha"), resource.TestCheckResourceAttr("scaleway_instance_placement_group.ha", "policy_respected", "true"), // placement_group_policy_respected is deprecated and should always be false. - resource.TestCheckResourceAttr("scaleway_instance_server.base.0", "placement_group_policy_respected", "false"), - resource.TestCheckResourceAttr("scaleway_instance_server.base.1", "placement_group_policy_respected", "false"), - resource.TestCheckResourceAttr("scaleway_instance_server.base.2", "placement_group_policy_respected", "false"), + resource.TestCheckResourceAttr("scaleway_instance_server.ha.0", "placement_group_policy_respected", "false"), + resource.TestCheckResourceAttr("scaleway_instance_server.ha.1", "placement_group_policy_respected", "false"), + resource.TestCheckResourceAttr("scaleway_instance_server.ha.2", "placement_group_policy_respected", "false"), ), }, }, @@ -1405,12 +1405,14 @@ func TestAccServer_CustomDiffImage(t *testing.T) { image = "ubuntu_jammy" type = "DEV1-S" state = "stopped" + tags = [ "main" ] } resource "scaleway_instance_server" "control" { name = "control-server" image = "ubuntu_jammy" type = "DEV1-S" state = "stopped" + tags = [ "control" ] } `, Check: resource.ComposeTestCheckFunc( @@ -1433,12 +1435,14 @@ func TestAccServer_CustomDiffImage(t *testing.T) { image = data.scaleway_marketplace_image.jammy.id type = "DEV1-S" state = "stopped" + tags = [ "main" ] } resource "scaleway_instance_server" "control" { name = "control-server" image = "ubuntu_jammy" type = "DEV1-S" state = "stopped" + tags = [ "conntrol" ] } `, marketplaceImageType), Check: resource.ComposeTestCheckFunc( @@ -1462,12 +1466,14 @@ func TestAccServer_CustomDiffImage(t *testing.T) { image = data.scaleway_marketplace_image.focal.id type = "DEV1-S" state = "stopped" + tags = [ "main" ] } resource "scaleway_instance_server" "control" { name = "control-server" image = "ubuntu_jammy" type = "DEV1-S" state = "stopped" + tags = [ "conntrol" ] } `, marketplaceImageType), Check: resource.ComposeTestCheckFunc( 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 0bb8762b2..f2662983c 100644 --- a/internal/services/instance/testdata/data-source-image-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-image-basic.cassette.yaml @@ -27,29 +27,21 @@ interactions: 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"}}' + body: '{"image": {"id": "cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "6e66445c-e52e-4cfa-bf4c-f36e291e2c30", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2020-07-09T10:38:16.265025+00:00", "modification_date": "2020-07-09T10:38:16.265025+00:00", "default_bootscript": null, "from_server": "", "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: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6c146c18-8008-4653-a44d-fb242e92cbe3 + - f330404b-adf8-40ae-a1e6-02e216924990 status: 200 OK code: 200 - duration: 27.780745ms + duration: 32.562198ms - id: 1 request: proto: HTTP/1.1 @@ -76,29 +68,21 @@ interactions: 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"}}' + body: '{"image": {"id": "cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "6e66445c-e52e-4cfa-bf4c-f36e291e2c30", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2020-07-09T10:38:16.265025+00:00", "modification_date": "2020-07-09T10:38:16.265025+00:00", "default_bootscript": null, "from_server": "", "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: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e474ce35-c140-4b72-a574-ec40a4eff35f + - b9d77c0f-faeb-46d3-bd96-b11bdb2436e1 status: 200 OK code: 200 - duration: 37.00371ms + duration: 36.085286ms - id: 2 request: proto: HTTP/1.1 @@ -125,29 +109,21 @@ interactions: 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"}}' + body: '{"image": {"id": "cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "6e66445c-e52e-4cfa-bf4c-f36e291e2c30", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2020-07-09T10:38:16.265025+00:00", "modification_date": "2020-07-09T10:38:16.265025+00:00", "default_bootscript": null, "from_server": "", "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: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b2a1830b-5cf4-4bfc-bd8b-e0d3f6e4638f + - 286c6165-3ad7-48d3-905e-fbdd3774bb30 status: 200 OK code: 200 - duration: 45.295561ms + duration: 105.675074ms - id: 3 request: proto: HTTP/1.1 @@ -174,29 +150,21 @@ interactions: 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"}}' + body: '{"image": {"id": "cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "6e66445c-e52e-4cfa-bf4c-f36e291e2c30", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2020-07-09T10:38:16.265025+00:00", "modification_date": "2020-07-09T10:38:16.265025+00:00", "default_bootscript": null, "from_server": "", "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: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - adaa68bc-d5fa-4f2a-a65a-f2f6787b0337 + - 494c0add-b9ee-43c3-bf75-3e0ea4cfbeb7 status: 200 OK code: 200 - duration: 49.034668ms + duration: 33.802598ms - id: 4 request: proto: HTTP/1.1 @@ -223,29 +191,21 @@ interactions: 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"}}' + body: '{"image": {"id": "cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "6e66445c-e52e-4cfa-bf4c-f36e291e2c30", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2020-07-09T10:38:16.265025+00:00", "modification_date": "2020-07-09T10:38:16.265025+00:00", "default_bootscript": null, "from_server": "", "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: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ea132285-0dac-46a3-bef0-f871d01d9f10 + - 61809fac-6f2f-4d58-9048-4ad00cd41086 status: 200 OK code: 200 - duration: 42.29116ms + duration: 152.580062ms - id: 5 request: proto: HTTP/1.1 @@ -272,29 +232,21 @@ interactions: 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"}}' + body: '{"image": {"id": "cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "6e66445c-e52e-4cfa-bf4c-f36e291e2c30", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2020-07-09T10:38:16.265025+00:00", "modification_date": "2020-07-09T10:38:16.265025+00:00", "default_bootscript": null, "from_server": "", "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: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 35ff8bd5-cef9-480c-a19d-940479aacc98 + - 1e9fd44c-69b4-4b47-9d4c-6004be19c45d status: 200 OK code: 200 - duration: 49.417004ms + duration: 152.599809ms - id: 6 request: proto: HTTP/1.1 @@ -321,29 +273,21 @@ interactions: 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"}}' + body: '{"image": {"id": "cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "6e66445c-e52e-4cfa-bf4c-f36e291e2c30", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2020-07-09T10:38:16.265025+00:00", "modification_date": "2020-07-09T10:38:16.265025+00:00", "default_bootscript": null, "from_server": "", "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: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 01f503ef-c3f0-422f-b098-d7d0845cded5 + - 3408d492-f2b9-4eb0-9d9d-7d4e77126376 status: 200 OK code: 200 - duration: 31.801801ms + duration: 116.085221ms - id: 7 request: proto: HTTP/1.1 @@ -370,26 +314,18 @@ interactions: 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"}}' + body: '{"image": {"id": "cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "6e66445c-e52e-4cfa-bf4c-f36e291e2c30", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2020-07-09T10:38:16.265025+00:00", "modification_date": "2020-07-09T10:38:16.265025+00:00", "default_bootscript": null, "from_server": "", "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: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9ff77587-f7fd-4164-aebf-cce275606237 + - af53bd86-af6a-4303-9f38-c6ac2d022a5d status: 200 OK code: 200 - duration: 33.521774ms + duration: 121.158938ms 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 8ae1b66eb..3aa0f8aa1 100644 --- a/internal/services/instance/testdata/data-source-ip-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-ip-basic.cassette.yaml @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "3199c4d1-78f4-4a50-be36-e3c6e04c658f"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:53:43 GMT Location: - 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: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 60001771-461b-47ac-aead-eb582be21703 + - 959fa40a-7633-43f2-97f9-f793a78864fe status: 201 Created code: 201 - duration: 546.488132ms + duration: 1.119382123s - id: 1 request: proto: HTTP/1.1 @@ -80,29 +72,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "3199c4d1-78f4-4a50-be36-e3c6e04c658f"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f77f7f74-bbf1-4030-84c8-39c892605cd0 + - 42ff42fe-0aff-454c-b800-c826655c8b60 status: 200 OK code: 200 - duration: 106.600896ms + duration: 124.555431ms - id: 2 request: proto: HTTP/1.1 @@ -129,29 +113,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "3199c4d1-78f4-4a50-be36-e3c6e04c658f"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 90399244-606b-417f-86ff-cf9f610cc8fc + - 6ce32de2-c34c-4d9c-9b28-4d8ebd832735 status: 200 OK code: 200 - duration: 129.902592ms + duration: 108.301089ms - id: 3 request: proto: HTTP/1.1 @@ -178,29 +154,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "3199c4d1-78f4-4a50-be36-e3c6e04c658f"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 577adbf1-fea2-4ea2-8b9c-286a89e8a4c3 + - 69ae3447-f4e6-4652-a008-b3c5751aaea6 status: 200 OK code: 200 - duration: 115.059687ms + duration: 129.126779ms - id: 4 request: proto: HTTP/1.1 @@ -227,29 +195,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "3199c4d1-78f4-4a50-be36-e3c6e04c658f"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f78583d9-f1c2-4bdf-902f-3b0d1c5e9522 + - f135d312-338f-4712-8f75-939a3b250947 status: 200 OK code: 200 - duration: 86.463159ms + duration: 103.801065ms - id: 5 request: proto: HTTP/1.1 @@ -276,29 +236,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "3199c4d1-78f4-4a50-be36-e3c6e04c658f"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 25c4f5d2-ac7c-462f-8c21-f694aea2a97e + - 0f30d1dc-c018-4fa3-8e48-ff2b9c0d53f6 status: 200 OK code: 200 - duration: 111.638897ms + duration: 111.081358ms - id: 6 request: proto: HTTP/1.1 @@ -325,29 +277,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "3199c4d1-78f4-4a50-be36-e3c6e04c658f"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7dbef2ae-94d1-41f7-ac53-e89ce1671b8b + - 6ac17aa6-c0bc-4596-9f38-4897e9452e09 status: 200 OK code: 200 - duration: 108.761534ms + duration: 119.277202ms - id: 7 request: proto: HTTP/1.1 @@ -374,29 +318,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "3199c4d1-78f4-4a50-be36-e3c6e04c658f"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b36cbf16-e865-4a0d-b3f3-28a8b17236f8 + - 5432a245-2777-4d6f-ad62-1de97e8962a3 status: 200 OK code: 200 - duration: 103.731971ms + duration: 98.954123ms - id: 8 request: proto: HTTP/1.1 @@ -423,29 +359,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "3199c4d1-78f4-4a50-be36-e3c6e04c658f"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3028b77f-a109-4f4f-a64a-b67c835f0e65 + - 657d0071-f83c-48f1-afbe-cbf57bd95c41 status: 200 OK code: 200 - duration: 148.165538ms + duration: 119.413848ms - id: 9 request: proto: HTTP/1.1 @@ -472,29 +400,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "3199c4d1-78f4-4a50-be36-e3c6e04c658f"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b52f7d6f-731b-4b21-ba37-50fe55fd5f89 + - 2dbd129a-101e-4d38-9f8c-52eac40b13cd status: 200 OK code: 200 - duration: 112.901765ms + duration: 116.258558ms - id: 10 request: proto: HTTP/1.1 @@ -521,29 +441,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "3199c4d1-78f4-4a50-be36-e3c6e04c658f"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c766b13f-2739-4240-9f9b-4cf44e05c2b0 + - b2742703-6e55-4e4c-9141-d17f466d8f1e status: 200 OK code: 200 - duration: 111.849452ms + duration: 106.826653ms - id: 11 request: proto: HTTP/1.1 @@ -560,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/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.236.240 method: GET response: proto: HTTP/2.0 @@ -570,29 +482,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "3199c4d1-78f4-4a50-be36-e3c6e04c658f"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e81d9936-9667-4cb8-956e-012ab96495c4 + - cd1c75de-fe63-45eb-8ffc-401fd0f353ee status: 200 OK code: 200 - duration: 104.251995ms + duration: 91.960195ms - id: 12 request: proto: HTTP/1.1 @@ -609,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/51.15.236.240 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -619,29 +523,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "3199c4d1-78f4-4a50-be36-e3c6e04c658f"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fea7ccda-08db-4a59-96e9-ca05660bebb9 + - 068d8adc-6719-4300-9d7d-4f112d0079ac status: 200 OK code: 200 - duration: 105.025054ms + duration: 114.224435ms - id: 13 request: proto: HTTP/1.1 @@ -668,29 +564,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "3199c4d1-78f4-4a50-be36-e3c6e04c658f"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7f449099-015b-4ba5-a982-ecb4fadfce64 + - 27938711-c72a-4e25-b5cf-5c8749127dae status: 200 OK code: 200 - duration: 116.255509ms + duration: 125.934651ms - id: 14 request: proto: HTTP/1.1 @@ -719,22 +607,14 @@ interactions: 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 + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3300e018-fa1a-414c-8ab7-277d332aadc6 + - 927ca0e5-e15a-48c8-b88e-5e004f7b6105 status: 204 No Content code: 204 - duration: 336.166248ms + duration: 342.187818ms 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 0da76aec4..0f461d39a 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 @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 344 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "8cb4d023-4d90-4d23-85b6-fea97b26743e", "name": "test-ds-instance-placement-group-basic", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:54:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 375dc731-a31f-4e94-a77e-8265ac9d0da7 + - 3e896674-4774-4472-a16b-d1a81da6b3ee status: 201 Created code: 201 - duration: 182.683104ms + duration: 219.37981ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e method: GET response: proto: HTTP/2.0 @@ -80,29 +72,21 @@ interactions: trailer: {} content_length: 344 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "8cb4d023-4d90-4d23-85b6-fea97b26743e", "name": "test-ds-instance-placement-group-basic", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 42f41b8c-9d49-4f38-a18e-186934a58d83 + - 29e3f2e6-3a81-4c94-b33e-6f2f6d6d493c status: 200 OK code: 200 - duration: 127.101264ms + duration: 114.008075ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e method: GET response: proto: HTTP/2.0 @@ -129,29 +113,21 @@ interactions: trailer: {} content_length: 344 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "8cb4d023-4d90-4d23-85b6-fea97b26743e", "name": "test-ds-instance-placement-group-basic", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6a004d20-d43f-4a9c-8210-9f13a9f4234f + - b227db6e-4f71-4076-ab3a-a5a2d94340b7 status: 200 OK code: 200 - duration: 111.120871ms + duration: 80.784941ms - id: 3 request: proto: HTTP/1.1 @@ -164,7 +140,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - test-ds-instance-placement-group-basic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -178,33 +156,25 @@ interactions: trailer: {} content_length: 347 uncompressed: false - 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"}]}' + body: '{"placement_groups": [{"id": "8cb4d023-4d90-4d23-85b6-fea97b26743e", "name": "test-ds-instance-placement-group-basic", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}]}' headers: Content-Length: - "347" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:54:30 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 891a8531-9de6-40b9-bdbf-84cf026a0d09 + - 9b1aa8b4-8d5a-4b2c-8040-34894f4bdab7 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 138.935817ms + duration: 129.617914ms - id: 4 request: proto: HTTP/1.1 @@ -221,7 +191,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e method: GET response: proto: HTTP/2.0 @@ -231,29 +201,21 @@ interactions: trailer: {} content_length: 344 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "8cb4d023-4d90-4d23-85b6-fea97b26743e", "name": "test-ds-instance-placement-group-basic", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ffb537e4-4688-470d-8613-516cec425b54 + - b5e4e92f-ebaa-46d8-b14c-052ad4863399 status: 200 OK code: 200 - duration: 97.014441ms + duration: 92.1487ms - id: 5 request: proto: HTTP/1.1 @@ -270,7 +232,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e method: GET response: proto: HTTP/2.0 @@ -280,29 +242,21 @@ interactions: trailer: {} content_length: 344 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "8cb4d023-4d90-4d23-85b6-fea97b26743e", "name": "test-ds-instance-placement-group-basic", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 12261969-9205-4b21-b9d3-fd382c0a169a + - fff4c74d-a5e7-4faf-84dd-c3bf2b45b136 status: 200 OK code: 200 - duration: 104.70698ms + duration: 102.480009ms - id: 6 request: proto: HTTP/1.1 @@ -319,7 +273,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e method: GET response: proto: HTTP/2.0 @@ -329,29 +283,21 @@ interactions: trailer: {} content_length: 344 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "8cb4d023-4d90-4d23-85b6-fea97b26743e", "name": "test-ds-instance-placement-group-basic", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 919110d2-ab9a-4203-a07f-c42ea26d3912 + - 3089f5ef-1001-4bf5-b28e-7f84cf342e8e status: 200 OK code: 200 - duration: 80.625202ms + duration: 97.988931ms - id: 7 request: proto: HTTP/1.1 @@ -364,7 +310,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - test-ds-instance-placement-group-basic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -378,33 +326,25 @@ interactions: trailer: {} content_length: 347 uncompressed: false - 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"}]}' + body: '{"placement_groups": [{"id": "8cb4d023-4d90-4d23-85b6-fea97b26743e", "name": "test-ds-instance-placement-group-basic", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}]}' headers: Content-Length: - "347" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT + - Wed, 29 Oct 2025 22:54:30 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3bcae355-d183-4069-a037-07e1f9e2596e + - 914fa6c0-2465-4c07-8f4d-ed1e6f5f2dd8 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 117.961564ms + duration: 134.925219ms - id: 8 request: proto: HTTP/1.1 @@ -421,7 +361,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e method: GET response: proto: HTTP/2.0 @@ -431,29 +371,21 @@ interactions: trailer: {} content_length: 344 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "8cb4d023-4d90-4d23-85b6-fea97b26743e", "name": "test-ds-instance-placement-group-basic", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 925065a2-f30a-4ec1-aa94-40dc58add258 + - ae888fcf-9376-4dfa-be37-0bb7e6904bbd status: 200 OK code: 200 - duration: 99.278435ms + duration: 169.950833ms - id: 9 request: proto: HTTP/1.1 @@ -470,7 +402,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e method: GET response: proto: HTTP/2.0 @@ -480,29 +412,21 @@ interactions: trailer: {} content_length: 344 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "8cb4d023-4d90-4d23-85b6-fea97b26743e", "name": "test-ds-instance-placement-group-basic", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6efb42d5-ca96-499c-87bc-993ebec8365a + - 84c30dbb-9603-4f50-984c-60579b7e5e84 status: 200 OK code: 200 - duration: 111.052764ms + duration: 161.907253ms - id: 10 request: proto: HTTP/1.1 @@ -515,11 +439,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - test-ds-instance-placement-group-basic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + 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 @@ -527,31 +453,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 344 + content_length: 347 uncompressed: false - 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"}}' + body: '{"placement_groups": [{"id": "8cb4d023-4d90-4d23-85b6-fea97b26743e", "name": "test-ds-instance-placement-group-basic", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}]}' headers: Content-Length: - - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "347" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT + - Wed, 29 Oct 2025 22:54:31 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dbbbef94-e173-4688-8b1f-6effb44051b9 + - 4c03da14-855e-450a-bd83-d078844a3e54 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 103.178796ms + duration: 171.746392ms - id: 11 request: proto: HTTP/1.1 @@ -568,7 +490,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e method: GET response: proto: HTTP/2.0 @@ -576,35 +498,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 347 + content_length: 344 uncompressed: false - 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"}]}' + body: '{"placement_group": {"id": "8cb4d023-4d90-4d23-85b6-fea97b26743e", "name": "test-ds-instance-placement-group-basic", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "347" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8ff14edf-5870-4f4b-bde0-d109fc93fa22 - X-Total-Count: - - "1" + - 69e50b33-da12-4e20-92ec-ff04be963689 status: 200 OK code: 200 - duration: 121.278802ms + duration: 171.812575ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +531,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e method: GET response: proto: HTTP/2.0 @@ -631,29 +541,21 @@ interactions: trailer: {} content_length: 344 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "8cb4d023-4d90-4d23-85b6-fea97b26743e", "name": "test-ds-instance-placement-group-basic", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a25ee0c2-baa6-4ef9-8471-079517ec26f3 + - cd68417b-12bd-4083-bd5b-f1fcef31c121 status: 200 OK code: 200 - duration: 148.067694ms + duration: 103.497151ms - id: 13 request: proto: HTTP/1.1 @@ -670,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/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e method: DELETE response: proto: HTTP/2.0 @@ -682,25 +584,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4bfd080f-13d1-4bda-9ab6-f378ceac22fb + - bfff3ca0-48b8-4f2f-abc1-99d159f65915 status: 204 No Content code: 204 - duration: 203.526586ms + duration: 262.485264ms - id: 14 request: proto: HTTP/1.1 @@ -717,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/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e method: GET response: proto: HTTP/2.0 @@ -727,29 +621,21 @@ interactions: trailer: {} content_length: 152 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_placement_group", "resource_id": "8cb4d023-4d90-4d23-85b6-fea97b26743e"}' headers: Content-Length: - "152" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 75868a36-55e7-425c-965e-5bef510a1b39 + - 397e0c4f-ab34-405e-bdd6-1cb8a8c0aa43 status: 404 Not Found code: 404 - duration: 43.620722ms + duration: 30.825812ms - id: 15 request: proto: HTTP/1.1 @@ -766,7 +652,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e method: GET response: proto: HTTP/2.0 @@ -776,29 +662,21 @@ interactions: trailer: {} content_length: 152 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_placement_group", "resource_id": "8cb4d023-4d90-4d23-85b6-fea97b26743e"}' headers: Content-Length: - "152" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3284fac9-ec4a-4636-aa02-89bcdc46a2f1 + - fb8a2129-07e9-4e88-b475-353df6b2ab02 status: 404 Not Found code: 404 - duration: 24.225007ms + duration: 33.699475ms - id: 16 request: proto: HTTP/1.1 @@ -815,7 +693,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e method: GET response: proto: HTTP/2.0 @@ -825,26 +703,18 @@ interactions: trailer: {} content_length: 152 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_placement_group", "resource_id": "8cb4d023-4d90-4d23-85b6-fea97b26743e"}' headers: Content-Length: - "152" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d171fda9-6da6-4e06-8e0f-a0adba5eaab0 + - 737b0982-34a7-4ddd-956c-8a93d67287ef status: 404 Not Found code: 404 - duration: 52.093323ms + duration: 27.479575ms 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 3d0102e36..ac762ab54 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 @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d6676fd0-a140-4beb-878a-9b1183c8ff15 + - 5cec7f3f-3478-44eb-ae6b-ea9bd322f66c X-Total-Count: - "68" status: 200 OK code: 200 - duration: 40.90381ms + duration: 51.133026ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c4335d2d-02ea-4dc2-bb6e-c9139430168a + - 43701b6f-029c-4a84-839a-211d7173bb16 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 54.697076ms + duration: 46.038581ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,43 +127,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5084c744-f5c9-4341-be80-6dd68964f84a + - 464a6008-d568-45f7-97f7-28992a7e637a status: 200 OK code: 200 - duration: 106.897415ms + duration: 76.112272ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 148 + content_length: 153 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-sweet-shamir","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"default_route_propagation_enabled":false}' + body: '{"name":"tf-pn-quizzical-khayyam","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -182,31 +170,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1094 uncompressed: false - 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"}' + body: '{"id":"36806280-a614-4a51-a8f1-7f473faf875e", "name":"tf-pn-quizzical-khayyam", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:37.692733Z", "updated_at":"2025-10-29T22:53:37.692733Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8", "created_at":"2025-10-29T22:53:37.692733Z", "updated_at":"2025-10-29T22:53:37.692733Z", "subnet":"172.17.108.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"36806280-a614-4a51-a8f1-7f473faf875e", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}, {"id":"6368d9d8-51f6-4016-8295-1e27e33c828d", "created_at":"2025-10-29T22:53:37.692733Z", "updated_at":"2025-10-29T22:53:37.692733Z", "subnet":"fd5f:519c:6d46:5f3b::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"36806280-a614-4a51-a8f1-7f473faf875e", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}], "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1089" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1094" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a7fabe25-8a45-44c7-8ba0-962d325aa3f8 + - 1bbcb5a8-f245-4940-b3dc-d1f8ddc09f20 status: 200 OK code: 200 - duration: 670.100236ms + duration: 618.791892ms - id: 4 request: proto: HTTP/1.1 @@ -223,7 +203,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/36806280-a614-4a51-a8f1-7f473faf875e method: GET response: proto: HTTP/2.0 @@ -231,31 +211,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1094 uncompressed: false - 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"}' + body: '{"id":"36806280-a614-4a51-a8f1-7f473faf875e", "name":"tf-pn-quizzical-khayyam", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:37.692733Z", "updated_at":"2025-10-29T22:53:37.692733Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8", "created_at":"2025-10-29T22:53:37.692733Z", "updated_at":"2025-10-29T22:53:37.692733Z", "subnet":"172.17.108.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"36806280-a614-4a51-a8f1-7f473faf875e", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}, {"id":"6368d9d8-51f6-4016-8295-1e27e33c828d", "created_at":"2025-10-29T22:53:37.692733Z", "updated_at":"2025-10-29T22:53:37.692733Z", "subnet":"fd5f:519c:6d46:5f3b::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"36806280-a614-4a51-a8f1-7f473faf875e", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}], "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1089" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1094" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8cf7db4f-37dc-42e4-80ee-b1e1cd79ee4e + - c18c3da2-6f29-46b9-9d97-d0b236d8f354 status: 200 OK code: 200 - duration: 23.556893ms + duration: 24.764284ms - id: 5 request: proto: HTTP/1.1 @@ -282,33 +254,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1774 + content_length: 1820 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: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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:38.437412+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1820" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53:39 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f66145f4-0a20-4ac5-abbd-3a353316a4cf + - 9d694191-8c36-4d9b-85b5-d83fca9fc8e8 status: 201 Created code: 201 - duration: 2.231510122s + duration: 1.445600468s - id: 6 request: proto: HTTP/1.1 @@ -325,7 +289,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -333,31 +297,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1774 + content_length: 1820 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: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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:38.437412+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1820" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e72f5996-1cd2-419c-9076-18a5d1141aaa + - cf4c5c98-ff0e-4126-8ed8-a8a3014ed7ef status: 200 OK code: 200 - duration: 145.579033ms + duration: 427.109854ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -384,29 +340,21 @@ 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-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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:38.437412+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d68be4cb-a314-4267-b49e-f8f04618d20e + - 8dfb6f47-a257-4b81-8338-0e6e551e31e2 status: 200 OK code: 200 - duration: 153.27297ms + duration: 143.780756ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 method: GET response: proto: HTTP/2.0 @@ -433,29 +381,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"4f7eadda-567f-4f63-ba6a-e04480cd9e82", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.575425Z", "updated_at":"2025-10-29T22:53:38.575425Z", "references":[{"id":"056bce96-6b98-47be-9440-9ece8c96acc2", "product_resource_type":"instance_server", "product_resource_id":"6daf7954-11eb-415a-be20-d7e1a0cb63e9", "created_at":"2025-10-29T22:53:38.575425Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0df77e74-56cb-4067-979b-4b1a2180c659 + - 310b5840-7f0f-4669-b458-efa25a0a0321 status: 200 OK code: 200 - duration: 87.204434ms + duration: 78.609371ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,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/5df399da-7aa8-485a-a142-cb3f896ed128/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/action method: POST response: proto: HTTP/2.0 @@ -484,31 +424,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "8563fbd9-5db0-4e36-aef5-c041489f7660", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/action", "href_result": "/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9", "started_at": "2025-10-29T22:53:40.322362+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53:40 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/27270f7b-db41-44dd-bab4-9840f9a9b511 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8563fbd9-5db0-4e36-aef5-c041489f7660 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 994fe0a3-87e5-48c8-979b-0831e05adb8a + - 190a9f75-920c-428d-8dc5-ea2815089470 status: 202 Accepted code: 202 - duration: 245.660568ms + duration: 426.001624ms - id: 10 request: proto: HTTP/1.1 @@ -525,7 +457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -533,31 +465,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1796 + content_length: 1842 uncompressed: 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: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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:39.957985+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1796" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1842" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5f55ce6b-57f7-4cea-89e5-9ba156073517 + - 4bedb702-58f3-41ec-9ea5-370b090ca5a6 status: 200 OK code: 200 - duration: 171.750427ms + duration: 126.412553ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -582,31 +506,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1931 + content_length: 1975 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1931" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1975" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7dce5ace-153e-457a-aaf7-2205895bbf86 + - 530039f8-bb29-4516-848d-920d95ce03c8 status: 200 OK code: 200 - duration: 136.886211ms + duration: 140.417971ms - id: 12 request: proto: HTTP/1.1 @@ -623,7 +539,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -631,31 +547,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1931 + content_length: 1929 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1931" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1929" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cffe89f7-12f6-4ac2-b92f-21d25f192876 + - 843ab8d6-df06-488f-a633-099948a0354e status: 200 OK code: 200 - duration: 147.806194ms + duration: 150.521652ms - id: 13 request: proto: HTTP/1.1 @@ -672,7 +580,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 method: GET response: proto: HTTP/2.0 @@ -682,29 +590,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - de30f533-fa23-4cd2-b75e-0b268e8ebea5 + - e74be688-0f5f-43d9-9706-6e8d1a4d7b97 status: 404 Not Found code: 404 - duration: 36.030831ms + duration: 28.668003ms - id: 14 request: proto: HTTP/1.1 @@ -721,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/aceff16f-9aad-4810-91f7-f7c231ff16ba + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 method: GET response: proto: HTTP/2.0 @@ -731,29 +631,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"4f7eadda-567f-4f63-ba6a-e04480cd9e82", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.575425Z", "updated_at":"2025-10-29T22:53:38.575425Z", "references":[{"id":"056bce96-6b98-47be-9440-9ece8c96acc2", "product_resource_type":"instance_server", "product_resource_id":"6daf7954-11eb-415a-be20-d7e1a0cb63e9", "created_at":"2025-10-29T22:53:38.575425Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 19064d17-8d02-47c5-8e25-a3d8a6661d22 + - 9a5892d4-3712-469e-be8a-43b1039feadd status: 200 OK code: 200 - duration: 83.76312ms + duration: 83.189136ms - id: 15 request: proto: HTTP/1.1 @@ -770,7 +662,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/user_data method: GET response: proto: HTTP/2.0 @@ -780,29 +672,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dd5b784f-5459-447f-8535-98d309de36e7 + - 50ce470a-aa1b-40a7-aa0b-ee089fd91064 status: 200 OK code: 200 - duration: 91.759865ms + duration: 96.788714ms - id: 16 request: proto: HTTP/1.1 @@ -819,7 +703,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics method: GET response: proto: HTTP/2.0 @@ -829,33 +713,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:07 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3cea226b-524e-4d36-b24e-f7f4d185e5f9 + - 2335a44f-5482-4827-9fe9-e2151c1cfb01 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 112.753637ms + duration: 105.42947ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +748,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -880,31 +756,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1931 + content_length: 1929 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1931" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1929" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 136199a7-ba94-4e14-ac59-3f7195c2b25e + - ddcf9dbb-903f-40f8-af94-0cfa15c21a3a status: 200 OK code: 200 - duration: 157.538123ms + duration: 140.829942ms - id: 18 request: proto: HTTP/1.1 @@ -916,14 +784,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","tags":["test-terraform-datasource-private-nic"]}' + body: '{"private_network_id":"36806280-a614-4a51-a8f1-7f473faf875e","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/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics method: POST response: proto: HTTP/2.0 @@ -933,29 +801,21 @@ interactions: trailer: {} content_length: 512 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "syncing", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:53:46.470381+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4d34d072-6e6a-4d01-956f-6e5697825cdb + - 089fc048-5607-431f-9cc8-63abfece53ea status: 201 Created code: 201 - duration: 603.403587ms + duration: 878.706151ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -982,29 +842,21 @@ interactions: trailer: {} content_length: 512 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "syncing", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:53:46.470381+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c5ecff63-1d38-434e-80d9-1ee3dd3127b8 + - 543ad134-afa9-44de-a429-a2c6c9dc50a5 status: 200 OK code: 200 - duration: 81.663536ms + duration: 102.960093ms - id: 20 request: proto: HTTP/1.1 @@ -1021,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/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -1031,29 +883,21 @@ interactions: trailer: {} content_length: 512 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "syncing", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:53:46.470381+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 11cc4b35-3667-41f7-b1b9-db9d739e1663 + - 82323436-d605-48b2-8475-fdad222f487e status: 200 OK code: 200 - duration: 119.145472ms + duration: 87.935131ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -1080,29 +924,21 @@ interactions: trailer: {} content_length: 512 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "syncing", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:53:46.470381+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e8637472-f4fb-4679-9851-cc50526b402c + - 31fc65a3-0b64-452b-ad7c-dd52cc391ab6 status: 200 OK code: 200 - duration: 80.223785ms + duration: 98.808524ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -1129,29 +965,21 @@ interactions: trailer: {} content_length: 512 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "syncing", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:53:46.470381+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab61c5f1-4a41-497d-a53d-1372a1aaea7d + - 923b9ce7-42d7-4570-b13c-efd2f32c5c28 status: 200 OK code: 200 - duration: 102.344798ms + duration: 90.757601ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +996,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -1178,29 +1006,21 @@ interactions: trailer: {} content_length: 512 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "syncing", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:53:46.470381+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:29 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c1551ede-fb53-422e-964c-671ead945194 + - 0af4e23d-7d1a-4227-b1cc-d62259ec3e3d status: 200 OK code: 200 - duration: 120.1486ms + duration: 86.828927ms - id: 24 request: proto: HTTP/1.1 @@ -1217,7 +1037,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -1227,29 +1047,21 @@ interactions: trailer: {} content_length: 512 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "syncing", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:53:46.470381+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:34 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2fd9f8b6-7080-4752-875b-f6901c37d6e9 + - 334506b8-edf6-4230-b85b-5815e9eaeb5c status: 200 OK code: 200 - duration: 103.515792ms + duration: 106.420101ms - id: 25 request: proto: HTTP/1.1 @@ -1266,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/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -1274,31 +1086,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 512 + content_length: 514 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "514" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:39 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e5475a11-2371-4643-95b4-9a5c1918e340 + - 33899767-38a0-4986-b58b-07a742693ac4 status: 200 OK code: 200 - duration: 104.463743ms + duration: 102.146171ms - id: 26 request: proto: HTTP/1.1 @@ -1315,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/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -1323,31 +1127,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 512 + content_length: 514 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "514" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3cf73e8c-c2a4-4d84-8264-e270913cc64d + - ff08e464-c5e8-4c73-afaf-2c609563c9ec status: 200 OK code: 200 - duration: 102.018044ms + duration: 105.340554ms - id: 27 request: proto: HTTP/1.1 @@ -1364,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/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -1372,31 +1168,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 512 + content_length: 2472 uncompressed: false - 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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2472" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:49 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - deb62006-4b8b-429c-acc4-887e212e45d7 + - 2f9bc6d9-69f5-47a6-86f9-2b08a35ca513 status: 200 OK code: 200 - duration: 109.768205ms + duration: 135.128224ms - id: 28 request: proto: HTTP/1.1 @@ -1409,11 +1197,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 36806280-a614-4a51-a8f1-7f473faf875e + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=36806280-a614-4a51-a8f1-7f473faf875e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1421,31 +1219,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 512 + content_length: 1105 uncompressed: false - 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"}}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8cbc3871-ce5c-4846-a1e0-c0b658fb2247 + - 0d2b2b7b-54f0-430f-8a2d-f079731ec7a4 status: 200 OK code: 200 - duration: 98.000042ms + duration: 51.915767ms - id: 29 request: proto: HTTP/1.1 @@ -1462,7 +1252,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/36806280-a614-4a51-a8f1-7f473faf875e method: GET response: proto: HTTP/2.0 @@ -1470,31 +1260,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 512 + content_length: 1094 uncompressed: false - 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"}}' + body: '{"id":"36806280-a614-4a51-a8f1-7f473faf875e", "name":"tf-pn-quizzical-khayyam", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:37.692733Z", "updated_at":"2025-10-29T22:53:37.692733Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8", "created_at":"2025-10-29T22:53:37.692733Z", "updated_at":"2025-10-29T22:53:37.692733Z", "subnet":"172.17.108.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"36806280-a614-4a51-a8f1-7f473faf875e", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}, {"id":"6368d9d8-51f6-4016-8295-1e27e33c828d", "created_at":"2025-10-29T22:53:37.692733Z", "updated_at":"2025-10-29T22:53:37.692733Z", "subnet":"fd5f:519c:6d46:5f3b::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"36806280-a614-4a51-a8f1-7f473faf875e", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}], "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1094" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 05b587ae-d40e-4e56-ac8b-e2617ff4454f + - f37e45ee-a418-4b2d-91cf-d5399fc86fbf status: 200 OK code: 200 - duration: 89.080376ms + duration: 29.623663ms - id: 30 request: proto: HTTP/1.1 @@ -1511,7 +1293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -1519,31 +1301,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 2426 uncompressed: false - 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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2426" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e8cced22-cb12-4a5e-9106-fdd78a0c450d + - 8952ec76-2bcd-4af2-80cd-f71f632336ad status: 200 OK code: 200 - duration: 87.924964ms + duration: 170.786461ms - id: 31 request: proto: HTTP/1.1 @@ -1560,252 +1334,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:04:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 66a2152c-f0af-4cab-a802-024c4ca60eef - status: 200 OK - code: 200 - duration: 123.304614ms - - 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/5df399da-7aa8-485a-a142-cb3f896ed128 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - 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-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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:04:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 862db57e-4fd3-4433-bc50-b5c424438c1d - status: 200 OK - code: 200 - duration: 141.726375ms - - 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/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: 1104 - uncompressed: false - 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, 15 Oct 2025 15:04:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 871d0a16-cfc4-4988-a97e-2c52371855b8 - status: 200 OK - code: 200 - duration: 40.633347ms - - 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/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: 1089 - uncompressed: false - 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: - - "1089" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:04:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c4ab44e8-2616-4670-ad33-009b70cfc7c3 - status: 200 OK - code: 200 - duration: 36.107223ms - - 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/5df399da-7aa8-485a-a142-cb3f896ed128 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - 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-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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:04:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 23fd4f0a-f007-4bfe-b361-29a8723cc065 - status: 200 OK - code: 200 - duration: 129.256731ms - - 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/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 method: GET response: proto: HTTP/2.0 @@ -1815,30 +1344,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e44356a7-0920-4256-9b48-ff5c8ee06b4a + - ed6ed344-f90e-4469-a4d8-20309dcdc5ee status: 404 Not Found code: 404 - duration: 28.949555ms - - id: 37 + duration: 26.749799ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1854,7 +1375,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 method: GET response: proto: HTTP/2.0 @@ -1864,30 +1385,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"4f7eadda-567f-4f63-ba6a-e04480cd9e82", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.575425Z", "updated_at":"2025-10-29T22:53:38.575425Z", "references":[{"id":"056bce96-6b98-47be-9440-9ece8c96acc2", "product_resource_type":"instance_server", "product_resource_id":"6daf7954-11eb-415a-be20-d7e1a0cb63e9", "created_at":"2025-10-29T22:53:38.575425Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 18b10433-66c6-4674-b1ca-8e625f18bf2c + - a8ae2ba4-ef05-4022-a5a8-ac1da4c3b3ca status: 200 OK code: 200 - duration: 95.479676ms - - id: 38 + duration: 90.732459ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1903,7 +1416,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/user_data method: GET response: proto: HTTP/2.0 @@ -1913,30 +1426,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a5dc1b5d-4832-4f4b-9d58-128064a0f248 + - 50ee3fee-d14a-4953-b0bb-468bd2aa1326 status: 200 OK code: 200 - duration: 102.665917ms - - id: 39 + duration: 98.976043ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1952,7 +1457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics method: GET response: proto: HTTP/2.0 @@ -1962,34 +1467,26 @@ interactions: trailer: {} content_length: 517 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}]}' headers: Content-Length: - "517" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:54:18 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f01f45f2-1739-444a-866f-7348582ec142 + - 59ea1294-d086-45cf-8a03-a703ef00a531 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 125.543721ms - - id: 40 + duration: 101.896674ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2001,11 +1498,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&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=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2013,32 +1518,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 1105 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1104" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 054ec2b6-a493-45c1-94c2-43bed8a4c8c7 + - 5425a23c-6ff3-4758-8f67-8a70834b6706 status: 200 OK code: 200 - duration: 39.349711ms - - id: 41 + duration: 29.505812ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2054,7 +1551,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -2064,30 +1561,22 @@ interactions: trailer: {} content_length: 514 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 79d3a48e-ab52-42a9-9168-c1f29db69257 + - 2fecad00-7527-4931-bbb2-df5969e6c093 status: 200 OK code: 200 - duration: 110.484083ms - - id: 42 + duration: 163.720778ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2103,7 +1592,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -2111,32 +1600,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2426 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2426" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 187a1c8c-0106-478c-925a-353da2b65240 + - 0ba347d4-f271-4ed1-ada4-07a925e8d52c status: 200 OK code: 200 - duration: 150.758878ms - - id: 43 + duration: 145.853779ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2148,11 +1629,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 36806280-a614-4a51-a8f1-7f473faf875e + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=36806280-a614-4a51-a8f1-7f473faf875e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2160,32 +1651,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 1105 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1104" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5dc9121b-167a-44f5-bb46-ec0e9330c1fb + - 1ab2d874-df18-4d4a-af19-0004e7f7b187 status: 200 OK code: 200 - duration: 66.963333ms - - id: 44 + duration: 50.390634ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2201,7 +1684,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/36806280-a614-4a51-a8f1-7f473faf875e method: GET response: proto: HTTP/2.0 @@ -2209,32 +1692,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1094 uncompressed: false - 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"}' + body: '{"id":"36806280-a614-4a51-a8f1-7f473faf875e", "name":"tf-pn-quizzical-khayyam", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:37.692733Z", "updated_at":"2025-10-29T22:53:37.692733Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8", "created_at":"2025-10-29T22:53:37.692733Z", "updated_at":"2025-10-29T22:53:37.692733Z", "subnet":"172.17.108.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"36806280-a614-4a51-a8f1-7f473faf875e", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}, {"id":"6368d9d8-51f6-4016-8295-1e27e33c828d", "created_at":"2025-10-29T22:53:37.692733Z", "updated_at":"2025-10-29T22:53:37.692733Z", "subnet":"fd5f:519c:6d46:5f3b::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"36806280-a614-4a51-a8f1-7f473faf875e", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}], "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1089" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1094" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7d3d5fa6-cdfd-41c5-ba1f-17f6ec9c5b68 + - c7558563-501d-417a-b75f-d34d44ad09f8 status: 200 OK code: 200 - duration: 24.761646ms - - id: 45 + duration: 25.724211ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2250,7 +1725,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -2258,32 +1733,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2426 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2426" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bde3382c-466a-4832-88eb-5c523f140d77 + - db6e01e8-410d-49da-8967-34657a9633af status: 200 OK code: 200 - duration: 138.685877ms - - id: 46 + duration: 180.600111ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2299,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/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 method: GET response: proto: HTTP/2.0 @@ -2309,30 +1776,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d5df2a03-0dd7-4cc9-a824-18e9016d6cf4 + - 7650f7c2-8bb3-455b-ac50-f3904977cb59 status: 404 Not Found code: 404 - duration: 33.461815ms - - id: 47 + duration: 34.929314ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2348,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/block/v1alpha1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 method: GET response: proto: HTTP/2.0 @@ -2358,30 +1817,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"4f7eadda-567f-4f63-ba6a-e04480cd9e82", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.575425Z", "updated_at":"2025-10-29T22:53:38.575425Z", "references":[{"id":"056bce96-6b98-47be-9440-9ece8c96acc2", "product_resource_type":"instance_server", "product_resource_id":"6daf7954-11eb-415a-be20-d7e1a0cb63e9", "created_at":"2025-10-29T22:53:38.575425Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5e5b4075-4029-404b-a5d6-8540116baed1 + - d9147ba6-d74e-4e14-a29f-a8320f8d1dc2 status: 200 OK code: 200 - duration: 96.982133ms - - id: 48 + duration: 94.968651ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2397,7 +1848,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/user_data method: GET response: proto: HTTP/2.0 @@ -2407,30 +1858,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 948dd64a-123e-4587-9dd4-524c54a403e6 + - 0096e7b7-3890-44df-b7a4-7047b5b19fcc status: 200 OK code: 200 - duration: 106.159266ms - - id: 49 + duration: 97.2414ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2446,7 +1889,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics method: GET response: proto: HTTP/2.0 @@ -2456,34 +1899,26 @@ interactions: trailer: {} content_length: 517 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}]}' headers: Content-Length: - "517" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:54:19 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8bb4081f-911b-4e27-b222-4fedccc3f412 + - b0d1f4db-8fe7-4e85-9db1-b282421f9db1 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 108.555217ms - - id: 50 + duration: 100.010899ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2495,11 +1930,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&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=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2507,32 +1950,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 1105 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1104" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9692ac23-78ef-4995-9808-cddb880da043 + - 0a2b35be-ce22-4fc1-a1d5-52fa2e399f07 status: 200 OK code: 200 - duration: 27.325993ms - - id: 51 + duration: 33.173801ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2548,7 +1983,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -2556,36 +1991,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 514 uncompressed: false - 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"}]}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - - "517" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "514" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4510d30b-9db3-4eb4-914e-c734b260ce18 - X-Total-Count: - - "1" + - 4a505550-0a6c-4d70-aee6-ad79088da0dd status: 200 OK code: 200 - duration: 93.266029ms - - id: 52 + duration: 96.178453ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2601,7 +2024,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics?tags=test-terraform-datasource-private-nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics method: GET response: proto: HTTP/2.0 @@ -2611,34 +2034,26 @@ interactions: trailer: {} content_length: 517 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}]}' headers: Content-Length: - "517" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54:20 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f34ef848-f84c-4a3e-83cf-543397332a05 + - 17ec5d21-fdd3-4e20-88dc-cd627c06dd01 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 94.142422ms - - id: 53 + duration: 106.018122ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2650,11 +2065,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + tags: + - test-terraform-datasource-private-nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics?tags=test-terraform-datasource-private-nic method: GET response: proto: HTTP/2.0 @@ -2662,32 +2079,28 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 517 uncompressed: false - 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"}}' + body: '{"private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}]}' headers: Content-Length: - - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "517" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54:20 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 57809e56-76b8-4054-a0ba-a68377cc8c48 + - ff3ab54b-9917-4ae0-9fb9-2622e759f179 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 129.637266ms - - id: 54 + duration: 134.092558ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2703,7 +2116,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -2713,30 +2126,22 @@ interactions: trailer: {} content_length: 514 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ef287b2d-acce-4734-b0ca-be0ce762734a + - 241b29f0-7e6b-4e40-af18-974fabbc622b status: 200 OK code: 200 - duration: 100.294753ms - - id: 55 + duration: 99.735915ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2752,7 +2157,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -2760,32 +2165,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 2426 uncompressed: false - 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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2426" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 946e4ea3-7998-45ec-9159-3d5fb52c490c + - 9858609f-8ef0-4f89-b93c-bd0c9b8924a1 status: 200 OK code: 200 - duration: 120.292129ms - - id: 56 + duration: 131.931036ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2801,7 +2198,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -2809,32 +2206,24 @@ 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-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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - - "2428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "514" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 531c7068-6744-49f6-aba9-93ea39a426d0 + - ee2a916a-e7f9-4a61-bbe0-ad7e4693b4e2 status: 200 OK code: 200 - duration: 151.773691ms - - id: 57 + duration: 94.21465ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2846,11 +2235,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 36806280-a614-4a51-a8f1-7f473faf875e + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=36806280-a614-4a51-a8f1-7f473faf875e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2858,32 +2257,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 1105 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1104" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 21323ceb-7fbe-4106-bc95-9b142716a57a + - 5bf4c3c9-0fab-4543-a51e-999482921979 status: 200 OK code: 200 - duration: 47.987574ms - - id: 58 + duration: 49.727605ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2899,7 +2290,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -2907,32 +2298,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2472 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2472" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9cb60f2c-c363-49fc-a46c-8a2f96d21876 + - e901fb59-380a-4e08-9c5c-02c799139c3e status: 200 OK code: 200 - duration: 141.475468ms - - id: 59 + duration: 164.675564ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2948,7 +2331,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -2956,32 +2339,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2472 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2472" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab68c606-c893-4a79-97fa-a3e3b13e215c + - efb81614-fc5d-4023-8653-24ddc7126267 status: 200 OK code: 200 - duration: 161.384657ms - - id: 60 + duration: 141.39883ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2997,7 +2372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -3005,32 +2380,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 514 uncompressed: false - 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}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - - "1104" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "514" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f66f12fa-cca5-4425-8807-7d1f9191edba + - 989cc2aa-61fd-4b17-9aa8-4020c0dc8fc8 status: 200 OK code: 200 - duration: 39.360511ms - - id: 61 + duration: 92.539298ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -3042,11 +2409,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 36806280-a614-4a51-a8f1-7f473faf875e + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=36806280-a614-4a51-a8f1-7f473faf875e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3054,32 +2431,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 1105 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1104" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6a35f27f-7dd0-439a-a0d2-09dc4c4e7600 + - 21b7af96-d47d-4d73-82cc-ad99bdd8249f status: 200 OK code: 200 - duration: 48.681033ms - - id: 62 + duration: 46.686188ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -3091,11 +2460,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 36806280-a614-4a51-a8f1-7f473faf875e + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=36806280-a614-4a51-a8f1-7f473faf875e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3103,32 +2482,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 1105 uncompressed: false - 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"}}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 53153994-3a6f-4232-8939-ff07619980dd + - f071c38f-9a89-4995-abea-7aa97eca30e7 status: 200 OK code: 200 - duration: 109.383029ms - - id: 63 + duration: 61.480923ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3144,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/5df399da-7aa8-485a-a142-cb3f896ed128 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -3152,32 +2523,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2426 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2426" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a2c0de02-0379-443b-8d3c-2a7f1dbb0f5b + - 75f8b66a-b790-4ad7-821d-47bc12ac474b status: 200 OK code: 200 - duration: 144.668202ms - - id: 64 + duration: 149.163057ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3189,11 +2552,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 36806280-a614-4a51-a8f1-7f473faf875e + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=36806280-a614-4a51-a8f1-7f473faf875e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3201,32 +2574,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 1105 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1104" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d1b716a9-79d3-4948-b960-e78108c4ff17 + - 697429ab-740a-4ce5-9a6f-b9e065f6abc4 status: 200 OK code: 200 - duration: 51.644168ms - - id: 65 + duration: 45.321506ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3242,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/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -3252,30 +2617,22 @@ interactions: trailer: {} content_length: 514 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b116d615-21f2-423d-8ad8-f547a19d0ea3 + - 229e90cc-35bb-4c7b-b3c9-a3a505280e24 status: 200 OK code: 200 - duration: 115.412912ms - - id: 66 + duration: 95.811236ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3291,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/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -3299,36 +2656,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 514 uncompressed: false - 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"}]}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - - "517" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "514" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 87ef8045-0b7a-4c07-a9db-927ca7fc4c36 - X-Total-Count: - - "1" + - 995df3e2-54d2-4315-8776-827e451489a8 status: 200 OK code: 200 - duration: 88.100716ms - - id: 67 + duration: 102.015477ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3340,11 +2685,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + tags: + - test-terraform-datasource-private-nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics?tags=test-terraform-datasource-private-nic method: GET response: proto: HTTP/2.0 @@ -3352,32 +2699,28 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 517 uncompressed: false - 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"}}' + body: '{"private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}]}' headers: Content-Length: - - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "517" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54:21 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 63bbb00b-355e-4302-847f-13a4e63ca974 + - b6060e31-5f65-4064-a14a-4145208e3137 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 93.876563ms - - id: 68 + duration: 114.785736ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3393,7 +2736,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics?tags=test-terraform-datasource-private-nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics method: GET response: proto: HTTP/2.0 @@ -3403,34 +2746,26 @@ interactions: trailer: {} content_length: 517 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}]}' headers: Content-Length: - "517" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54:21 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d101a2fe-1ce5-4e31-a3d2-30df3ac16e14 + - 7114fb1c-9c04-44e4-9e34-80c881f85343 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 111.2343ms - - id: 69 + duration: 122.731093ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3446,7 +2781,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -3456,30 +2791,22 @@ interactions: trailer: {} content_length: 514 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9a89db93-c84e-49c9-9db7-a3fe2ca8411a + - 949f4b4f-6030-4559-aa2e-3eb0433c6919 status: 200 OK code: 200 - duration: 92.313955ms - - id: 70 + duration: 99.783214ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3495,7 +2822,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -3505,30 +2832,22 @@ interactions: trailer: {} content_length: 514 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2273ece8-08d2-4828-b498-55cb122383a1 + - 4907ef68-517f-45ca-b737-cd105d799534 status: 200 OK code: 200 - duration: 109.623932ms - - id: 71 + duration: 115.599187ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3544,7 +2863,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -3552,32 +2871,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2472 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2472" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 88d79c76-1d35-4adf-b40c-a128aca38da0 + - dd904d0b-ab2b-4e61-acb4-36e4fc03ec0e status: 200 OK code: 200 - duration: 149.983617ms - - id: 72 + duration: 140.122493ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3589,11 +2900,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 36806280-a614-4a51-a8f1-7f473faf875e + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=36806280-a614-4a51-a8f1-7f473faf875e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3601,32 +2922,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 1105 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1104" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d78b3e29-9f4c-4504-97ea-557c5a17aed8 + - a49d3c15-ea40-40ff-8877-a309750c0789 status: 200 OK code: 200 - duration: 46.14515ms - - id: 73 + duration: 47.048515ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3642,7 +2955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -3650,32 +2963,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2472 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2472" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ccedaf58-4fc9-4743-a5ef-e420049202ec + - 97a392ca-7f21-4b4c-b183-6f1e97fe54cd status: 200 OK code: 200 - duration: 132.871801ms - - id: 74 + duration: 167.851052ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3691,7 +2996,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -3699,32 +3004,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2426 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2426" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f83f6f92-5c9a-412b-9013-d14f08139514 + - aed5303a-1d44-480e-b91b-1d695075051f status: 200 OK code: 200 - duration: 138.980081ms - - id: 75 + duration: 185.324075ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3736,11 +3033,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 36806280-a614-4a51-a8f1-7f473faf875e + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=36806280-a614-4a51-a8f1-7f473faf875e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3748,32 +3055,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 1105 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1104" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f6a1eef4-78bf-4038-a977-9d1a87824c61 + - 280b4a2b-3815-4a4a-bcec-39eabef77394 status: 200 OK code: 200 - duration: 49.606389ms - - id: 76 + duration: 45.145598ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3785,11 +3084,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 36806280-a614-4a51-a8f1-7f473faf875e + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=36806280-a614-4a51-a8f1-7f473faf875e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3797,32 +3106,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 1105 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1104" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 80532b94-4d9b-427e-94e7-0c7b80169e66 + - 52f8b392-ac19-4699-9864-c8c6c3bb322d status: 200 OK code: 200 - duration: 39.063485ms - - id: 77 + duration: 45.148062ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3838,7 +3139,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/36806280-a614-4a51-a8f1-7f473faf875e method: GET response: proto: HTTP/2.0 @@ -3846,32 +3147,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1094 uncompressed: false - 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"}' + body: '{"id":"36806280-a614-4a51-a8f1-7f473faf875e", "name":"tf-pn-quizzical-khayyam", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:37.692733Z", "updated_at":"2025-10-29T22:53:37.692733Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8", "created_at":"2025-10-29T22:53:37.692733Z", "updated_at":"2025-10-29T22:53:37.692733Z", "subnet":"172.17.108.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"36806280-a614-4a51-a8f1-7f473faf875e", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}, {"id":"6368d9d8-51f6-4016-8295-1e27e33c828d", "created_at":"2025-10-29T22:53:37.692733Z", "updated_at":"2025-10-29T22:53:37.692733Z", "subnet":"fd5f:519c:6d46:5f3b::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"36806280-a614-4a51-a8f1-7f473faf875e", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}], "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1089" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1094" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 08b39f86-fecf-44fe-b05e-3c7dbb27cba9 + - 28c0ceb8-d1f2-449a-91e1-732479cbc5ac status: 200 OK code: 200 - duration: 37.142985ms - - id: 78 + duration: 24.420765ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3887,7 +3180,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -3895,32 +3188,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2426 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2426" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c3f74dff-6019-42c3-95ee-bb860766ab1b + - c5341561-501a-4061-98ae-3a69bc1e13a8 status: 200 OK code: 200 - duration: 131.248207ms - - id: 79 + duration: 132.354538ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3936,7 +3221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 method: GET response: proto: HTTP/2.0 @@ -3946,30 +3231,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a248dbd0-2277-451f-a5f5-c1710a5a79e7 + - a78371bd-c4b1-4255-b21a-4b4620e707b6 status: 404 Not Found code: 404 - duration: 27.661302ms - - id: 80 + duration: 60.284706ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3985,7 +3262,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 method: GET response: proto: HTTP/2.0 @@ -3995,30 +3272,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"4f7eadda-567f-4f63-ba6a-e04480cd9e82", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.575425Z", "updated_at":"2025-10-29T22:53:38.575425Z", "references":[{"id":"056bce96-6b98-47be-9440-9ece8c96acc2", "product_resource_type":"instance_server", "product_resource_id":"6daf7954-11eb-415a-be20-d7e1a0cb63e9", "created_at":"2025-10-29T22:53:38.575425Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3aebf7fd-3e52-4406-a1f6-73d2c06d335b + - 7b5db1f1-140a-4d58-b2ec-73d869091cfa status: 200 OK code: 200 - duration: 70.433128ms - - id: 81 + duration: 86.377797ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -4034,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/5df399da-7aa8-485a-a142-cb3f896ed128/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/user_data method: GET response: proto: HTTP/2.0 @@ -4044,30 +3313,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f54041c1-605f-4bc7-ae59-3742518839db + - d97ce1ec-2a67-4dec-8ca4-a3128d526e6b status: 200 OK code: 200 - duration: 109.514647ms - - id: 82 + duration: 98.308045ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -4083,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/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics method: GET response: proto: HTTP/2.0 @@ -4093,34 +3354,26 @@ interactions: trailer: {} content_length: 517 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}]}' headers: Content-Length: - "517" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54:22 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c374bc64-dc87-4f9c-b9ec-41b005c3a131 + - 6f6901c3-73c5-4b97-aad6-5733c7bc2287 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 91.165692ms - - id: 83 + duration: 96.632302ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -4132,11 +3385,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&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=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4144,32 +3405,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 1105 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1104" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c6613563-4dbc-4899-bfdd-f47200a406d1 + - 85cb6769-72e4-4c9e-bf7f-70f266bf4d6c status: 200 OK code: 200 - duration: 31.073558ms - - id: 84 + duration: 29.546008ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -4181,11 +3434,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + tags: + - test-terraform-datasource-private-nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics?tags=test-terraform-datasource-private-nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics?tags=test-terraform-datasource-private-nic method: GET response: proto: HTTP/2.0 @@ -4195,34 +3450,26 @@ interactions: trailer: {} content_length: 517 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}]}' headers: Content-Length: - "517" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54:22 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 74adbbb0-75f2-4bfd-893d-d3e5e159bc55 + - 211e0d1f-b22e-46dc-a6a2-927a86fa4a7d X-Total-Count: - "1" status: 200 OK code: 200 - duration: 93.845475ms - - id: 85 + duration: 100.907727ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -4238,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/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics method: GET response: proto: HTTP/2.0 @@ -4246,32 +3493,28 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 517 uncompressed: false - 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"}}' + body: '{"private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}]}' headers: Content-Length: - - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "517" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54:22 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1f1c8ed2-8641-4ac3-bec5-84092d19deb8 + - fe30f0e1-15e6-43f1-9245-caec8d369eab + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 102.79424ms - - id: 86 + duration: 100.896586ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -4287,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/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -4295,36 +3538,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 514 uncompressed: false - 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"}]}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - - "517" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "514" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 72ac1b6c-75ab-4655-83d6-ba060534ff18 - X-Total-Count: - - "1" + - b0af732c-e6ce-4c5c-9e04-18c82d5d0453 status: 200 OK code: 200 - duration: 112.990533ms - - id: 87 + duration: 103.429953ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4340,7 +3571,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -4350,30 +3581,22 @@ interactions: trailer: {} content_length: 514 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 79599714-c9c8-4597-a399-a43c74485db0 + - 2bbbb92a-1830-4d36-8e07-e67e2c952e5d status: 200 OK code: 200 - duration: 118.279007ms - - id: 88 + duration: 101.749771ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4389,7 +3612,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -4399,30 +3622,22 @@ interactions: trailer: {} content_length: 514 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 479827d6-8c0a-4218-844c-48cc96a5de69 + - 95048cdd-3466-45a8-82af-fda3a92b27d3 status: 200 OK code: 200 - duration: 113.640893ms - - id: 89 + duration: 109.91013ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4438,7 +3653,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -4446,32 +3661,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2426 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2426" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 346fb89e-4e48-4eca-86b3-5c6a24f8abed + - 7594d40a-fcfa-4a15-9a82-5869b33d6d31 status: 200 OK code: 200 - duration: 162.202253ms - - id: 90 + duration: 148.317397ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4483,11 +3690,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 36806280-a614-4a51-a8f1-7f473faf875e + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=36806280-a614-4a51-a8f1-7f473faf875e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4495,32 +3712,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 1105 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1104" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1f0e9060-df90-49c9-89cd-d98d7c3d9bdc + - 1e369301-a4b3-44b0-8a53-d96e0b5db65a status: 200 OK code: 200 - duration: 51.935715ms - - id: 91 + duration: 62.422052ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4536,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/servers/5df399da-7aa8-485a-a142-cb3f896ed128 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -4544,32 +3753,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2472 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2472" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 44d4d5af-9907-40af-a07e-0c442093c4aa + - defad036-d88b-4786-ac39-fd8c1c8c85cc status: 200 OK code: 200 - duration: 120.184549ms - - id: 92 + duration: 133.662825ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4585,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/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -4593,32 +3794,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2426 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2426" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7b019a35-9421-4b70-8635-51c15e8859c8 + - 0fb95b00-fc8c-44de-a482-92e282ce268d status: 200 OK code: 200 - duration: 138.626028ms - - id: 93 + duration: 136.908273ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4630,11 +3823,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 36806280-a614-4a51-a8f1-7f473faf875e + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=36806280-a614-4a51-a8f1-7f473faf875e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4642,32 +3845,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 1105 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1104" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 346d3b47-a146-47d4-96ee-74adc4d85bc1 + - 033890c3-1974-43d2-b422-71fbde62ff29 status: 200 OK code: 200 - duration: 41.058425ms - - id: 94 + duration: 44.005185ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4679,11 +3874,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 36806280-a614-4a51-a8f1-7f473faf875e + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=36806280-a614-4a51-a8f1-7f473faf875e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4691,32 +3896,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 1105 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1104" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b8d503e9-335d-463e-94b8-8199f75eed33 + - d6a1b0c1-412d-4403-9a77-02d4e033918c status: 200 OK code: 200 - duration: 55.101419ms - - id: 95 + duration: 59.050679ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4732,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/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -4742,30 +3939,22 @@ interactions: trailer: {} content_length: 514 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8cb1cc9c-9e7e-47b7-a45b-4d64cc560e26 + - 7a4f228f-0161-4d49-a257-4d16081e826d status: 200 OK code: 200 - duration: 89.816213ms - - id: 96 + duration: 132.961664ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4781,7 +3970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -4789,32 +3978,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2426 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2426" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fc0c7bd7-adff-4c7d-9ed2-681c1002700b + - cef3b6d6-4185-45ea-9c16-9fd84b6e887c status: 200 OK code: 200 - duration: 147.214568ms - - id: 97 + duration: 138.794781ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4826,11 +4007,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 36806280-a614-4a51-a8f1-7f473faf875e + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=36806280-a614-4a51-a8f1-7f473faf875e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4838,32 +4029,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 1105 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"3601587f-901e-4f25-a111-1c986a034bc9", "address":"fd5f:519c:6d46:5f3b:1e60:67f3:c094:bf78/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:46.706184Z", "updated_at":"2025-10-29T22:53:46.706184Z", "source":{"subnet_id":"6368d9d8-51f6-4016-8295-1e27e33c828d"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"8d8380d9-13f6-4fc7-8e77-908d4789525e", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:46.589077Z", "updated_at":"2025-10-29T22:53:46.589077Z", "source":{"subnet_id":"f879a35f-4c62-4fe9-8c06-60694cab0bf8"}, "resource":{"type":"instance_private_nic", "id":"f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "mac_address":"02:00:00:11:3E:9E", "name":"test-terraform-datasource-private-nic"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1104" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1105" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9242d1f-8c4d-4670-b1ef-4f93a401114b + - 5535ca80-af51-4725-9cbd-c8f04e301721 status: 200 OK code: 200 - duration: 46.088424ms - - id: 98 + duration: 47.765606ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4879,7 +4062,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -4889,30 +4072,22 @@ interactions: trailer: {} content_length: 514 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7", "private_network_id": "36806280-a614-4a51-a8f1-7f473faf875e", "server_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "mac_address": "02:00:00:11:3e:9e", "state": "available", "creation_date": "2025-10-29T22:53:46.272516+00:00", "modification_date": "2025-10-29T22:54:13.716480+00:00", "zone": "fr-par-1", "tags": ["test-terraform-datasource-private-nic"], "ipam_ip_ids": ["8d8380d9-13f6-4fc7-8e77-908d4789525e", "3601587f-901e-4f25-a111-1c986a034bc9"]}}' headers: Content-Length: - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d58bb23c-8a8c-4550-8a9d-b1183465be38 + - 636ecbbc-4138-4b26-8580-c1f44f06803f status: 200 OK code: 200 - duration: 98.23768ms - - id: 99 + duration: 114.437616ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4928,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/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: DELETE response: proto: HTTP/2.0 @@ -4940,26 +4115,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c631c2b0-826a-4ccd-b3b9-27c29d0070f9 + - f52fe887-dfef-4deb-9c55-56c6e231f2bc status: 204 No Content code: 204 - duration: 397.967744ms - - id: 100 + duration: 378.038802ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4975,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/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -4985,30 +4152,22 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_private_nic", "resource_id": "f8694abf-4cf2-4e7d-9a7d-40d4b06908e7"}' headers: Content-Length: - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e7ee2c0-6c5c-4cf9-9e94-c3a1ef24dded + - 9d21cf66-4b21-4e8b-8d45-1bb56c0d3081 status: 404 Not Found code: 404 - duration: 122.76053ms - - id: 101 + duration: 90.516276ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -5024,7 +4183,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -5032,32 +4191,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1931 + content_length: 1929 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1931" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1929" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8f28e796-1eeb-4ada-9b0d-8a71efd3fb4d + - b1d81364-f799-42fa-8468-4c095797927e status: 200 OK code: 200 - duration: 156.256168ms - - id: 102 + duration: 140.183758ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -5073,7 +4224,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -5081,32 +4232,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1931 + content_length: 1929 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:53:42.912394+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1931" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1929" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa380d48-6040-4bcb-a3f5-333bb18b1d3b + - 30fb8be8-e219-4a22-a6cc-e9293774ffb2 status: 200 OK code: 200 - duration: 167.821257ms - - id: 103 + duration: 152.300536ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -5124,7 +4267,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/5df399da-7aa8-485a-a142-cb3f896ed128/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/action method: POST response: proto: HTTP/2.0 @@ -5134,32 +4277,24 @@ interactions: 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"}}' + body: '{"task": {"id": "87d5ce12-15f9-4f26-98f7-6ad6ab11a5cc", "description": "server_terminate", "status": "pending", "href_from": "/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/action", "href_result": "/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9", "started_at": "2025-10-29T22:54:24.133963+00:00", "terminated_at": null, "progress": 0, "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 + - Wed, 29 Oct 2025 22:54:24 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/46f0ab0b-f529-4f5a-aae6-8366119e47d7 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/87d5ce12-15f9-4f26-98f7-6ad6ab11a5cc Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e810ae82-52f9-4dea-ac4d-98aabee2f86f + - c2e4b308-6289-4659-a603-44c586ddaa29 status: 202 Accepted code: 202 - duration: 653.341185ms - - id: 104 + duration: 288.664813ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -5175,7 +4310,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -5183,32 +4318,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1894 + content_length: 1938 uncompressed: 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: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"}}' + body: '{"server": {"id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9", "name": "test-terraform-datasource-private-nic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test-terraform-datasource-private-nic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:55", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.437412+00:00", "modification_date": "2025-10-29T22:54:23.921106+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "502", "node_id": "2"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1894" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1938" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - de7129d0-efe3-4e80-adf6-4c89c04fde2c + - bc82f2b6-8da9-46b6-a64f-a2b52fbf181f status: 200 OK code: 200 - duration: 138.389787ms - - id: 105 + duration: 143.223103ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -5224,7 +4351,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/36806280-a614-4a51-a8f1-7f473faf875e method: DELETE response: proto: HTTP/2.0 @@ -5236,26 +4363,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 006d79be-1de2-45dd-98b1-da031a859027 + - fd9c6514-fbbb-4f2d-9a17-57ff33b26409 status: 204 No Content code: 204 - duration: 1.166071368s - - id: 106 + duration: 1.120360897s + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -5271,7 +4390,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 method: GET response: proto: HTTP/2.0 @@ -5281,30 +4400,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5df399da-7aa8-485a-a142-cb3f896ed128","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9a286edd-92ea-44e6-bff5-b3a981ab897a + - f8c9f806-5121-4e19-9da4-66ac8d7f1999 status: 404 Not Found code: 404 - duration: 48.411572ms - - id: 107 + duration: 46.221701ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5320,7 +4431,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 method: GET response: proto: HTTP/2.0 @@ -5330,30 +4441,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4f7eadda-567f-4f63-ba6a-e04480cd9e82"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f26e57c8-c1ca-4556-9042-f67734a8e671 + - 9609e527-bb84-4bea-990e-dc6a823fab53 status: 404 Not Found code: 404 - duration: 36.920691ms - - id: 108 + duration: 28.373536ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5369,7 +4472,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 method: GET response: proto: HTTP/2.0 @@ -5379,30 +4482,22 @@ interactions: trailer: {} content_length: 498 uncompressed: false - 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"}' + body: '{"id":"4f7eadda-567f-4f63-ba6a-e04480cd9e82", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.575425Z", "updated_at":"2025-10-29T22:54:25.610710Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:54:25.610710Z", "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:04:16 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 453f865d-836c-4238-8b20-81c3b2773ddf + - 35cb284a-1ceb-4764-b33e-19bdcdb1c9d1 status: 200 OK code: 200 - duration: 86.314464ms - - id: 109 + duration: 78.589686ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5418,7 +4513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 method: DELETE response: proto: HTTP/2.0 @@ -5430,26 +4525,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fa9e60be-8393-4ed5-a36a-22d80d80abf6 + - 010a30e7-a1ef-4e20-8b26-addeca76d0a4 status: 204 No Content code: 204 - duration: 160.522734ms - - id: 110 + duration: 160.378163ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5465,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/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -5475,30 +4562,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5df399da-7aa8-485a-a142-cb3f896ed128","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3c12c70b-250b-4130-a9b9-7d102e6224c2 + - 3c082ba6-367c-46be-9b38-7a116a6e0284 status: 404 Not Found code: 404 - duration: 27.992965ms - - id: 111 + duration: 34.928754ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5514,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/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -5524,30 +4603,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5df399da-7aa8-485a-a142-cb3f896ed128","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6237bd8c-7672-416f-b544-cd9c0153d8d9 + - 2d1a377c-188a-4883-867c-faf6604c165c status: 404 Not Found code: 404 - duration: 25.238842ms - - id: 112 + duration: 30.194271ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5563,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/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -5573,30 +4644,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5df399da-7aa8-485a-a142-cb3f896ed128","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 766c9682-864d-4b7d-a00b-74639d3b87fb + - 954e66a4-263a-49c5-a5e5-ee7878f3fda5 status: 404 Not Found code: 404 - duration: 27.974561ms - - id: 113 + duration: 27.976634ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5612,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/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 method: GET response: proto: HTTP/2.0 @@ -5622,26 +4685,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5df399da-7aa8-485a-a142-cb3f896ed128","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "6daf7954-11eb-415a-be20-d7e1a0cb63e9"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 279c57c7-9b51-4eec-be2e-bf705414ef02 + - fb2ad86b-cd8d-46fc-b50e-772d76c0cf76 status: 404 Not Found code: 404 - duration: 27.71785ms + duration: 26.41268ms 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 a05b9dc37..56047fedb 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 @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:53:45 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 21989959-69f4-43c9-b609-c6dc3a9d9ac3 + - 729395fb-1a5e-44a4-b551-1d58e02ec4d0 status: 201 Created code: 201 - duration: 180.482078ms + duration: 265.613029ms - id: 1 request: proto: HTTP/1.1 @@ -72,7 +64,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/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: PATCH response: proto: HTTP/2.0 @@ -82,29 +74,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 176d5ff1-0052-4080-bedb-7e74830b529f + - 827cbc07-cd29-402e-b527-147651db2655 status: 200 OK code: 200 - duration: 147.765775ms + duration: 177.392235ms - id: 2 request: proto: HTTP/1.1 @@ -123,7 +107,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/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules method: PUT response: proto: HTTP/2.0 @@ -133,29 +117,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a2420ac1-f5a0-4678-93f8-d190d10cbce8 + - f8caf671-398d-4b26-b3bc-eb2423574ad2 status: 200 OK code: 200 - duration: 143.113447ms + duration: 149.764928ms - id: 3 request: proto: HTTP/1.1 @@ -172,7 +148,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -182,29 +158,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7c5a655d-ce7c-4d6c-bf69-2221d834a638 + - 67553eb1-3032-4cd5-a5a3-3f331cc832a8 status: 200 OK code: 200 - duration: 84.506723ms + duration: 150.34891ms - id: 4 request: proto: HTTP/1.1 @@ -217,11 +185,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -231,29 +201,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0c6ff7c0-8560-4672-a80c-141ca49a196b + - cd4d573d-efac-419b-b9a9-87de1c643b15 status: 200 OK code: 200 - duration: 117.408003ms + duration: 96.356136ms - id: 5 request: proto: HTTP/1.1 @@ -270,7 +232,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -280,29 +242,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eb4b72f4-132c-4001-ad42-35210243542f + - 743e711d-5033-472f-9d4a-ed53a4052366 status: 200 OK code: 200 - duration: 105.791212ms + duration: 108.944212ms - id: 6 request: proto: HTTP/1.1 @@ -315,11 +269,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -329,29 +285,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b51ced20-985f-4098-917f-3bf624c662c6 + - b4c8040d-8dc6-417e-ae20-0ac1e434c743 status: 200 OK code: 200 - duration: 113.939183ms + duration: 102.12913ms - id: 7 request: proto: HTTP/1.1 @@ -368,7 +316,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -378,29 +326,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 301d354f-4cf1-49b9-81ce-4a728ea94e2e + - da44f1c1-8bd9-419a-8411-50712df60433 status: 200 OK code: 200 - duration: 97.833789ms + duration: 114.285339ms - id: 8 request: proto: HTTP/1.1 @@ -413,11 +353,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -427,29 +369,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - acf70787-1b0a-46c3-a87f-e07843855a3a + - 6b4fc1dc-3a84-4416-bce2-b12d6a82efcc status: 200 OK code: 200 - duration: 113.817254ms + duration: 113.546818ms - id: 9 request: proto: HTTP/1.1 @@ -466,7 +400,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -476,29 +410,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 36d0f9f3-803e-4a71-9341-2a885e91d7bb + - f3c0ad69-7aec-41cd-bfe6-38a216b4c4d3 status: 200 OK code: 200 - duration: 81.461507ms + duration: 81.647784ms - id: 10 request: proto: HTTP/1.1 @@ -511,7 +437,11 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-security-group + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -525,33 +455,25 @@ interactions: trailer: {} content_length: 586 uncompressed: false - 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"}]}' + body: '{"security_groups": [{"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "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: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:53:47 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 95306dc7-78bb-4e6c-9d07-9187b839eed5 + - 44a63998-0bcd-40c9-8298-66e0823a3291 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 120.068801ms + duration: 127.615354ms - id: 11 request: proto: HTTP/1.1 @@ -564,11 +486,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -578,29 +502,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 67c0f594-b576-4763-b27e-60cebf240064 + - 34ce40c1-9885-4cc8-9cf7-ffbbfdbfee31 status: 200 OK code: 200 - duration: 85.174787ms + duration: 95.9521ms - id: 12 request: proto: HTTP/1.1 @@ -617,7 +533,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -627,29 +543,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0482aa95-d6f7-4acc-91fa-1dc041c0926b + - 6c39d046-dcdb-4e19-a1a0-928dd32a39bd status: 200 OK code: 200 - duration: 95.863098ms + duration: 98.20875ms - id: 13 request: proto: HTTP/1.1 @@ -662,11 +570,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -676,29 +586,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c73030f3-1c2e-4bec-82b5-7c3f88737f34 + - c23ece52-c683-4f4c-b617-ab6dc3e70cb0 status: 200 OK code: 200 - duration: 102.999251ms + duration: 90.09082ms - id: 14 request: proto: HTTP/1.1 @@ -715,7 +617,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -725,29 +627,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9cf8782a-65b9-4ca3-a728-7f7887a11820 + - fd8e5a77-f1f1-4220-b9c8-bacba92c68da status: 200 OK code: 200 - duration: 109.908831ms + duration: 114.719ms - id: 15 request: proto: HTTP/1.1 @@ -764,7 +658,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -774,29 +668,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ca4c1d77-8ee5-4b32-8b25-6381a80a3771 + - 03efd47d-cb8d-45d1-bff4-0d355918c897 status: 200 OK code: 200 - duration: 100.706244ms + duration: 113.880242ms - id: 16 request: proto: HTTP/1.1 @@ -813,7 +699,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -823,29 +709,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 50f0090a-f30e-4fa7-9b93-ec1b838db22f + - 2f120e73-4f71-42d1-9fe0-36deeafdd605 status: 200 OK code: 200 - duration: 105.54891ms + duration: 103.037688ms - id: 17 request: proto: HTTP/1.1 @@ -858,7 +736,11 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-security-group + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -872,33 +754,25 @@ interactions: trailer: {} content_length: 586 uncompressed: false - 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"}]}' + body: '{"security_groups": [{"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "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: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:53:48 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e36c8fcb-8cc3-4eb0-91f4-c0c7c390082f + - 50499832-0c99-4afa-8982-d4ebc8f8f9fb X-Total-Count: - "1" status: 200 OK code: 200 - duration: 115.337364ms + duration: 138.870839ms - id: 18 request: proto: HTTP/1.1 @@ -911,11 +785,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -923,31 +799,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 583 + content_length: 1536 uncompressed: false - 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"}}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9b7dbdac-0ace-4508-aa82-ca8c0191b30e + - 0f4598a1-1f1a-45d7-8335-e8d6273b4184 status: 200 OK code: 200 - duration: 86.442552ms + duration: 110.397921ms - id: 19 request: proto: HTTP/1.1 @@ -964,7 +832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -972,31 +840,23 @@ 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": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "583" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e86405b4-e235-4e10-9943-2177e26ccd53 + - 2fc92787-9e49-4935-aad5-d1d147d03dfc status: 200 OK code: 200 - duration: 130.413388ms + duration: 109.965212ms - id: 20 request: proto: HTTP/1.1 @@ -1009,11 +869,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1023,29 +885,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a2fb2582-ff39-4cae-9720-efe970f68b71 + - c4513aff-a948-404d-bdc1-ed3807c95509 status: 200 OK code: 200 - duration: 98.796825ms + duration: 97.440263ms - id: 21 request: proto: HTTP/1.1 @@ -1062,7 +916,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -1072,29 +926,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3c8aefa0-4854-483d-b7c6-16e4ad686131 + - 1bc06864-a007-4d80-bf49-aa1fe0d2b2b3 status: 200 OK code: 200 - duration: 121.336017ms + duration: 99.678538ms - id: 22 request: proto: HTTP/1.1 @@ -1107,11 +953,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1121,29 +969,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3b1cbfcc-9ae4-4041-acf8-1db1196a953a + - a18d3a94-d05f-4880-b58a-def681262b00 status: 200 OK code: 200 - duration: 118.914639ms + duration: 102.409615ms - id: 23 request: proto: HTTP/1.1 @@ -1160,7 +1000,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -1170,29 +1010,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d6b3e9d5-fbf6-40ef-a3a9-c85d414c14b2 + - dbcf7b80-25e2-4c4a-8e84-7c2d6b886715 status: 200 OK code: 200 - duration: 101.422147ms + duration: 106.809482ms - id: 24 request: proto: HTTP/1.1 @@ -1205,7 +1037,11 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-security-group + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1219,33 +1055,25 @@ interactions: trailer: {} content_length: 586 uncompressed: false - 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"}]}' + body: '{"security_groups": [{"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "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: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:53:48 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e96c667c-a72d-46f1-b364-2ed866e76544 + - 56b7dcd0-e8ea-4075-9c35-ebe08eda244d X-Total-Count: - "1" status: 200 OK code: 200 - duration: 123.432446ms + duration: 116.206321ms - id: 25 request: proto: HTTP/1.1 @@ -1258,11 +1086,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1272,29 +1102,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7f39c671-3067-4f03-9b28-5ce4f49132db + - 22ece8b4-1fdf-4e9b-88ca-25879b80ea1a status: 200 OK code: 200 - duration: 103.25457ms + duration: 101.080419ms - id: 26 request: proto: HTTP/1.1 @@ -1311,7 +1133,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -1321,29 +1143,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6ad5d2ba-04a1-4878-ada0-e2f2b73b0797 + - 46ca68be-8398-4da4-826a-bb4011552ffb status: 200 OK code: 200 - duration: 97.747439ms + duration: 103.901574ms - id: 27 request: proto: HTTP/1.1 @@ -1356,11 +1170,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1370,29 +1186,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8efb1346-db88-4049-be48-95aeb9901c81 + - 09bb71d0-b2d1-45ed-ad4d-44ec7272b430 status: 200 OK code: 200 - duration: 128.0979ms + duration: 101.015237ms - id: 28 request: proto: HTTP/1.1 @@ -1409,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/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -1419,29 +1227,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 993e0f68-cabd-4979-9727-f1022b66b4ab + - 20611bc7-90d0-4c04-b050-87b10f994ebf status: 200 OK code: 200 - duration: 100.610415ms + duration: 114.234054ms - id: 29 request: proto: HTTP/1.1 @@ -1454,11 +1254,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1468,29 +1270,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45c736e6-c522-467b-9974-f9fc8eedceea + - 8e3f53d2-2ae3-4f1b-8f89-c8b7531a134b status: 200 OK code: 200 - duration: 85.863739ms + duration: 93.532456ms - id: 30 request: proto: HTTP/1.1 @@ -1507,7 +1301,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -1517,29 +1311,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c27153ec-1203-4456-b223-a53677e6de61 + - 46f5a11f-4753-464c-a4a8-5439af6b40fa status: 200 OK code: 200 - duration: 111.18813ms + duration: 114.321658ms - id: 31 request: proto: HTTP/1.1 @@ -1552,7 +1338,11 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-security-group + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1566,33 +1356,25 @@ interactions: trailer: {} content_length: 586 uncompressed: false - 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"}]}' + body: '{"security_groups": [{"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "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: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:53:49 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dc0136cb-0584-4089-8be5-bd4383110aa2 + - 86ab3007-b1c2-4980-94ee-b79e407fef4b X-Total-Count: - "1" status: 200 OK code: 200 - duration: 135.931241ms + duration: 140.153098ms - id: 32 request: proto: HTTP/1.1 @@ -1605,11 +1387,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1619,29 +1403,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0a7dbc83-0692-4a16-9428-63a57f08c761 + - c0bc7cee-6f8b-46d1-bab1-447687a290e2 status: 200 OK code: 200 - duration: 102.337723ms + duration: 108.400657ms - id: 33 request: proto: HTTP/1.1 @@ -1658,7 +1434,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -1668,29 +1444,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a34ae7e6-ec26-4e13-96c1-cf4c340acbee + - 4310b627-f8d8-4cc5-b295-e6b1df4b591d status: 200 OK code: 200 - duration: 101.369238ms + duration: 123.445187ms - id: 34 request: proto: HTTP/1.1 @@ -1703,11 +1471,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1717,29 +1487,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 81ae43e9-c3a7-41b0-9cb8-90e7c37a539a + - 5f74aa34-f791-4bcd-910d-2f14a1ad635b status: 200 OK code: 200 - duration: 135.896025ms + duration: 124.744778ms - id: 35 request: proto: HTTP/1.1 @@ -1756,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/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -1766,29 +1528,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3ef03978-92de-4a71-83c9-f091351cea1c + - 598fe7fe-0450-4b4b-8df9-4a0ac950657c status: 200 OK code: 200 - duration: 87.147635ms + duration: 94.960486ms - id: 36 request: proto: HTTP/1.1 @@ -1805,7 +1559,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -1815,29 +1569,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 451e2b84-505d-49f0-800f-f23b32c8372d + - 821eb061-bdb4-4691-bab2-58a108a7cf1e status: 200 OK code: 200 - duration: 103.320535ms + duration: 88.476172ms - id: 37 request: proto: HTTP/1.1 @@ -1854,7 +1600,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -1864,29 +1610,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2ca39c89-b476-4fa7-8429-dc572bc6fed1 + - 09a48500-cd68-46a7-a468-270ba5911250 status: 200 OK code: 200 - duration: 84.859658ms + duration: 100.87727ms - id: 38 request: proto: HTTP/1.1 @@ -1899,7 +1637,11 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-security-group + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1913,33 +1655,25 @@ interactions: trailer: {} content_length: 586 uncompressed: false - 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"}]}' + body: '{"security_groups": [{"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "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: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:53:50 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ebf45cc7-7720-4f58-9c0b-e4632c0fc71c + - be440e0a-558b-469a-b1fc-58ec4b469801 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 146.005011ms + duration: 120.644691ms - id: 39 request: proto: HTTP/1.1 @@ -1952,11 +1686,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1966,29 +1702,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e010c8bb-910d-4bc6-9dad-3d6c3a5eaba6 + - f8933f66-b2c8-4299-bf73-6a8169944887 status: 200 OK code: 200 - duration: 103.526802ms + duration: 95.450032ms - id: 40 request: proto: HTTP/1.1 @@ -2005,7 +1733,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -2015,29 +1743,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eef04df8-48af-4e98-8f78-09a190840208 + - cfd8a2f3-862a-4371-9ed4-9280bdb02237 status: 200 OK code: 200 - duration: 88.726744ms + duration: 96.76997ms - id: 41 request: proto: HTTP/1.1 @@ -2050,11 +1770,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -2064,29 +1786,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - db976a3a-1ebc-4d0b-8579-7f46b6ad592b + - 7fd11492-af7f-41fc-b66b-aa7d0ac82585 status: 200 OK code: 200 - duration: 93.669037ms + duration: 83.039908ms - id: 42 request: proto: HTTP/1.1 @@ -2103,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/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -2113,29 +1827,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f61870f4-9e0e-450d-a881-4d36a0691ff1 + - 19665513-3664-477b-ac29-6fb5b85c6a43 status: 200 OK code: 200 - duration: 93.337496ms + duration: 101.754621ms - id: 43 request: proto: HTTP/1.1 @@ -2148,11 +1854,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -2162,29 +1870,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d72c493c-4c02-4fd6-811e-1f5ed3de114a + - fbe80f59-b399-459b-b369-2895f96ec68c status: 200 OK code: 200 - duration: 112.104468ms + duration: 104.799324ms - id: 44 request: proto: HTTP/1.1 @@ -2201,7 +1901,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -2211,29 +1911,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 810954ec-cd4f-45ef-9fec-b63ba351c571 + - 67baedbc-14f5-48ec-9ece-72235def59be status: 200 OK code: 200 - duration: 90.707668ms + duration: 93.094778ms - id: 45 request: proto: HTTP/1.1 @@ -2246,7 +1938,11 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-security-group + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2260,33 +1956,25 @@ interactions: trailer: {} content_length: 586 uncompressed: false - 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"}]}' + body: '{"security_groups": [{"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "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: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:53:50 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5def58b8-1f15-4ad2-8b9b-592831b45000 + - 3600d736-02c5-4d34-b32b-9aeabde7d47f X-Total-Count: - "1" status: 200 OK code: 200 - duration: 106.138388ms + duration: 167.703883ms - id: 46 request: proto: HTTP/1.1 @@ -2299,11 +1987,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -2313,29 +2003,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e6f6d657-e8e2-4acc-aedf-5e3db9c8a346 + - 3fbf3cc4-d505-4e93-9d2a-df10ff1e568d status: 200 OK code: 200 - duration: 112.874662ms + duration: 90.6995ms - id: 47 request: proto: HTTP/1.1 @@ -2352,7 +2034,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -2362,29 +2044,21 @@ interactions: trailer: {} content_length: 583 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "e7deca3f-b49b-4d66-a80f-569745f050cf", "creation_date": "2025-10-29T22:53:45.661419+00:00", "modification_date": "2025-10-29T22:53:45.661419+00:00", "name": "tf-security-group", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 049d68b0-fda3-4702-b523-68cb53cdcaec + - 804ce11f-8b57-4b76-8242-9267999b3bfa status: 200 OK code: 200 - duration: 112.265119ms + duration: 88.042723ms - id: 48 request: proto: HTTP/1.1 @@ -2397,11 +2071,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -2411,29 +2087,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eb74d1a8-03fb-43c0-b2de-6c4899caa79d + - 06bb95ef-72f9-41cf-a9b1-4d463a1c306b status: 200 OK code: 200 - duration: 99.780923ms + duration: 99.72161ms - id: 49 request: proto: HTTP/1.1 @@ -2450,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/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: DELETE response: proto: HTTP/2.0 @@ -2462,25 +2130,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 58e5b5f5-bcef-4cb4-a8a8-66d9d069807f + - 7e009f0e-117a-4a6e-a7f5-47ff4906c7dd status: 204 No Content code: 204 - duration: 150.486542ms + duration: 142.088557ms - id: 50 request: proto: HTTP/1.1 @@ -2497,7 +2157,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -2507,29 +2167,21 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_security_group", "resource_id": "e7deca3f-b49b-4d66-a80f-569745f050cf"}' headers: Content-Length: - "151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1f8e89b0-e8af-40d0-a487-af9cc4215d3b + - fd797033-3bed-4b7c-91df-b0cf1a3d3353 status: 404 Not Found code: 404 - duration: 28.854657ms + duration: 27.01361ms - id: 51 request: proto: HTTP/1.1 @@ -2546,7 +2198,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -2556,29 +2208,21 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_security_group", "resource_id": "e7deca3f-b49b-4d66-a80f-569745f050cf"}' headers: Content-Length: - "151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 68c05405-0074-4f2c-ba1f-dd55ceea78da + - 01508119-d9c4-469e-b53d-22593b7e7b3b status: 404 Not Found code: 404 - duration: 34.583685ms + duration: 27.114309ms - id: 52 request: proto: HTTP/1.1 @@ -2595,7 +2239,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf method: GET response: proto: HTTP/2.0 @@ -2605,26 +2249,18 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_security_group", "resource_id": "e7deca3f-b49b-4d66-a80f-569745f050cf"}' headers: Content-Length: - "151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 05e524e9-7897-4843-87ea-9b31b3b5674f + - 1b14ea2c-cd1c-42f3-b575-066548d50819 status: 404 Not Found code: 404 - duration: 34.689683ms + duration: 29.659047ms 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 4039a3bd2..b29228456 100644 --- a/internal/services/instance/testdata/data-source-server-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-server-basic.cassette.yaml @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:50 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f12083bf-f228-4295-b089-ab5cc75d636a + - a1183b4f-3e28-4e7d-8926-31037831e086 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 46.894561ms + duration: 33.452328ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:50 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4efb7bd-5d91-4f24-9506-07580052c0f5 + - 5b8517c9-e514-494b-b70b-ce47223e572f X-Total-Count: - "68" status: 200 OK code: 200 - duration: 89.538683ms + duration: 39.048471ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,31 +127,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:50 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 82ba07ac-817e-4898-a6a0-65145c7dd632 + - 4e7a518a-a250-43ae-a998-d093351b4137 status: 200 OK code: 200 - duration: 44.927182ms + duration: 43.130123ms - id: 3 request: proto: HTTP/1.1 @@ -182,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 1818 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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1818" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:52 GMT + - Wed, 29 Oct 2025 22:53:39 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a4a5c89f-4d4b-4bf4-8cab-77636c47f218 + - 116967c6-4f84-4e1d-9e70-bbdc9ce965a1 status: 201 Created code: 201 - duration: 2.022191008s + duration: 1.759606354s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -235,29 +215,21 @@ 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-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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:52 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 867df1e8-9ce3-42a8-9f1d-0839e6622588 + - 7188f172-c245-4c6d-b314-9d04e7037668 status: 200 OK code: 200 - duration: 141.20393ms + duration: 146.171826ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -284,29 +256,21 @@ 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-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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:53 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 47510240-fb42-48ac-98d2-ef67073bcb53 + - ef03a848-904a-48d1-af4e-04e60063366a status: 200 OK code: 200 - duration: 152.866807ms + duration: 179.740482ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -331,31 +295,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 1818 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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1818" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:53 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 17254826-4d39-4d43-9dca-dbb3bdea0ac3 + - 799f338f-ce11-45d5-9acd-ce3906135d3d status: 200 OK code: 200 - duration: 141.009136ms + duration: 144.100224ms - id: 7 request: proto: HTTP/1.1 @@ -372,7 +328,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -382,29 +338,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:53 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e03346ab-8b87-45ad-9cf4-474368b10c17 + - 667e7a53-4deb-4632-92dc-82a980a88f10 status: 404 Not Found code: 404 - duration: 24.602678ms + duration: 34.047952ms - id: 8 request: proto: HTTP/1.1 @@ -421,7 +369,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -431,29 +379,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.654373Z", "updated_at":"2025-10-29T22:53:38.654373Z", "references":[{"id":"e1cde554-63c5-4461-b98e-e28b0079891f", "product_resource_type":"instance_server", "product_resource_id":"4e68e654-ba4c-484d-99a2-7617b37a967c", "created_at":"2025-10-29T22:53:38.654373Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:53 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7198a7aa-cde6-471f-b871-2364b536b7c6 + - 59cf7b7d-0f91-41e6-bcd9-b9aab78ccd45 status: 200 OK code: 200 - duration: 80.598032ms + duration: 81.856302ms - id: 9 request: proto: HTTP/1.1 @@ -470,7 +410,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/user_data method: GET response: proto: HTTP/2.0 @@ -480,29 +420,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:53 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3e368f96-47d3-467e-ac8b-a2ae2f2b0e1b + - 5779a72a-7811-4b9a-89fc-7416231a5610 status: 200 OK code: 200 - duration: 100.323716ms + duration: 85.131135ms - id: 10 request: proto: HTTP/1.1 @@ -519,7 +451,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/private_nics method: GET response: proto: HTTP/2.0 @@ -529,33 +461,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:53 GMT + - Wed, 29 Oct 2025 22:53:40 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2d68d167-dbf0-43f1-928a-901956c28a65 + - 2a4dd966-1866-4394-a24f-d5d459de25b4 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 111.891824ms + duration: 87.281486ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -580,31 +504,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 1818 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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1818" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:53 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f0f373af-9c51-40a6-8a20-232c8da5baf2 + - 03c11e3d-fa42-46e0-b94c-49404edcd5f9 status: 200 OK code: 200 - duration: 151.962222ms + duration: 162.42154ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -631,29 +547,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:53 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 52fd3d0b-7fba-4c67-b15f-be310ba5319c + - 6c46c351-d838-4b52-9de5-5d41a34fd4aa status: 404 Not Found code: 404 - duration: 28.594371ms + duration: 23.022657ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -680,29 +588,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.654373Z", "updated_at":"2025-10-29T22:53:38.654373Z", "references":[{"id":"e1cde554-63c5-4461-b98e-e28b0079891f", "product_resource_type":"instance_server", "product_resource_id":"4e68e654-ba4c-484d-99a2-7617b37a967c", "created_at":"2025-10-29T22:53:38.654373Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:54 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5424ad98-e2bb-42c5-9c67-d20e6a15c2c3 + - cd7253af-fdb0-4899-8b4f-393bed7715d4 status: 200 OK code: 200 - duration: 91.172167ms + duration: 97.713441ms - id: 14 request: proto: HTTP/1.1 @@ -719,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/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/user_data method: GET response: proto: HTTP/2.0 @@ -729,29 +629,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:54 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fb5cb214-6f0f-41b9-b9a1-1d871767279b + - d1c2711a-f8d6-443a-9eaf-49913dd5ac92 status: 200 OK code: 200 - duration: 100.95486ms + duration: 99.753556ms - id: 15 request: proto: HTTP/1.1 @@ -768,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/servers/af5317ea-c305-4003-827a-564cd7468629/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/private_nics method: GET response: proto: HTTP/2.0 @@ -778,33 +670,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:54 GMT + - Wed, 29 Oct 2025 22:53:40 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9848d676-691b-4489-9f0c-7f041acfd965 + - 8fb8f3b6-a4da-4af2-99a2-972e25d8ccab X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.40848ms + duration: 86.228236ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -829,31 +713,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 1818 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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1818" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:54 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 504023dc-5e6a-4d0c-b01e-23d544e26bba + - 24166c18-4c9e-4c54-b39a-55f78496c85f status: 200 OK code: 200 - duration: 142.343478ms + duration: 133.370312ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -880,29 +756,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:54 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ceac6757-a05b-4a8d-b69e-72bb0921586d + - 29e0d8ea-5010-4618-866f-5cd391c28c8f status: 404 Not Found code: 404 - duration: 36.660825ms + duration: 30.47428ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -929,29 +797,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.654373Z", "updated_at":"2025-10-29T22:53:38.654373Z", "references":[{"id":"e1cde554-63c5-4461-b98e-e28b0079891f", "product_resource_type":"instance_server", "product_resource_id":"4e68e654-ba4c-484d-99a2-7617b37a967c", "created_at":"2025-10-29T22:53:38.654373Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:54 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6772cf64-2c13-4f81-a28a-dac35c667b22 + - 6bbb372d-2f6e-4bc3-a9d0-831acd1f6472 status: 200 OK code: 200 - duration: 80.357542ms + duration: 80.698908ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +828,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/user_data method: GET response: proto: HTTP/2.0 @@ -978,29 +838,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:54 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ef8419bb-cf24-4dfd-92e3-a9076d67e20d + - 5e0f0fca-54f5-4d1a-b7c9-65a431d71833 status: 200 OK code: 200 - duration: 135.160401ms + duration: 130.625179ms - id: 20 request: proto: HTTP/1.1 @@ -1017,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/af5317ea-c305-4003-827a-564cd7468629/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/private_nics method: GET response: proto: HTTP/2.0 @@ -1027,33 +879,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:54 GMT + - Wed, 29 Oct 2025 22:53:41 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - be0c7ac0-ae17-450d-bff4-c86d29fc344a + - c896fb42-fc38-4dd4-8b49-7ef19bf36e52 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 99.313813ms + duration: 85.617636ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -1080,29 +924,21 @@ 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-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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:54 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 72b98122-c611-49e4-a1e1-8526b5c3c11a + - dad45e9d-2ee1-4963-b00d-7e1f3dfa5f29 status: 200 OK code: 200 - duration: 129.541687ms + duration: 156.077228ms - id: 22 request: proto: HTTP/1.1 @@ -1115,11 +951,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-server + order: + - creation_date_desc headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 + 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,31 +967,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1821 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' + body: '{"servers": [{"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}]}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1821" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT + - Wed, 29 Oct 2025 22:53:41 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9da61a4f-3831-4495-b033-670eb7de219e - status: 404 Not Found - code: 404 - duration: 26.655146ms + - 9769c622-493f-458d-8f79-b2e723e87839 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 156.116212ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1004,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -1176,35 +1012,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3562 + 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-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"}]}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' headers: Content-Length: - - "3562" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0a314dd7-9ca0-4b4e-8e95-0d4d9ce64678 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 198.374371ms + - 55995ac6-ce0c-4c03-84d7-1f1b8dfb20a1 + status: 404 Not Found + code: 404 + duration: 28.865392ms - id: 24 request: proto: HTTP/1.1 @@ -1221,7 +1045,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -1231,29 +1055,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.654373Z", "updated_at":"2025-10-29T22:53:38.654373Z", "references":[{"id":"e1cde554-63c5-4461-b98e-e28b0079891f", "product_resource_type":"instance_server", "product_resource_id":"4e68e654-ba4c-484d-99a2-7617b37a967c", "created_at":"2025-10-29T22:53:38.654373Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f820ed42-9d79-4e89-8677-e37eb33a3e58 + - c710627f-18fb-466b-8b85-782c612f4ef8 status: 200 OK code: 200 - duration: 92.040917ms + duration: 78.717253ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1086,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -1278,31 +1094,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 1818 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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1818" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3cb543f5-86de-41a0-97cc-b6701f9d6a1f + - b2deb5a8-5618-4493-bc98-7a7c691ac408 status: 200 OK code: 200 - duration: 139.81024ms + duration: 135.582608ms - id: 26 request: proto: HTTP/1.1 @@ -1319,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/af5317ea-c305-4003-827a-564cd7468629/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -1327,31 +1135,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 143 uncompressed: false - body: '{"user_data":[]}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 49be0ff3-200c-416c-ba12-8dd856a8b4e5 - status: 200 OK - code: 200 - duration: 102.793177ms + - c5dda746-1b92-4ee0-9754-e88b97b99b77 + status: 404 Not Found + code: 404 + duration: 26.213914ms - id: 27 request: proto: HTTP/1.1 @@ -1368,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/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/user_data method: GET response: proto: HTTP/2.0 @@ -1376,31 +1176,23 @@ 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":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' + body: '{"user_data": []}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9e4b6a6-65e1-4ac1-9ace-6cd6c555dd19 - status: 404 Not Found - code: 404 - duration: 24.800217ms + - 0d336f13-917c-44a0-b1a7-9156e70236c3 + status: 200 OK + code: 200 + duration: 101.879792ms - id: 28 request: proto: HTTP/1.1 @@ -1417,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/servers/af5317ea-c305-4003-827a-564cd7468629/private_nics + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -1425,35 +1217,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 701 uncompressed: false - body: '{"private_nics":[]}' + body: '{"id":"6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.654373Z", "updated_at":"2025-10-29T22:53:38.654373Z", "references":[{"id":"e1cde554-63c5-4461-b98e-e28b0079891f", "product_resource_type":"instance_server", "product_resource_id":"4e68e654-ba4c-484d-99a2-7617b37a967c", "created_at":"2025-10-29T22:53:38.654373Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 800b9714-056e-4af7-83ec-9d1883c5314c - X-Total-Count: - - "0" + - 77f66a11-923c-4239-8c03-cb7086b562fb status: 200 OK code: 200 - duration: 90.080993ms + duration: 87.12821ms - id: 29 request: proto: HTTP/1.1 @@ -1470,7 +1250,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/private_nics method: GET response: proto: HTTP/2.0 @@ -1478,31 +1258,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - 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"}' + body: '{"private_nics": []}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT + - Wed, 29 Oct 2025 22:53:42 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fede3825-7ad2-49fb-ad08-96939969a511 + - a1038f86-b7a0-46cc-8782-e35954726dcc + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 91.113259ms + duration: 101.193268ms - id: 30 request: proto: HTTP/1.1 @@ -1519,7 +1295,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/user_data method: GET response: proto: HTTP/2.0 @@ -1529,29 +1305,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3b8496ed-05fa-47b9-ad57-7615da4fc883 + - 84230cef-3725-41fa-8076-ca3b37363521 status: 200 OK code: 200 - duration: 80.829748ms + duration: 93.533997ms - id: 31 request: proto: HTTP/1.1 @@ -1568,7 +1336,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/private_nics method: GET response: proto: HTTP/2.0 @@ -1578,33 +1346,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:55 GMT + - Wed, 29 Oct 2025 22:53:42 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d1071179-2535-4e9d-b592-e3479054f3c1 + - c71cc3c5-6913-4260-b930-d277b10a8d72 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.625624ms + duration: 87.134242ms - id: 32 request: proto: HTTP/1.1 @@ -1621,7 +1381,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -1631,29 +1391,21 @@ 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-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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7a28653e-62ca-4da9-92b5-35160f46a3df + - d1ed3d38-65f8-4af1-8fa4-ca4db352859e status: 200 OK code: 200 - duration: 148.368797ms + duration: 139.634575ms - id: 33 request: proto: HTTP/1.1 @@ -1670,7 +1422,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -1678,31 +1430,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 1818 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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1818" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 35f24076-00b8-4143-bb7f-a527ef0d661c + - 5b5068f5-cb44-45ce-b7bd-e698b2c81490 status: 200 OK code: 200 - duration: 134.601344ms + duration: 135.084037ms - id: 34 request: proto: HTTP/1.1 @@ -1719,7 +1463,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -1727,31 +1471,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 1818 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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1818" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 72784b72-79f3-4e6f-b598-8f9f1a516b32 + - f62690b2-a531-4f3c-9ba0-d7f7212ad2a2 status: 200 OK code: 200 - duration: 141.256904ms + duration: 148.380127ms - id: 35 request: proto: HTTP/1.1 @@ -1768,7 +1504,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -1778,29 +1514,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c236ac7c-2954-4c3c-add3-37a8c66d3657 + - 4560a6ad-07e8-4a9d-a3f0-204062f3b0eb status: 404 Not Found code: 404 - duration: 24.878053ms + duration: 42.092774ms - id: 36 request: proto: HTTP/1.1 @@ -1813,7 +1541,11 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-server + order: + - creation_date_desc headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1825,35 +1557,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3562 + 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-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"}]}' + body: '{"servers": [{"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}]}' headers: Content-Length: - - "3562" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1775" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:53:42 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bec7b05d-48d6-4689-a75b-d833f0f94cd1 + - 9531dec4-d7b7-49fa-ac69-e5f01a2a655b X-Total-Count: - - "2" + - "1" status: 200 OK code: 200 - duration: 166.94168ms + duration: 251.639388ms - id: 37 request: proto: HTTP/1.1 @@ -1870,7 +1594,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -1880,29 +1604,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.654373Z", "updated_at":"2025-10-29T22:53:38.654373Z", "references":[{"id":"e1cde554-63c5-4461-b98e-e28b0079891f", "product_resource_type":"instance_server", "product_resource_id":"4e68e654-ba4c-484d-99a2-7617b37a967c", "created_at":"2025-10-29T22:53:38.654373Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a281d234-e62c-46af-ab62-55879c796b02 + - 6a85ef7c-f56f-41d4-b393-079e765c5b8c status: 200 OK code: 200 - duration: 95.058987ms + duration: 79.311424ms - id: 38 request: proto: HTTP/1.1 @@ -1919,7 +1635,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/user_data method: GET response: proto: HTTP/2.0 @@ -1927,31 +1643,23 @@ 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-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"}}' + body: '{"user_data": []}' headers: Content-Length: - - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d7a5a058-04ae-4ec1-a711-d72a70c0e014 + - 58a97e79-be10-4c5c-87db-86b91cfb9382 status: 200 OK code: 200 - duration: 135.002117ms + duration: 89.904511ms - id: 39 request: proto: HTTP/1.1 @@ -1968,7 +1676,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -1976,31 +1684,23 @@ 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":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1772" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cf4d514b-1661-4c86-be68-82cba5166bc5 - status: 404 Not Found - code: 404 - duration: 27.63326ms + - e3b3b40a-7358-4de1-aff8-d25f46d37a92 + status: 200 OK + code: 200 + duration: 129.597738ms - id: 40 request: proto: HTTP/1.1 @@ -2017,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/af5317ea-c305-4003-827a-564cd7468629/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -2025,31 +1725,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 143 uncompressed: false - body: '{"user_data":[]}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e1066f02-37b8-4f0c-9a18-57caee43a230 - status: 200 OK - code: 200 - duration: 110.14383ms + - 2567674f-a39c-4a21-a6fc-3fa52d5ca818 + status: 404 Not Found + code: 404 + duration: 26.618651ms - id: 41 request: proto: HTTP/1.1 @@ -2066,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-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/private_nics method: GET response: proto: HTTP/2.0 @@ -2074,31 +1766,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - 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"}' + body: '{"private_nics": []}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dc3578c0-c614-4f72-a9b6-b1a6f1b12523 + - b2087e8e-6c0e-4710-9516-6b99b3afaa01 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 110.801814ms + duration: 92.591195ms - id: 42 request: proto: HTTP/1.1 @@ -2115,7 +1803,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -2123,35 +1811,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 701 uncompressed: false - body: '{"private_nics":[]}' + body: '{"id":"6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.654373Z", "updated_at":"2025-10-29T22:53:38.654373Z", "references":[{"id":"e1cde554-63c5-4461-b98e-e28b0079891f", "product_resource_type":"instance_server", "product_resource_id":"4e68e654-ba4c-484d-99a2-7617b37a967c", "created_at":"2025-10-29T22:53:38.654373Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f02dcadf-6932-4e82-bf2f-49d54493b8d5 - X-Total-Count: - - "0" + - 1c0e7819-4558-4072-9be4-8ec72b4bcd22 status: 200 OK code: 200 - duration: 109.949345ms + duration: 101.14525ms - id: 43 request: proto: HTTP/1.1 @@ -2168,7 +1844,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/user_data method: GET response: proto: HTTP/2.0 @@ -2178,29 +1854,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 548220aa-7db7-47d5-9a5c-2ed325cf61fd + - 2e9560bd-1cb6-4934-9f88-1fd5bc747253 status: 200 OK code: 200 - duration: 95.654333ms + duration: 97.383114ms - id: 44 request: proto: HTTP/1.1 @@ -2217,7 +1885,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/private_nics method: GET response: proto: HTTP/2.0 @@ -2227,33 +1895,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:56 GMT + - Wed, 29 Oct 2025 22:53:43 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 67f1cc62-a871-4f35-bd33-7ead87bde94f + - 3b387235-af24-4ad1-80d2-aeb13088a53e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 87.243103ms + duration: 96.913427ms - id: 45 request: proto: HTTP/1.1 @@ -2270,7 +1930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -2278,31 +1938,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 1818 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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1818" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9bf4e2bc-0187-4f42-b598-46e4e7d4ebf5 + - 39df5fea-46a5-4fd7-a76a-67a4728c9636 status: 200 OK code: 200 - duration: 171.554879ms + duration: 149.899208ms - id: 46 request: proto: HTTP/1.1 @@ -2319,7 +1971,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -2329,29 +1981,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - daa3d556-4b8b-4e40-8d71-47057af3d89b + - 500868d1-5700-4e41-ad8c-ff9d21f252f8 status: 404 Not Found code: 404 - duration: 31.625034ms + duration: 33.865742ms - id: 47 request: proto: HTTP/1.1 @@ -2368,7 +2012,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -2378,29 +2022,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.654373Z", "updated_at":"2025-10-29T22:53:38.654373Z", "references":[{"id":"e1cde554-63c5-4461-b98e-e28b0079891f", "product_resource_type":"instance_server", "product_resource_id":"4e68e654-ba4c-484d-99a2-7617b37a967c", "created_at":"2025-10-29T22:53:38.654373Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a725c99b-f711-41cf-9ce4-5d72157ee3f2 + - a60d306b-7d2e-4db3-8dfd-1ba3377a0c1f status: 200 OK code: 200 - duration: 81.843038ms + duration: 89.380422ms - id: 48 request: proto: HTTP/1.1 @@ -2417,7 +2053,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/user_data method: GET response: proto: HTTP/2.0 @@ -2427,29 +2063,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:57 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e6f28810-037a-4e30-9d1f-83361c2b9041 + - 1806b20d-c306-4da6-88ea-6fba137bb0c0 status: 200 OK code: 200 - duration: 114.44252ms + duration: 87.321411ms - id: 49 request: proto: HTTP/1.1 @@ -2466,7 +2094,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/private_nics method: GET response: proto: HTTP/2.0 @@ -2476,33 +2104,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:57 GMT + - Wed, 29 Oct 2025 22:53:43 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4f5e7ffb-5770-4080-8fb5-2849ad0a316f + - 28090bce-0150-421e-948c-9ed90f76751c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 92.246795ms + duration: 111.459664ms - id: 50 request: proto: HTTP/1.1 @@ -2519,7 +2139,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -2529,29 +2149,21 @@ 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-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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:57 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3363d780-b0d9-48d3-afc6-e1aa83d56eb1 + - c2b2a4dd-4bd6-49eb-930a-4d5b1f056e29 status: 200 OK code: 200 - duration: 129.986684ms + duration: 187.850409ms - id: 51 request: proto: HTTP/1.1 @@ -2568,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/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -2578,29 +2190,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:57 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5624c47e-6afc-4f31-a9d0-cbf7d36ac429 + - 6b9dcde6-9dbb-4f0e-8fac-17f40a8262bb status: 404 Not Found code: 404 - duration: 27.27048ms + duration: 25.737433ms - id: 52 request: proto: HTTP/1.1 @@ -2617,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?name=tf-server&order=creation_date_desc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -2625,35 +2229,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3562 + 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-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"}]}' + body: '{"id":"6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.654373Z", "updated_at":"2025-10-29T22:53:38.654373Z", "references":[{"id":"e1cde554-63c5-4461-b98e-e28b0079891f", "product_resource_type":"instance_server", "product_resource_id":"4e68e654-ba4c-484d-99a2-7617b37a967c", "created_at":"2025-10-29T22:53:38.654373Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "3562" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:57 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5ad9a249-486a-4b4f-80a2-c7a15a7cd675 - X-Total-Count: - - "2" + - ae3584ac-688a-45b5-8a32-021fa1fea525 status: 200 OK code: 200 - duration: 164.88767ms + duration: 91.721369ms - id: 53 request: proto: HTTP/1.1 @@ -2670,7 +2262,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/user_data method: GET response: proto: HTTP/2.0 @@ -2678,31 +2270,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 17 uncompressed: false - 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"}' + body: '{"user_data": []}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:57 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7644439c-cd24-4de0-a92a-da77cbe47448 + - 471f2cfb-623f-4722-b5aa-9944f54627e5 status: 200 OK code: 200 - duration: 89.910104ms + duration: 95.181448ms - id: 54 request: proto: HTTP/1.1 @@ -2715,11 +2299,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-server + order: + - creation_date_desc headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + 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 @@ -2727,31 +2315,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + 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-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"}}' + body: '{"servers": [{"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}]}' headers: Content-Length: - - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1775" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:57 GMT + - Wed, 29 Oct 2025 22:53:44 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bbf5078d-a501-42cf-b755-c16a42467c6a + - 8b7f2073-e370-44d7-ae60-abf096901dcd + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 136.448008ms + duration: 420.046905ms - id: 55 request: proto: HTTP/1.1 @@ -2768,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/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/private_nics method: GET response: proto: HTTP/2.0 @@ -2776,31 +2360,27 @@ 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":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' + body: '{"private_nics": []}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:57 GMT + - Wed, 29 Oct 2025 22:53:44 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - beceee24-2d4e-469e-b3b4-44606f72d925 - status: 404 Not Found - code: 404 - duration: 28.396161ms + - e751c51a-6a71-4317-b18b-7276a1f0e590 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 102.378274ms - id: 56 request: proto: HTTP/1.1 @@ -2817,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/af5317ea-c305-4003-827a-564cd7468629/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -2825,31 +2405,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1772 uncompressed: false - body: '{"user_data":[]}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1772" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:57 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0c09579c-ab68-4dd7-9745-ad058065dd6b + - 2bd9eecd-a5c8-4bb1-9f90-d97ebcc3b736 status: 200 OK code: 200 - duration: 102.498205ms + duration: 141.596785ms - id: 57 request: proto: HTTP/1.1 @@ -2866,7 +2438,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -2874,31 +2446,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 143 uncompressed: false - 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:57 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0079f574-13ec-4434-8968-38276e4c537d - status: 200 OK - code: 200 - duration: 104.736362ms + - 406fa0b4-4f4b-4e05-86fa-d209f0f5633d + status: 404 Not Found + code: 404 + duration: 31.430288ms - id: 58 request: proto: HTTP/1.1 @@ -2915,7 +2479,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -2923,35 +2487,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 701 uncompressed: false - body: '{"private_nics":[]}' + body: '{"id":"6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.654373Z", "updated_at":"2025-10-29T22:53:38.654373Z", "references":[{"id":"e1cde554-63c5-4461-b98e-e28b0079891f", "product_resource_type":"instance_server", "product_resource_id":"4e68e654-ba4c-484d-99a2-7617b37a967c", "created_at":"2025-10-29T22:53:38.654373Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:57 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a06049af-8c63-4881-981d-83c9cd82b7ce - X-Total-Count: - - "0" + - d3a1fcdf-75ea-42e2-b7df-a52c36ad9c34 status: 200 OK code: 200 - duration: 110.546085ms + duration: 74.964217ms - id: 59 request: proto: HTTP/1.1 @@ -2968,7 +2520,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/user_data method: GET response: proto: HTTP/2.0 @@ -2978,29 +2530,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:57 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 05a28e4f-452a-4b9c-897c-1dd445cbae25 + - 882f6da6-3fdb-4625-bf9f-919d1bff2193 status: 200 OK code: 200 - duration: 108.835838ms + duration: 93.493722ms - id: 60 request: proto: HTTP/1.1 @@ -3017,7 +2561,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/private_nics method: GET response: proto: HTTP/2.0 @@ -3027,33 +2571,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:57 GMT + - Wed, 29 Oct 2025 22:53:44 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f3a07c0-528d-4a3f-b8d9-9c82d7a0d9d0 + - 5d364304-98f9-4595-88db-4589c4dce49b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 95.810867ms + duration: 98.624537ms - id: 61 request: proto: HTTP/1.1 @@ -3070,7 +2606,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -3078,31 +2614,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 1818 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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1818" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b6b81b05-3c1b-47f2-8dec-dbd9e44c1d4c + - 08539bfb-cf72-4e97-ab41-39017d57b9b2 status: 200 OK code: 200 - duration: 156.381132ms + duration: 127.243738ms - id: 62 request: proto: HTTP/1.1 @@ -3119,7 +2647,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -3129,29 +2657,21 @@ 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-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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:38.509434+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ac0fed01-6aba-4187-accf-cd7a1c33008c + - 35284c66-ee5b-43cb-b307-8d9d726ac522 status: 200 OK code: 200 - duration: 164.716732ms + duration: 140.10667ms - id: 63 request: proto: HTTP/1.1 @@ -3168,7 +2688,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -3178,29 +2698,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.654373Z", "updated_at":"2025-10-29T22:53:38.654373Z", "references":[{"id":"e1cde554-63c5-4461-b98e-e28b0079891f", "product_resource_type":"instance_server", "product_resource_id":"4e68e654-ba4c-484d-99a2-7617b37a967c", "created_at":"2025-10-29T22:53:38.654373Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1204f80f-48e8-4f36-be5d-ee1bb21660ea + - 3bd352a3-3039-4d80-9ed8-be42bf94e429 status: 200 OK code: 200 - duration: 92.37175ms + duration: 69.316276ms - id: 64 request: proto: HTTP/1.1 @@ -3219,7 +2731,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/af5317ea-c305-4003-827a-564cd7468629/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/action method: POST response: proto: HTTP/2.0 @@ -3229,31 +2741,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "63afd386-4024-45e2-ac61-ff4e2bcff176", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/action", "href_result": "/servers/4e68e654-ba4c-484d-99a2-7617b37a967c", "started_at": "2025-10-29T22:53:45.698406+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:58 GMT + - Wed, 29 Oct 2025 22:53:45 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a761a9ce-d2e2-4d17-90a8-073232d6482a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/63afd386-4024-45e2-ac61-ff4e2bcff176 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 699aa9d8-823e-4058-bf73-d87ec2961963 + - 9a3fd71f-e9a2-4a2f-a5bd-8da7b453fed5 status: 202 Accepted code: 202 - duration: 248.028775ms + duration: 336.632159ms - id: 65 request: proto: HTTP/1.1 @@ -3270,7 +2774,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -3280,29 +2784,21 @@ 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-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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:45.436853+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1794" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:58 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2a8bc006-700d-4caf-abba-3b14251584e4 + - 9c71a2da-af81-4658-9324-2e4ff6ede54e status: 200 OK code: 200 - duration: 162.656669ms + duration: 360.964345ms - id: 66 request: proto: HTTP/1.1 @@ -3319,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/af5317ea-c305-4003-827a-564cd7468629 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -3327,31 +2823,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1928 + content_length: 2013 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:48.516906+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "203", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "1928" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2013" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4256c4fd-f4a3-453e-990d-05e621fbea34 + - 1e0292bf-09a6-4500-aacb-9a097e6fdf24 status: 200 OK code: 200 - duration: 140.905623ms + duration: 144.278101ms - id: 67 request: proto: HTTP/1.1 @@ -3370,7 +2858,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/af5317ea-c305-4003-827a-564cd7468629/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/action method: POST response: proto: HTTP/2.0 @@ -3380,31 +2868,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "7d7cb8db-395c-471c-b502-cc1fc3765116", "description": "server_terminate", "status": "pending", "href_from": "/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/action", "href_result": "/servers/4e68e654-ba4c-484d-99a2-7617b37a967c", "started_at": "2025-10-29T22:53:51.504060+00:00", "terminated_at": null, "progress": 0, "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:04 GMT + - Wed, 29 Oct 2025 22:53:51 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fc938b4b-75e5-40e0-965a-93847178b75c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7d7cb8db-395c-471c-b502-cc1fc3765116 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - faa96088-4925-4469-865a-883c8d12ea12 + - b1e3becb-c111-4554-a28c-f722a8c6e954 status: 202 Accepted code: 202 - duration: 295.160066ms + duration: 276.239853ms - id: 68 request: proto: HTTP/1.1 @@ -3421,7 +2901,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -3429,31 +2909,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1936 uncompressed: 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"}}' + body: '{"server": {"id": "4e68e654-ba4c-484d-99a2-7617b37a967c", "name": "tf-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_server", "basic"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.509434+00:00", "modification_date": "2025-10-29T22:53:51.277357+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "203", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1891" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1936" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 356501f3-06a6-40dc-8474-ffd3ff764af1 + - d890487d-5725-4437-8bcf-052e2d00e788 status: 200 OK code: 200 - duration: 145.567004ms + duration: 126.949821ms - id: 69 request: proto: HTTP/1.1 @@ -3470,105 +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/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 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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: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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -3578,30 +2952,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"af5317ea-c305-4003-827a-564cd7468629","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "4e68e654-ba4c-484d-99a2-7617b37a967c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0425733d-5fc3-45fc-b66b-6cff39ca9f7e + - c110ac3d-4006-46e8-aebd-263fa18f8523 status: 404 Not Found code: 404 - duration: 41.212546ms - - id: 72 + duration: 40.202611ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3617,7 +2983,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -3627,30 +2993,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 74be13ab-850c-497f-9cc9-d901e9847485 + - 8c22e651-6c55-4f48-aca3-f84a0e3bf493 status: 404 Not Found code: 404 - duration: 28.820841ms - - id: 73 + duration: 27.67124ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3666,7 +3024,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: GET response: proto: HTTP/2.0 @@ -3676,30 +3034,22 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.654373Z", "updated_at":"2025-10-29T22:53:52.981570Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:53:52.981570Z", "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:19 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 29d31271-2905-4112-a70f-fd082579adf3 + - 5db7f451-f460-4ca2-8f3e-f303dd17ec3a status: 200 OK code: 200 - duration: 128.715622ms - - id: 74 + duration: 81.41999ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3715,7 +3065,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 method: DELETE response: proto: HTTP/2.0 @@ -3727,26 +3077,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5556a0eb-1fb5-44ac-b4a5-c9cae9ab97d1 + - 625f180c-0ae5-41bd-9c53-771aed091d36 status: 204 No Content code: 204 - duration: 161.279012ms - - id: 75 + duration: 152.472696ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3762,7 +3104,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -3772,30 +3114,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"af5317ea-c305-4003-827a-564cd7468629","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "4e68e654-ba4c-484d-99a2-7617b37a967c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ebadde5e-9198-403a-b761-a1ad084a92c9 + - 16d4fda2-598c-4577-8d52-f23222fe11c6 status: 404 Not Found code: 404 - duration: 45.926727ms - - id: 76 + duration: 55.560478ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3811,7 +3145,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -3821,30 +3155,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"af5317ea-c305-4003-827a-564cd7468629","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "4e68e654-ba4c-484d-99a2-7617b37a967c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 59f050cc-550d-478b-93b2-8e0ca2f5d08f + - 3bbaf491-c00f-439a-841b-014bbdc83b5c status: 404 Not Found code: 404 - duration: 43.941905ms - - id: 77 + duration: 105.737039ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3860,7 +3186,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c method: GET response: proto: HTTP/2.0 @@ -3870,26 +3196,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"af5317ea-c305-4003-827a-564cd7468629","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "4e68e654-ba4c-484d-99a2-7617b37a967c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fb037688-29a2-4f2f-82a5-398c79fab7d3 + - cc6fd940-b11b-40d6-9eaa-98f03a8bac26 status: 404 Not Found code: 404 - duration: 52.170304ms + duration: 55.328875ms 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 76c3b6b21..1f29e3d72 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 @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53:50 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d93d400e-6c99-4e5d-9128-915cb622b0c5 + - 40037310-8098-4435-a2ed-a4dec930417a X-Total-Count: - "68" status: 200 OK code: 200 - duration: 31.894937ms + duration: 71.585761ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53:50 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 260bf091-20ed-4d98-9255-d121715d86e4 + - f8ac81ac-df72-4923-bfe3-ef55883bc130 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 49.630223ms + duration: 49.011271ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,31 +125,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63436 + content_length: 61679 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-1", "description":"POP2-2C-8G - fr-par-1 (0.0735€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00072178466, "m3_water_usage":4.815502e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-1", "description":"POP2-2C-8G-WIN - fr-par-1 (0.1823€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007688888, "m3_water_usage":5.2443365e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-1", "description":"POP2-4C-16G - fr-par-1 (0.147€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001145898, "m3_water_usage":6.159374e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-1", "description":"POP2-4C-16G-WIN - fr-par-1 (0.3637€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012401063, "m3_water_usage":7.017042e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-1", "description":"POP2-48C-192G - fr-par-1 (1.77€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010476393, "m3_water_usage":3.5724548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-1", "description":"POP2-8C-32G - fr-par-1 (0.29€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019941248, "m3_water_usage":8.847117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-1", "description":"POP2-8C-32G-WIN - fr-par-1 (0.7233€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021825414, "m3_water_usage":1.05624544e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-1", "description":"POP2-16C-64G - fr-par-1 (0.59€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036905783, "m3_water_usage":1.4222603e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-1", "description":"POP2-16C-64G-WIN - fr-par-1 (1.4567€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004067411, "m3_water_usage":1.7653278e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-1", "description":"POP2-32C-128G - fr-par-1 (1.18€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0070834854, "m3_water_usage":2.4973576e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-1", "description":"POP2-32C-128G-WIN - fr-par-1 (2.9133€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007837151, "m3_water_usage":3.1834924e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-1", "description":"POP2-64C-256G - fr-par-1 (2.35€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0138693, "m3_water_usage":4.647552e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-1", "description":"PRO2-XXS - fr-par-1 (0.055€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006970975, "m3_water_usage":4.6791055e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-1", "description":"PRO2-XS - fr-par-1 (0.11€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010965237, "m3_water_usage":5.88658e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-1", "description":"PRO2-S - fr-par-1 (0.219€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018953761, "m3_water_usage":8.3015294e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-1", "description":"PRO2-M - fr-par-1 (0.438€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034930808, "m3_water_usage":1.3131428e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-1", "description":"PRO2-L - fr-par-1 (0.877€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066884905, "m3_water_usage":2.2791227e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-1", "description":"GP1-XS Instance - fr-par-1 (0.091€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011995973, "m3_water_usage":6.042756e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-1", "description":"GP1-S Instance - fr-par-1 (0.187€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021676724, "m3_water_usage":9.385356e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-1", "description":"GP1-M Instance - fr-par-1 (0.376€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0041038226, "m3_water_usage":1.6070554e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-1", "description":"GP1-L Instance - fr-par-1 (0.759€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007976123, "m3_water_usage":2.9440952e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-1", "description":"GP1-XL Instance - fr-par-1 (1.641€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015466409, "m3_water_usage":5.530364e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-1", "description":"COPARM1-2C-8G - fr-par-1 (0.0426€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00069850276, "m3_water_usage":4.6164647e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-1", "description":"COPARM1-4C-16G - fr-par-1 (0.0857€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010853942, "m3_water_usage":5.5987208e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-1", "description":"COPARM1-8C-32G - fr-par-1 (0.1724€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001859177, "m3_water_usage":7.563233e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-1", "description":"COPARM1-16C-64G - fr-par-1 (0.3454€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034067426, "m3_water_usage":1.1492257e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-1", "description":"COPARM1-32C-128G - fr-par-1 (0.6935€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006501874, "m3_water_usage":1.9350306e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - fr-par-1", "description":"STARDUST1-S - fr-par-1 (0.00015€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0002778983, "m3_water_usage":2.542258e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-1", "description":"DEV1-S Instance - fr-par-1 (0.0088€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00036396398, "m3_water_usage":2.847243e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-1", "description":"DEV1-M Instance - fr-par-1 (0.0198€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00051360304, "m3_water_usage":3.3775283e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-1", "description":"DEV1-L Instance - fr-par-1 (0.042€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00079038885, "m3_water_usage":4.358414e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-1", "description":"DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010446823, "m3_water_usage":5.2596153e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-1", "description":"PLAY2-PICO - fr-par-1 (0.014€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0003949738, "m3_water_usage":3.707793e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-1", "description":"PLAY2-NANO - fr-par-1 (0.027€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00049227633, "m3_water_usage":3.9439552e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-1", "description":"PLAY2-MICRO - fr-par-1 (0.054€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00068688137, "m3_water_usage":4.4162803e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-1", "description":"POP2-HM-2C-16G - fr-par-1 (0.103€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010394889, "m3_water_usage":5.2720925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-1", "description":"POP2-HM-4C-32G - fr-par-1 (0.206€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017813066, "m3_water_usage":7.072554e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-1", "description":"POP2-HM-8C-64G - fr-par-1 (0.412€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003264942, "m3_water_usage":1.0673478e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-1", "description":"POP2-HM-16C-128G - fr-par-1 (0.824€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062322128, "m3_water_usage":1.7875325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-1", "description":"POP2-HM-32C-256G - fr-par-1 (1.648€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012166753, "m3_water_usage":3.227902e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-1", "description":"POP2-HM-48C-384G - fr-par-1 (2.47€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018101295, "m3_water_usage":4.6682715e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-1", "description":"POP2-HM-64C-512G - fr-par-1 (3.296€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.024035836, "m3_water_usage":6.108641e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-1", "description":"POP2-HC-2C-4G - fr-par-1 (0.0532€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-1", "description":"POP2-HC-4C-8G - fr-par-1 (0.1064€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-1", "description":"POP2-HC-8C-16G - fr-par-1 (0.2128€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011733484, "m3_water_usage":6.246355e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-1", "description":"POP2-HC-16C-32G - fr-par-1 (0.4256€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020490256, "m3_water_usage":9.021079e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-1", "description":"POP2-HC-32C-64G - fr-par-1 (0.8512€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038003798, "m3_water_usage":1.4570527e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-1", "description":"POP2-HC-48C-96G - fr-par-1 (1.27€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005551734, "m3_water_usage":2.0119975e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-1", "description":"POP2-HC-64C-128G - fr-par-1 (1.7024€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073030884, "m3_water_usage":2.5669422e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-1", "description":"POP2-HN-10 - fr-par-1 (0.7264€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-1", "description":"POP2-HN-3 - fr-par-1 (0.2554€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-1", "description":"POP2-HN-5 - fr-par-1 (0.4524€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-1", "description":"L4-1-24G - fr-par-1 (0.0125€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-1", "description":"L4-2-24G - fr-par-1 (0.025€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-1", "description":"L4-4-24G - fr-par-1 (0.05€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-1", "description":"L4-8-24G - fr-par-1 (0.1€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-1", "description":"RENDER-S Instance - fr-par-1 (1.221€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":57}' headers: Content-Length: - - "63436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "61679" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 51b2a2a9-6022-4f1e-bbdc-2110896927de + - 13f08a2a-7eee-4e30-9140-1497734d048d status: 200 OK code: 200 - duration: 29.734949ms + duration: 26.888606ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +154,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -180,35 +168,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2344 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"},"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"}}}' + 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": "shortage"}, "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: - - "2345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53:50 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 14b17b6d-2767-4591-a12c-dcf4cb8d8229 + - a8cd757a-8d92-4dba-b35f-64228084d6a7 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 86.728975ms + duration: 88.183996ms - id: 4 request: proto: HTTP/1.1 @@ -221,7 +201,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -233,35 +215,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 769 uncompressed: false - 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"}}}' + body: '{"servers": {"PRO2-L": {"availability": "scarce"}, "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"}}}' headers: Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "769" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:50 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b641dca3-d150-4933-99a7-6d186f758930 + - d882aac3-ee35-4498-a98a-7296bd396ced X-Total-Count: - "68" status: 200 OK code: 200 - duration: 77.527197ms + duration: 73.313301ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +248,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -286,35 +262,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 39a59519-7c55-4049-85f3-09051f655e74 + - 20a7bc6c-392d-4916-974c-222a6b288bb0 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 49.717446ms + duration: 48.169437ms - id: 6 request: proto: HTTP/1.1 @@ -327,7 +295,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -341,33 +311,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 82c5c43f-58b2-4f21-aeee-184e3a2835bf + - be04aed3-04b2-49c0-b4e2-9317a54a0e3a X-Total-Count: - "68" status: 200 OK code: 200 - duration: 52.09295ms + duration: 55.568742ms - id: 7 request: proto: HTTP/1.1 @@ -380,7 +342,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -392,31 +360,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63436 + content_length: 61679 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-1", "description":"POP2-2C-8G - fr-par-1 (0.0735€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00072178466, "m3_water_usage":4.815502e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-1", "description":"POP2-2C-8G-WIN - fr-par-1 (0.1823€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007688888, "m3_water_usage":5.2443365e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-1", "description":"POP2-4C-16G - fr-par-1 (0.147€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001145898, "m3_water_usage":6.159374e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-1", "description":"POP2-4C-16G-WIN - fr-par-1 (0.3637€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012401063, "m3_water_usage":7.017042e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-1", "description":"POP2-48C-192G - fr-par-1 (1.77€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010476393, "m3_water_usage":3.5724548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-1", "description":"POP2-8C-32G - fr-par-1 (0.29€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019941248, "m3_water_usage":8.847117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-1", "description":"POP2-8C-32G-WIN - fr-par-1 (0.7233€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021825414, "m3_water_usage":1.05624544e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-1", "description":"POP2-16C-64G - fr-par-1 (0.59€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036905783, "m3_water_usage":1.4222603e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-1", "description":"POP2-16C-64G-WIN - fr-par-1 (1.4567€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004067411, "m3_water_usage":1.7653278e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-1", "description":"POP2-32C-128G - fr-par-1 (1.18€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0070834854, "m3_water_usage":2.4973576e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-1", "description":"POP2-32C-128G-WIN - fr-par-1 (2.9133€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007837151, "m3_water_usage":3.1834924e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-1", "description":"POP2-64C-256G - fr-par-1 (2.35€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0138693, "m3_water_usage":4.647552e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-1", "description":"PRO2-XXS - fr-par-1 (0.055€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006970975, "m3_water_usage":4.6791055e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-1", "description":"PRO2-XS - fr-par-1 (0.11€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010965237, "m3_water_usage":5.88658e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-1", "description":"PRO2-S - fr-par-1 (0.219€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018953761, "m3_water_usage":8.3015294e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-1", "description":"PRO2-M - fr-par-1 (0.438€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034930808, "m3_water_usage":1.3131428e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-1", "description":"PRO2-L - fr-par-1 (0.877€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066884905, "m3_water_usage":2.2791227e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-1", "description":"GP1-XS Instance - fr-par-1 (0.091€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011995973, "m3_water_usage":6.042756e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-1", "description":"GP1-S Instance - fr-par-1 (0.187€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021676724, "m3_water_usage":9.385356e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-1", "description":"GP1-M Instance - fr-par-1 (0.376€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0041038226, "m3_water_usage":1.6070554e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-1", "description":"GP1-L Instance - fr-par-1 (0.759€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007976123, "m3_water_usage":2.9440952e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-1", "description":"GP1-XL Instance - fr-par-1 (1.641€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015466409, "m3_water_usage":5.530364e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-1", "description":"COPARM1-2C-8G - fr-par-1 (0.0426€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00069850276, "m3_water_usage":4.6164647e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-1", "description":"COPARM1-4C-16G - fr-par-1 (0.0857€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010853942, "m3_water_usage":5.5987208e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-1", "description":"COPARM1-8C-32G - fr-par-1 (0.1724€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001859177, "m3_water_usage":7.563233e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-1", "description":"COPARM1-16C-64G - fr-par-1 (0.3454€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034067426, "m3_water_usage":1.1492257e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-1", "description":"COPARM1-32C-128G - fr-par-1 (0.6935€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006501874, "m3_water_usage":1.9350306e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - fr-par-1", "description":"STARDUST1-S - fr-par-1 (0.00015€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0002778983, "m3_water_usage":2.542258e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-1", "description":"DEV1-S Instance - fr-par-1 (0.0088€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00036396398, "m3_water_usage":2.847243e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-1", "description":"DEV1-M Instance - fr-par-1 (0.0198€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00051360304, "m3_water_usage":3.3775283e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-1", "description":"DEV1-L Instance - fr-par-1 (0.042€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00079038885, "m3_water_usage":4.358414e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-1", "description":"DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010446823, "m3_water_usage":5.2596153e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-1", "description":"PLAY2-PICO - fr-par-1 (0.014€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0003949738, "m3_water_usage":3.707793e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-1", "description":"PLAY2-NANO - fr-par-1 (0.027€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00049227633, "m3_water_usage":3.9439552e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-1", "description":"PLAY2-MICRO - fr-par-1 (0.054€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00068688137, "m3_water_usage":4.4162803e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-1", "description":"POP2-HM-2C-16G - fr-par-1 (0.103€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010394889, "m3_water_usage":5.2720925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-1", "description":"POP2-HM-4C-32G - fr-par-1 (0.206€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017813066, "m3_water_usage":7.072554e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-1", "description":"POP2-HM-8C-64G - fr-par-1 (0.412€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003264942, "m3_water_usage":1.0673478e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-1", "description":"POP2-HM-16C-128G - fr-par-1 (0.824€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062322128, "m3_water_usage":1.7875325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-1", "description":"POP2-HM-32C-256G - fr-par-1 (1.648€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012166753, "m3_water_usage":3.227902e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-1", "description":"POP2-HM-48C-384G - fr-par-1 (2.47€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018101295, "m3_water_usage":4.6682715e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-1", "description":"POP2-HM-64C-512G - fr-par-1 (3.296€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.024035836, "m3_water_usage":6.108641e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-1", "description":"POP2-HC-2C-4G - fr-par-1 (0.0532€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-1", "description":"POP2-HC-4C-8G - fr-par-1 (0.1064€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-1", "description":"POP2-HC-8C-16G - fr-par-1 (0.2128€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011733484, "m3_water_usage":6.246355e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-1", "description":"POP2-HC-16C-32G - fr-par-1 (0.4256€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020490256, "m3_water_usage":9.021079e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-1", "description":"POP2-HC-32C-64G - fr-par-1 (0.8512€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038003798, "m3_water_usage":1.4570527e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-1", "description":"POP2-HC-48C-96G - fr-par-1 (1.27€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005551734, "m3_water_usage":2.0119975e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-1", "description":"POP2-HC-64C-128G - fr-par-1 (1.7024€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073030884, "m3_water_usage":2.5669422e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-1", "description":"POP2-HN-10 - fr-par-1 (0.7264€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-1", "description":"POP2-HN-3 - fr-par-1 (0.2554€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-1", "description":"POP2-HN-5 - fr-par-1 (0.4524€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-1", "description":"L4-1-24G - fr-par-1 (0.0125€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-1", "description":"L4-2-24G - fr-par-1 (0.025€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-1", "description":"L4-4-24G - fr-par-1 (0.05€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-1", "description":"L4-8-24G - fr-par-1 (0.1€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-1", "description":"RENDER-S Instance - fr-par-1 (1.221€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":57}' headers: Content-Length: - - "63436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "61679" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 02688b92-1772-4f3f-b7ca-9fe29e367dc5 + - 33067bfc-174f-4519-9451-2a8ed67ef2e8 status: 200 OK code: 200 - duration: 29.885982ms + duration: 23.127003ms - id: 8 request: proto: HTTP/1.1 @@ -429,7 +389,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -441,35 +403,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2344 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"},"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"}}}' + 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": "shortage"}, "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: - - "2345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bf3101eb-0bfc-4acc-b54a-f4a506a95452 + - 496aada1-ca3b-477a-ba30-794cad5019d3 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 92.946611ms + duration: 77.111644ms - id: 9 request: proto: HTTP/1.1 @@ -482,7 +436,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -494,35 +450,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 769 uncompressed: false - 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"}}}' + body: '{"servers": {"PRO2-L": {"availability": "scarce"}, "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"}}}' headers: Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "769" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fbbfa821-9aac-4a86-8f43-94360d36006a + - 63629c58-04e4-46b6-9d64-99262bf95224 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 156.942523ms + duration: 77.433154ms - id: 10 request: proto: HTTP/1.1 @@ -535,7 +483,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -547,35 +497,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2fa71790-ba45-451a-a845-3fa8487a750a + - 812e5dfa-9a00-4a81-86aa-32c4d5481f3b X-Total-Count: - "68" status: 200 OK code: 200 - duration: 58.554733ms + duration: 47.457426ms - id: 11 request: proto: HTTP/1.1 @@ -588,7 +530,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -602,33 +546,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 766151d3-0876-4cd8-bb12-3f8473f17d93 + - e6bda547-8fd0-47d8-b9d6-db7ae532640f X-Total-Count: - "68" status: 200 OK code: 200 - duration: 41.379497ms + duration: 50.47593ms - id: 12 request: proto: HTTP/1.1 @@ -641,7 +577,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -653,31 +595,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63436 + content_length: 61679 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-1", "description":"POP2-2C-8G - fr-par-1 (0.0735€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00072178466, "m3_water_usage":4.815502e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-1", "description":"POP2-2C-8G-WIN - fr-par-1 (0.1823€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007688888, "m3_water_usage":5.2443365e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-1", "description":"POP2-4C-16G - fr-par-1 (0.147€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001145898, "m3_water_usage":6.159374e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-1", "description":"POP2-4C-16G-WIN - fr-par-1 (0.3637€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012401063, "m3_water_usage":7.017042e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-1", "description":"POP2-48C-192G - fr-par-1 (1.77€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010476393, "m3_water_usage":3.5724548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-1", "description":"POP2-8C-32G - fr-par-1 (0.29€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019941248, "m3_water_usage":8.847117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-1", "description":"POP2-8C-32G-WIN - fr-par-1 (0.7233€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021825414, "m3_water_usage":1.05624544e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-1", "description":"POP2-16C-64G - fr-par-1 (0.59€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036905783, "m3_water_usage":1.4222603e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-1", "description":"POP2-16C-64G-WIN - fr-par-1 (1.4567€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004067411, "m3_water_usage":1.7653278e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-1", "description":"POP2-32C-128G - fr-par-1 (1.18€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0070834854, "m3_water_usage":2.4973576e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-1", "description":"POP2-32C-128G-WIN - fr-par-1 (2.9133€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007837151, "m3_water_usage":3.1834924e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-1", "description":"POP2-64C-256G - fr-par-1 (2.35€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0138693, "m3_water_usage":4.647552e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-1", "description":"PRO2-XXS - fr-par-1 (0.055€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006970975, "m3_water_usage":4.6791055e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-1", "description":"PRO2-XS - fr-par-1 (0.11€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010965237, "m3_water_usage":5.88658e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-1", "description":"PRO2-S - fr-par-1 (0.219€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018953761, "m3_water_usage":8.3015294e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-1", "description":"PRO2-M - fr-par-1 (0.438€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034930808, "m3_water_usage":1.3131428e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-1", "description":"PRO2-L - fr-par-1 (0.877€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066884905, "m3_water_usage":2.2791227e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-1", "description":"GP1-XS Instance - fr-par-1 (0.091€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011995973, "m3_water_usage":6.042756e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-1", "description":"GP1-S Instance - fr-par-1 (0.187€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021676724, "m3_water_usage":9.385356e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-1", "description":"GP1-M Instance - fr-par-1 (0.376€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0041038226, "m3_water_usage":1.6070554e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-1", "description":"GP1-L Instance - fr-par-1 (0.759€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007976123, "m3_water_usage":2.9440952e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-1", "description":"GP1-XL Instance - fr-par-1 (1.641€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015466409, "m3_water_usage":5.530364e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-1", "description":"COPARM1-2C-8G - fr-par-1 (0.0426€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00069850276, "m3_water_usage":4.6164647e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-1", "description":"COPARM1-4C-16G - fr-par-1 (0.0857€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010853942, "m3_water_usage":5.5987208e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-1", "description":"COPARM1-8C-32G - fr-par-1 (0.1724€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001859177, "m3_water_usage":7.563233e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-1", "description":"COPARM1-16C-64G - fr-par-1 (0.3454€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034067426, "m3_water_usage":1.1492257e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-1", "description":"COPARM1-32C-128G - fr-par-1 (0.6935€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006501874, "m3_water_usage":1.9350306e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - fr-par-1", "description":"STARDUST1-S - fr-par-1 (0.00015€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0002778983, "m3_water_usage":2.542258e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-1", "description":"DEV1-S Instance - fr-par-1 (0.0088€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00036396398, "m3_water_usage":2.847243e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-1", "description":"DEV1-M Instance - fr-par-1 (0.0198€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00051360304, "m3_water_usage":3.3775283e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-1", "description":"DEV1-L Instance - fr-par-1 (0.042€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00079038885, "m3_water_usage":4.358414e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-1", "description":"DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010446823, "m3_water_usage":5.2596153e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-1", "description":"PLAY2-PICO - fr-par-1 (0.014€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0003949738, "m3_water_usage":3.707793e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-1", "description":"PLAY2-NANO - fr-par-1 (0.027€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00049227633, "m3_water_usage":3.9439552e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-1", "description":"PLAY2-MICRO - fr-par-1 (0.054€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00068688137, "m3_water_usage":4.4162803e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-1", "description":"POP2-HM-2C-16G - fr-par-1 (0.103€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010394889, "m3_water_usage":5.2720925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-1", "description":"POP2-HM-4C-32G - fr-par-1 (0.206€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017813066, "m3_water_usage":7.072554e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-1", "description":"POP2-HM-8C-64G - fr-par-1 (0.412€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003264942, "m3_water_usage":1.0673478e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-1", "description":"POP2-HM-16C-128G - fr-par-1 (0.824€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062322128, "m3_water_usage":1.7875325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-1", "description":"POP2-HM-32C-256G - fr-par-1 (1.648€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012166753, "m3_water_usage":3.227902e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-1", "description":"POP2-HM-48C-384G - fr-par-1 (2.47€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018101295, "m3_water_usage":4.6682715e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-1", "description":"POP2-HM-64C-512G - fr-par-1 (3.296€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.024035836, "m3_water_usage":6.108641e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-1", "description":"POP2-HC-2C-4G - fr-par-1 (0.0532€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-1", "description":"POP2-HC-4C-8G - fr-par-1 (0.1064€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-1", "description":"POP2-HC-8C-16G - fr-par-1 (0.2128€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011733484, "m3_water_usage":6.246355e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-1", "description":"POP2-HC-16C-32G - fr-par-1 (0.4256€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020490256, "m3_water_usage":9.021079e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-1", "description":"POP2-HC-32C-64G - fr-par-1 (0.8512€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038003798, "m3_water_usage":1.4570527e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-1", "description":"POP2-HC-48C-96G - fr-par-1 (1.27€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005551734, "m3_water_usage":2.0119975e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-1", "description":"POP2-HC-64C-128G - fr-par-1 (1.7024€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073030884, "m3_water_usage":2.5669422e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-1", "description":"POP2-HN-10 - fr-par-1 (0.7264€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-1", "description":"POP2-HN-3 - fr-par-1 (0.2554€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-1", "description":"POP2-HN-5 - fr-par-1 (0.4524€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-1", "description":"L4-1-24G - fr-par-1 (0.0125€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-1", "description":"L4-2-24G - fr-par-1 (0.025€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-1", "description":"L4-4-24G - fr-par-1 (0.05€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-1", "description":"L4-8-24G - fr-par-1 (0.1€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-1", "description":"RENDER-S Instance - fr-par-1 (1.221€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":57}' headers: Content-Length: - - "63436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "61679" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b14794ff-2585-4ddf-a6bf-408880fefb95 + - 6d28c45c-5f20-4c16-890d-580c9cf4e2d1 status: 200 OK code: 200 - duration: 25.108156ms + duration: 25.778742ms - id: 13 request: proto: HTTP/1.1 @@ -690,7 +624,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -702,35 +638,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2344 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"},"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"}}}' + 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": "shortage"}, "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: - - "2345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 44cf684e-8815-498f-b7a9-e5e875061f4c + - 33d6e0c6-521b-453a-a057-e49f129a7151 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 100.75049ms + duration: 72.121012ms - id: 14 request: proto: HTTP/1.1 @@ -743,7 +671,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -755,35 +685,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 769 uncompressed: false - 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"}}}' + body: '{"servers": {"PRO2-L": {"availability": "scarce"}, "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"}}}' headers: Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "769" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 12357b41-2470-4f81-b1d0-f6660ff77dd1 + - d6ef8773-55ca-4516-a98a-9171ec32c74d X-Total-Count: - "68" status: 200 OK code: 200 - duration: 105.210041ms + duration: 113.405636ms - id: 15 request: proto: HTTP/1.1 @@ -796,7 +718,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -808,35 +732,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f3b0e193-87f5-411c-a2b2-1ee299cd5cc6 + - 1d7b3c6d-1c5c-4c32-8b2c-941e399e9833 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 128.726302ms + duration: 36.016273ms - id: 16 request: proto: HTTP/1.1 @@ -849,7 +765,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -863,33 +781,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a0960869-5a7e-4f54-a1b8-8f4112731edd + - ffb90c89-b590-40ba-a7c5-0268d45e6205 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 80.523053ms + duration: 54.741275ms - id: 17 request: proto: HTTP/1.1 @@ -902,7 +812,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -914,31 +830,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63436 + content_length: 61679 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-1", "description":"POP2-2C-8G - fr-par-1 (0.0735€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00072178466, "m3_water_usage":4.815502e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-1", "description":"POP2-2C-8G-WIN - fr-par-1 (0.1823€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007688888, "m3_water_usage":5.2443365e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-1", "description":"POP2-4C-16G - fr-par-1 (0.147€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001145898, "m3_water_usage":6.159374e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-1", "description":"POP2-4C-16G-WIN - fr-par-1 (0.3637€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012401063, "m3_water_usage":7.017042e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-1", "description":"POP2-48C-192G - fr-par-1 (1.77€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010476393, "m3_water_usage":3.5724548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-1", "description":"POP2-8C-32G - fr-par-1 (0.29€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019941248, "m3_water_usage":8.847117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-1", "description":"POP2-8C-32G-WIN - fr-par-1 (0.7233€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021825414, "m3_water_usage":1.05624544e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-1", "description":"POP2-16C-64G - fr-par-1 (0.59€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036905783, "m3_water_usage":1.4222603e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-1", "description":"POP2-16C-64G-WIN - fr-par-1 (1.4567€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004067411, "m3_water_usage":1.7653278e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-1", "description":"POP2-32C-128G - fr-par-1 (1.18€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0070834854, "m3_water_usage":2.4973576e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-1", "description":"POP2-32C-128G-WIN - fr-par-1 (2.9133€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007837151, "m3_water_usage":3.1834924e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-1", "description":"POP2-64C-256G - fr-par-1 (2.35€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0138693, "m3_water_usage":4.647552e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-1", "description":"PRO2-XXS - fr-par-1 (0.055€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006970975, "m3_water_usage":4.6791055e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-1", "description":"PRO2-XS - fr-par-1 (0.11€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010965237, "m3_water_usage":5.88658e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-1", "description":"PRO2-S - fr-par-1 (0.219€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018953761, "m3_water_usage":8.3015294e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-1", "description":"PRO2-M - fr-par-1 (0.438€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034930808, "m3_water_usage":1.3131428e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-1", "description":"PRO2-L - fr-par-1 (0.877€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066884905, "m3_water_usage":2.2791227e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-1", "description":"GP1-XS Instance - fr-par-1 (0.091€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011995973, "m3_water_usage":6.042756e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-1", "description":"GP1-S Instance - fr-par-1 (0.187€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021676724, "m3_water_usage":9.385356e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-1", "description":"GP1-M Instance - fr-par-1 (0.376€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0041038226, "m3_water_usage":1.6070554e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-1", "description":"GP1-L Instance - fr-par-1 (0.759€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007976123, "m3_water_usage":2.9440952e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-1", "description":"GP1-XL Instance - fr-par-1 (1.641€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015466409, "m3_water_usage":5.530364e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-1", "description":"COPARM1-2C-8G - fr-par-1 (0.0426€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00069850276, "m3_water_usage":4.6164647e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-1", "description":"COPARM1-4C-16G - fr-par-1 (0.0857€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010853942, "m3_water_usage":5.5987208e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-1", "description":"COPARM1-8C-32G - fr-par-1 (0.1724€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001859177, "m3_water_usage":7.563233e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-1", "description":"COPARM1-16C-64G - fr-par-1 (0.3454€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034067426, "m3_water_usage":1.1492257e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-1", "description":"COPARM1-32C-128G - fr-par-1 (0.6935€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006501874, "m3_water_usage":1.9350306e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - fr-par-1", "description":"STARDUST1-S - fr-par-1 (0.00015€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0002778983, "m3_water_usage":2.542258e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-1", "description":"DEV1-S Instance - fr-par-1 (0.0088€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00036396398, "m3_water_usage":2.847243e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-1", "description":"DEV1-M Instance - fr-par-1 (0.0198€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00051360304, "m3_water_usage":3.3775283e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-1", "description":"DEV1-L Instance - fr-par-1 (0.042€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00079038885, "m3_water_usage":4.358414e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-1", "description":"DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010446823, "m3_water_usage":5.2596153e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-1", "description":"PLAY2-PICO - fr-par-1 (0.014€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0003949738, "m3_water_usage":3.707793e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-1", "description":"PLAY2-NANO - fr-par-1 (0.027€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00049227633, "m3_water_usage":3.9439552e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-1", "description":"PLAY2-MICRO - fr-par-1 (0.054€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00068688137, "m3_water_usage":4.4162803e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-1", "description":"POP2-HM-2C-16G - fr-par-1 (0.103€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010394889, "m3_water_usage":5.2720925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-1", "description":"POP2-HM-4C-32G - fr-par-1 (0.206€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017813066, "m3_water_usage":7.072554e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-1", "description":"POP2-HM-8C-64G - fr-par-1 (0.412€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003264942, "m3_water_usage":1.0673478e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-1", "description":"POP2-HM-16C-128G - fr-par-1 (0.824€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062322128, "m3_water_usage":1.7875325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-1", "description":"POP2-HM-32C-256G - fr-par-1 (1.648€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012166753, "m3_water_usage":3.227902e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-1", "description":"POP2-HM-48C-384G - fr-par-1 (2.47€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018101295, "m3_water_usage":4.6682715e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-1", "description":"POP2-HM-64C-512G - fr-par-1 (3.296€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.024035836, "m3_water_usage":6.108641e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-1", "description":"POP2-HC-2C-4G - fr-par-1 (0.0532€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-1", "description":"POP2-HC-4C-8G - fr-par-1 (0.1064€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-1", "description":"POP2-HC-8C-16G - fr-par-1 (0.2128€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011733484, "m3_water_usage":6.246355e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-1", "description":"POP2-HC-16C-32G - fr-par-1 (0.4256€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020490256, "m3_water_usage":9.021079e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-1", "description":"POP2-HC-32C-64G - fr-par-1 (0.8512€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038003798, "m3_water_usage":1.4570527e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-1", "description":"POP2-HC-48C-96G - fr-par-1 (1.27€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005551734, "m3_water_usage":2.0119975e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-1", "description":"POP2-HC-64C-128G - fr-par-1 (1.7024€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073030884, "m3_water_usage":2.5669422e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-1", "description":"POP2-HN-10 - fr-par-1 (0.7264€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-1", "description":"POP2-HN-3 - fr-par-1 (0.2554€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-1", "description":"POP2-HN-5 - fr-par-1 (0.4524€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-1", "description":"L4-1-24G - fr-par-1 (0.0125€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-1", "description":"L4-2-24G - fr-par-1 (0.025€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-1", "description":"L4-4-24G - fr-par-1 (0.05€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-1", "description":"L4-8-24G - fr-par-1 (0.1€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-1", "description":"RENDER-S Instance - fr-par-1 (1.221€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":57}' headers: Content-Length: - - "63436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "61679" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c546a411-7380-4a6f-b763-494298b547ae + - 29825832-4293-43a4-a865-502ca15e9d90 status: 200 OK code: 200 - duration: 33.575719ms + duration: 29.450497ms - id: 18 request: proto: HTTP/1.1 @@ -951,7 +859,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -963,35 +873,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2344 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"},"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"}}}' + 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": "shortage"}, "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: - - "2345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53:52 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 01cbbcf3-7e25-4b24-80c6-c8b411355359 + - 80b329a0-03af-4f6f-b9dc-1125193cac00 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 82.323869ms + duration: 95.941622ms - id: 19 request: proto: HTTP/1.1 @@ -1004,7 +906,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1016,35 +920,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 769 uncompressed: false - 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"}}}' + body: '{"servers": {"PRO2-L": {"availability": "scarce"}, "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"}}}' headers: Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "769" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53:52 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f9a951f0-3a20-44f5-8d2d-7a602d59a738 + - a8c7c7ce-8e5e-4391-aa7d-1f097c3645e4 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 91.225255ms + duration: 63.474906ms - id: 20 request: proto: HTTP/1.1 @@ -1057,7 +953,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1069,35 +967,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53:52 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f99ab874-42da-45f7-bf7f-638f5ecd8c5a + - 0382f320-330b-406f-910e-2af4b2fc6a26 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 64.811091ms + duration: 43.724937ms - id: 21 request: proto: HTTP/1.1 @@ -1110,7 +1000,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1124,33 +1016,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53:52 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 16b186e7-4f65-4ef1-94f3-d15f9f3093fa + - 821825cd-0352-469c-bdb4-084cd9dffab1 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 46.302426ms + duration: 46.129854ms - id: 22 request: proto: HTTP/1.1 @@ -1163,7 +1047,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1175,31 +1065,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63436 + content_length: 61679 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-1", "description":"POP2-2C-8G - fr-par-1 (0.0735€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00072178466, "m3_water_usage":4.815502e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-1", "description":"POP2-2C-8G-WIN - fr-par-1 (0.1823€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007688888, "m3_water_usage":5.2443365e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-1", "description":"POP2-4C-16G - fr-par-1 (0.147€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001145898, "m3_water_usage":6.159374e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-1", "description":"POP2-4C-16G-WIN - fr-par-1 (0.3637€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012401063, "m3_water_usage":7.017042e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-1", "description":"POP2-48C-192G - fr-par-1 (1.77€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010476393, "m3_water_usage":3.5724548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-1", "description":"POP2-8C-32G - fr-par-1 (0.29€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019941248, "m3_water_usage":8.847117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-1", "description":"POP2-8C-32G-WIN - fr-par-1 (0.7233€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021825414, "m3_water_usage":1.05624544e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-1", "description":"POP2-16C-64G - fr-par-1 (0.59€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036905783, "m3_water_usage":1.4222603e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-1", "description":"POP2-16C-64G-WIN - fr-par-1 (1.4567€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004067411, "m3_water_usage":1.7653278e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-1", "description":"POP2-32C-128G - fr-par-1 (1.18€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0070834854, "m3_water_usage":2.4973576e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-1", "description":"POP2-32C-128G-WIN - fr-par-1 (2.9133€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007837151, "m3_water_usage":3.1834924e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-1", "description":"POP2-64C-256G - fr-par-1 (2.35€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0138693, "m3_water_usage":4.647552e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-1", "description":"PRO2-XXS - fr-par-1 (0.055€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006970975, "m3_water_usage":4.6791055e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-1", "description":"PRO2-XS - fr-par-1 (0.11€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010965237, "m3_water_usage":5.88658e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-1", "description":"PRO2-S - fr-par-1 (0.219€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018953761, "m3_water_usage":8.3015294e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-1", "description":"PRO2-M - fr-par-1 (0.438€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034930808, "m3_water_usage":1.3131428e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-1", "description":"PRO2-L - fr-par-1 (0.877€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066884905, "m3_water_usage":2.2791227e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-1", "description":"GP1-XS Instance - fr-par-1 (0.091€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011995973, "m3_water_usage":6.042756e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-1", "description":"GP1-S Instance - fr-par-1 (0.187€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021676724, "m3_water_usage":9.385356e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-1", "description":"GP1-M Instance - fr-par-1 (0.376€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0041038226, "m3_water_usage":1.6070554e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-1", "description":"GP1-L Instance - fr-par-1 (0.759€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007976123, "m3_water_usage":2.9440952e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-1", "description":"GP1-XL Instance - fr-par-1 (1.641€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015466409, "m3_water_usage":5.530364e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-1", "description":"COPARM1-2C-8G - fr-par-1 (0.0426€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00069850276, "m3_water_usage":4.6164647e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-1", "description":"COPARM1-4C-16G - fr-par-1 (0.0857€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010853942, "m3_water_usage":5.5987208e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-1", "description":"COPARM1-8C-32G - fr-par-1 (0.1724€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001859177, "m3_water_usage":7.563233e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-1", "description":"COPARM1-16C-64G - fr-par-1 (0.3454€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034067426, "m3_water_usage":1.1492257e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-1", "description":"COPARM1-32C-128G - fr-par-1 (0.6935€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006501874, "m3_water_usage":1.9350306e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - fr-par-1", "description":"STARDUST1-S - fr-par-1 (0.00015€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0002778983, "m3_water_usage":2.542258e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-1", "description":"DEV1-S Instance - fr-par-1 (0.0088€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00036396398, "m3_water_usage":2.847243e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-1", "description":"DEV1-M Instance - fr-par-1 (0.0198€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00051360304, "m3_water_usage":3.3775283e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-1", "description":"DEV1-L Instance - fr-par-1 (0.042€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00079038885, "m3_water_usage":4.358414e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-1", "description":"DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010446823, "m3_water_usage":5.2596153e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-1", "description":"PLAY2-PICO - fr-par-1 (0.014€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0003949738, "m3_water_usage":3.707793e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-1", "description":"PLAY2-NANO - fr-par-1 (0.027€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00049227633, "m3_water_usage":3.9439552e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-1", "description":"PLAY2-MICRO - fr-par-1 (0.054€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00068688137, "m3_water_usage":4.4162803e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-1", "description":"POP2-HM-2C-16G - fr-par-1 (0.103€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010394889, "m3_water_usage":5.2720925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-1", "description":"POP2-HM-4C-32G - fr-par-1 (0.206€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017813066, "m3_water_usage":7.072554e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-1", "description":"POP2-HM-8C-64G - fr-par-1 (0.412€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003264942, "m3_water_usage":1.0673478e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-1", "description":"POP2-HM-16C-128G - fr-par-1 (0.824€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062322128, "m3_water_usage":1.7875325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-1", "description":"POP2-HM-32C-256G - fr-par-1 (1.648€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012166753, "m3_water_usage":3.227902e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-1", "description":"POP2-HM-48C-384G - fr-par-1 (2.47€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018101295, "m3_water_usage":4.6682715e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-1", "description":"POP2-HM-64C-512G - fr-par-1 (3.296€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.024035836, "m3_water_usage":6.108641e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-1", "description":"POP2-HC-2C-4G - fr-par-1 (0.0532€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-1", "description":"POP2-HC-4C-8G - fr-par-1 (0.1064€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-1", "description":"POP2-HC-8C-16G - fr-par-1 (0.2128€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011733484, "m3_water_usage":6.246355e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-1", "description":"POP2-HC-16C-32G - fr-par-1 (0.4256€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020490256, "m3_water_usage":9.021079e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-1", "description":"POP2-HC-32C-64G - fr-par-1 (0.8512€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038003798, "m3_water_usage":1.4570527e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-1", "description":"POP2-HC-48C-96G - fr-par-1 (1.27€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005551734, "m3_water_usage":2.0119975e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-1", "description":"POP2-HC-64C-128G - fr-par-1 (1.7024€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073030884, "m3_water_usage":2.5669422e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-1", "description":"POP2-HN-10 - fr-par-1 (0.7264€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-1", "description":"POP2-HN-3 - fr-par-1 (0.2554€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-1", "description":"POP2-HN-5 - fr-par-1 (0.4524€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-1", "description":"L4-1-24G - fr-par-1 (0.0125€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-1", "description":"L4-2-24G - fr-par-1 (0.025€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-1", "description":"L4-4-24G - fr-par-1 (0.05€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-1", "description":"L4-8-24G - fr-par-1 (0.1€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-1", "description":"RENDER-S Instance - fr-par-1 (1.221€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":57}' headers: Content-Length: - - "63436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "61679" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2de4433b-642b-45ad-925f-60a99ea7e8fc + - cde2b753-0f21-4409-8ca5-c04e4ffe58c2 status: 200 OK code: 200 - duration: 29.442591ms + duration: 22.829958ms - id: 23 request: proto: HTTP/1.1 @@ -1212,7 +1094,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1224,35 +1108,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2344 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"},"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"}}}' + 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": "shortage"}, "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: - - "2345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53:52 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 71d6e349-365f-4a5c-bec9-066167f7c75f + - 001e94c8-4d46-4b8b-8c44-4230165aae49 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 97.310162ms + duration: 91.233049ms - id: 24 request: proto: HTTP/1.1 @@ -1265,7 +1141,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1277,35 +1155,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 769 uncompressed: false - 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"}}}' + body: '{"servers": {"PRO2-L": {"availability": "scarce"}, "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"}}}' headers: Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "769" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53:52 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e438842-e20d-4f33-a327-4cf1c6a926b6 + - 943f43fa-e6a9-49f3-838b-31cb6d86e60a X-Total-Count: - "68" status: 200 OK code: 200 - duration: 152.051417ms + duration: 89.622637ms - id: 25 request: proto: HTTP/1.1 @@ -1318,7 +1188,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1330,35 +1202,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53:52 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6a894edd-dcd2-472a-947f-6cb166e621bb + - 91b21215-d26a-467b-84a4-a0643c1b4074 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 45.264971ms + duration: 49.38447ms - id: 26 request: proto: HTTP/1.1 @@ -1371,7 +1235,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1385,33 +1251,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 889092f9-8470-4a22-8add-47d94e6605b3 + - c00923dc-9cc4-4193-9295-5fa3834d7f2c X-Total-Count: - "68" status: 200 OK code: 200 - duration: 36.599437ms + duration: 44.829683ms - id: 27 request: proto: HTTP/1.1 @@ -1424,7 +1282,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1436,31 +1300,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63436 + content_length: 61679 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-1", "description":"POP2-2C-8G - fr-par-1 (0.0735€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00072178466, "m3_water_usage":4.815502e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-1", "description":"POP2-2C-8G-WIN - fr-par-1 (0.1823€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007688888, "m3_water_usage":5.2443365e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-1", "description":"POP2-4C-16G - fr-par-1 (0.147€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001145898, "m3_water_usage":6.159374e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-1", "description":"POP2-4C-16G-WIN - fr-par-1 (0.3637€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012401063, "m3_water_usage":7.017042e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-1", "description":"POP2-48C-192G - fr-par-1 (1.77€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010476393, "m3_water_usage":3.5724548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-1", "description":"POP2-8C-32G - fr-par-1 (0.29€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019941248, "m3_water_usage":8.847117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-1", "description":"POP2-8C-32G-WIN - fr-par-1 (0.7233€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021825414, "m3_water_usage":1.05624544e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-1", "description":"POP2-16C-64G - fr-par-1 (0.59€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036905783, "m3_water_usage":1.4222603e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-1", "description":"POP2-16C-64G-WIN - fr-par-1 (1.4567€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004067411, "m3_water_usage":1.7653278e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-1", "description":"POP2-32C-128G - fr-par-1 (1.18€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0070834854, "m3_water_usage":2.4973576e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-1", "description":"POP2-32C-128G-WIN - fr-par-1 (2.9133€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007837151, "m3_water_usage":3.1834924e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-1", "description":"POP2-64C-256G - fr-par-1 (2.35€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0138693, "m3_water_usage":4.647552e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-1", "description":"PRO2-XXS - fr-par-1 (0.055€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006970975, "m3_water_usage":4.6791055e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-1", "description":"PRO2-XS - fr-par-1 (0.11€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010965237, "m3_water_usage":5.88658e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-1", "description":"PRO2-S - fr-par-1 (0.219€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018953761, "m3_water_usage":8.3015294e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-1", "description":"PRO2-M - fr-par-1 (0.438€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034930808, "m3_water_usage":1.3131428e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-1", "description":"PRO2-L - fr-par-1 (0.877€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066884905, "m3_water_usage":2.2791227e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-1", "description":"GP1-XS Instance - fr-par-1 (0.091€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011995973, "m3_water_usage":6.042756e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-1", "description":"GP1-S Instance - fr-par-1 (0.187€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021676724, "m3_water_usage":9.385356e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-1", "description":"GP1-M Instance - fr-par-1 (0.376€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0041038226, "m3_water_usage":1.6070554e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-1", "description":"GP1-L Instance - fr-par-1 (0.759€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007976123, "m3_water_usage":2.9440952e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-1", "description":"GP1-XL Instance - fr-par-1 (1.641€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015466409, "m3_water_usage":5.530364e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-1", "description":"COPARM1-2C-8G - fr-par-1 (0.0426€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00069850276, "m3_water_usage":4.6164647e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-1", "description":"COPARM1-4C-16G - fr-par-1 (0.0857€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010853942, "m3_water_usage":5.5987208e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-1", "description":"COPARM1-8C-32G - fr-par-1 (0.1724€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001859177, "m3_water_usage":7.563233e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-1", "description":"COPARM1-16C-64G - fr-par-1 (0.3454€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034067426, "m3_water_usage":1.1492257e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-1", "description":"COPARM1-32C-128G - fr-par-1 (0.6935€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006501874, "m3_water_usage":1.9350306e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - fr-par-1", "description":"STARDUST1-S - fr-par-1 (0.00015€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0002778983, "m3_water_usage":2.542258e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-1", "description":"DEV1-S Instance - fr-par-1 (0.0088€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00036396398, "m3_water_usage":2.847243e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-1", "description":"DEV1-M Instance - fr-par-1 (0.0198€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00051360304, "m3_water_usage":3.3775283e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-1", "description":"DEV1-L Instance - fr-par-1 (0.042€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00079038885, "m3_water_usage":4.358414e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-1", "description":"DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010446823, "m3_water_usage":5.2596153e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-1", "description":"PLAY2-PICO - fr-par-1 (0.014€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0003949738, "m3_water_usage":3.707793e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-1", "description":"PLAY2-NANO - fr-par-1 (0.027€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00049227633, "m3_water_usage":3.9439552e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-1", "description":"PLAY2-MICRO - fr-par-1 (0.054€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00068688137, "m3_water_usage":4.4162803e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-1", "description":"POP2-HM-2C-16G - fr-par-1 (0.103€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010394889, "m3_water_usage":5.2720925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-1", "description":"POP2-HM-4C-32G - fr-par-1 (0.206€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017813066, "m3_water_usage":7.072554e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-1", "description":"POP2-HM-8C-64G - fr-par-1 (0.412€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003264942, "m3_water_usage":1.0673478e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-1", "description":"POP2-HM-16C-128G - fr-par-1 (0.824€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062322128, "m3_water_usage":1.7875325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-1", "description":"POP2-HM-32C-256G - fr-par-1 (1.648€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012166753, "m3_water_usage":3.227902e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-1", "description":"POP2-HM-48C-384G - fr-par-1 (2.47€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018101295, "m3_water_usage":4.6682715e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-1", "description":"POP2-HM-64C-512G - fr-par-1 (3.296€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.024035836, "m3_water_usage":6.108641e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-1", "description":"POP2-HC-2C-4G - fr-par-1 (0.0532€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-1", "description":"POP2-HC-4C-8G - fr-par-1 (0.1064€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-1", "description":"POP2-HC-8C-16G - fr-par-1 (0.2128€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011733484, "m3_water_usage":6.246355e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-1", "description":"POP2-HC-16C-32G - fr-par-1 (0.4256€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020490256, "m3_water_usage":9.021079e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-1", "description":"POP2-HC-32C-64G - fr-par-1 (0.8512€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038003798, "m3_water_usage":1.4570527e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-1", "description":"POP2-HC-48C-96G - fr-par-1 (1.27€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005551734, "m3_water_usage":2.0119975e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-1", "description":"POP2-HC-64C-128G - fr-par-1 (1.7024€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073030884, "m3_water_usage":2.5669422e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-1", "description":"POP2-HN-10 - fr-par-1 (0.7264€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-1", "description":"POP2-HN-3 - fr-par-1 (0.2554€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-1", "description":"POP2-HN-5 - fr-par-1 (0.4524€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-1", "description":"L4-1-24G - fr-par-1 (0.0125€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-1", "description":"L4-2-24G - fr-par-1 (0.025€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-1", "description":"L4-4-24G - fr-par-1 (0.05€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-1", "description":"L4-8-24G - fr-par-1 (0.1€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-1", "description":"RENDER-S Instance - fr-par-1 (1.221€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":57}' headers: Content-Length: - - "63436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "61679" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 22d6ebc9-1015-41e0-b079-46c05ff7dbb0 + - 8bca8324-b46a-44c3-8e21-2db984f1793f status: 200 OK code: 200 - duration: 25.954273ms + duration: 22.231148ms - id: 28 request: proto: HTTP/1.1 @@ -1473,7 +1329,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1485,35 +1343,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2344 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"},"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"}}}' + 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": "shortage"}, "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: - - "2345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 03a6c4ef-80a2-4260-a8ba-aa3dcfe75932 + - b3b80111-bfac-476d-888c-fe3eec67721f X-Total-Count: - "68" status: 200 OK code: 200 - duration: 95.339479ms + duration: 113.466691ms - id: 29 request: proto: HTTP/1.1 @@ -1526,7 +1376,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1538,35 +1390,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 769 uncompressed: false - 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"}}}' + body: '{"servers": {"PRO2-L": {"availability": "scarce"}, "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"}}}' headers: Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "769" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8c55ee35-cb9f-4bd9-b4f9-6a25ca8ea290 + - 4aba85d1-c7f3-479a-8905-b9f3968436de X-Total-Count: - "68" status: 200 OK code: 200 - duration: 100.01376ms + duration: 78.575461ms - id: 30 request: proto: HTTP/1.1 @@ -1579,7 +1423,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1591,35 +1437,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 984abd41-4154-45a8-b3a2-a14946140c80 + - daee709f-9a72-45f0-988c-fb973185d593 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 44.275016ms + duration: 42.233048ms - id: 31 request: proto: HTTP/1.1 @@ -1632,7 +1470,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1646,33 +1486,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - caed2c31-0323-49e1-8d7e-8314c485c647 + - b47e9099-fe82-4aef-aaa0-5eb8f0ba62de X-Total-Count: - "68" status: 200 OK code: 200 - duration: 46.657612ms + duration: 32.470172ms - id: 32 request: proto: HTTP/1.1 @@ -1685,7 +1517,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1697,31 +1535,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63436 + content_length: 61679 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-1", "description":"POP2-2C-8G - fr-par-1 (0.0735€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00072178466, "m3_water_usage":4.815502e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-1", "description":"POP2-2C-8G-WIN - fr-par-1 (0.1823€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007688888, "m3_water_usage":5.2443365e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-1", "description":"POP2-4C-16G - fr-par-1 (0.147€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001145898, "m3_water_usage":6.159374e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-1", "description":"POP2-4C-16G-WIN - fr-par-1 (0.3637€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012401063, "m3_water_usage":7.017042e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-1", "description":"POP2-48C-192G - fr-par-1 (1.77€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010476393, "m3_water_usage":3.5724548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-1", "description":"POP2-8C-32G - fr-par-1 (0.29€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019941248, "m3_water_usage":8.847117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-1", "description":"POP2-8C-32G-WIN - fr-par-1 (0.7233€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021825414, "m3_water_usage":1.05624544e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-1", "description":"POP2-16C-64G - fr-par-1 (0.59€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036905783, "m3_water_usage":1.4222603e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-1", "description":"POP2-16C-64G-WIN - fr-par-1 (1.4567€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004067411, "m3_water_usage":1.7653278e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-1", "description":"POP2-32C-128G - fr-par-1 (1.18€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0070834854, "m3_water_usage":2.4973576e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-1", "description":"POP2-32C-128G-WIN - fr-par-1 (2.9133€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007837151, "m3_water_usage":3.1834924e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-1", "description":"POP2-64C-256G - fr-par-1 (2.35€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0138693, "m3_water_usage":4.647552e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-1", "description":"PRO2-XXS - fr-par-1 (0.055€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006970975, "m3_water_usage":4.6791055e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-1", "description":"PRO2-XS - fr-par-1 (0.11€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010965237, "m3_water_usage":5.88658e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-1", "description":"PRO2-S - fr-par-1 (0.219€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018953761, "m3_water_usage":8.3015294e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-1", "description":"PRO2-M - fr-par-1 (0.438€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034930808, "m3_water_usage":1.3131428e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-1", "description":"PRO2-L - fr-par-1 (0.877€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066884905, "m3_water_usage":2.2791227e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-1", "description":"GP1-XS Instance - fr-par-1 (0.091€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011995973, "m3_water_usage":6.042756e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-1", "description":"GP1-S Instance - fr-par-1 (0.187€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021676724, "m3_water_usage":9.385356e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-1", "description":"GP1-M Instance - fr-par-1 (0.376€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0041038226, "m3_water_usage":1.6070554e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-1", "description":"GP1-L Instance - fr-par-1 (0.759€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007976123, "m3_water_usage":2.9440952e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-1", "description":"GP1-XL Instance - fr-par-1 (1.641€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015466409, "m3_water_usage":5.530364e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-1", "description":"COPARM1-2C-8G - fr-par-1 (0.0426€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00069850276, "m3_water_usage":4.6164647e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-1", "description":"COPARM1-4C-16G - fr-par-1 (0.0857€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010853942, "m3_water_usage":5.5987208e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-1", "description":"COPARM1-8C-32G - fr-par-1 (0.1724€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001859177, "m3_water_usage":7.563233e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-1", "description":"COPARM1-16C-64G - fr-par-1 (0.3454€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034067426, "m3_water_usage":1.1492257e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-1", "description":"COPARM1-32C-128G - fr-par-1 (0.6935€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006501874, "m3_water_usage":1.9350306e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - fr-par-1", "description":"STARDUST1-S - fr-par-1 (0.00015€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0002778983, "m3_water_usage":2.542258e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-1", "description":"DEV1-S Instance - fr-par-1 (0.0088€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00036396398, "m3_water_usage":2.847243e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-1", "description":"DEV1-M Instance - fr-par-1 (0.0198€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00051360304, "m3_water_usage":3.3775283e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-1", "description":"DEV1-L Instance - fr-par-1 (0.042€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00079038885, "m3_water_usage":4.358414e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-1", "description":"DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010446823, "m3_water_usage":5.2596153e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-1", "description":"PLAY2-PICO - fr-par-1 (0.014€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0003949738, "m3_water_usage":3.707793e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-1", "description":"PLAY2-NANO - fr-par-1 (0.027€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00049227633, "m3_water_usage":3.9439552e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-1", "description":"PLAY2-MICRO - fr-par-1 (0.054€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00068688137, "m3_water_usage":4.4162803e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-1", "description":"POP2-HM-2C-16G - fr-par-1 (0.103€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010394889, "m3_water_usage":5.2720925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-1", "description":"POP2-HM-4C-32G - fr-par-1 (0.206€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017813066, "m3_water_usage":7.072554e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-1", "description":"POP2-HM-8C-64G - fr-par-1 (0.412€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003264942, "m3_water_usage":1.0673478e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-1", "description":"POP2-HM-16C-128G - fr-par-1 (0.824€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062322128, "m3_water_usage":1.7875325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-1", "description":"POP2-HM-32C-256G - fr-par-1 (1.648€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012166753, "m3_water_usage":3.227902e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-1", "description":"POP2-HM-48C-384G - fr-par-1 (2.47€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018101295, "m3_water_usage":4.6682715e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-1", "description":"POP2-HM-64C-512G - fr-par-1 (3.296€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.024035836, "m3_water_usage":6.108641e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-1", "description":"POP2-HC-2C-4G - fr-par-1 (0.0532€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-1", "description":"POP2-HC-4C-8G - fr-par-1 (0.1064€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-1", "description":"POP2-HC-8C-16G - fr-par-1 (0.2128€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011733484, "m3_water_usage":6.246355e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-1", "description":"POP2-HC-16C-32G - fr-par-1 (0.4256€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020490256, "m3_water_usage":9.021079e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-1", "description":"POP2-HC-32C-64G - fr-par-1 (0.8512€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038003798, "m3_water_usage":1.4570527e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-1", "description":"POP2-HC-48C-96G - fr-par-1 (1.27€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005551734, "m3_water_usage":2.0119975e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-1", "description":"POP2-HC-64C-128G - fr-par-1 (1.7024€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073030884, "m3_water_usage":2.5669422e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-1", "description":"POP2-HN-10 - fr-par-1 (0.7264€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-1", "description":"POP2-HN-3 - fr-par-1 (0.2554€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-1", "description":"POP2-HN-5 - fr-par-1 (0.4524€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-1", "description":"L4-1-24G - fr-par-1 (0.0125€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-1", "description":"L4-2-24G - fr-par-1 (0.025€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-1", "description":"L4-4-24G - fr-par-1 (0.05€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-1", "description":"L4-8-24G - fr-par-1 (0.1€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-1", "description":"RENDER-S Instance - fr-par-1 (1.221€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":57}' headers: Content-Length: - - "63436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "61679" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d62efc36-f0b5-46a0-824f-4e1618650cf6 + - e1611e04-cead-4df7-94a2-200919646608 status: 200 OK code: 200 - duration: 30.33307ms + duration: 26.764133ms - id: 33 request: proto: HTTP/1.1 @@ -1734,7 +1564,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1746,35 +1578,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2344 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"},"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"}}}' + 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": "shortage"}, "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: - - "2345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d515a456-5b7e-4e55-8ce8-771da90f47ad + - 93dcb798-e51b-4ef6-b917-3023c78c4285 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 100.172537ms + duration: 101.187812ms - id: 34 request: proto: HTTP/1.1 @@ -1787,7 +1611,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1799,35 +1625,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 769 uncompressed: false - 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"}}}' + body: '{"servers": {"PRO2-L": {"availability": "scarce"}, "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"}}}' headers: Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "769" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b91a72a7-cd7e-4614-ba78-00c62f724bed + - ba570a9b-0de0-453c-b309-36e149325b1b X-Total-Count: - "68" status: 200 OK code: 200 - duration: 95.264208ms + duration: 83.43108ms - id: 35 request: proto: HTTP/1.1 @@ -1840,7 +1658,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1852,35 +1672,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 56695984-efc7-4e76-a2d0-cf75445ff8d6 + - b7e8cb92-54c1-434b-85ca-66153eb31e0c X-Total-Count: - "68" status: 200 OK code: 200 - duration: 53.560522ms + duration: 54.463305ms - id: 36 request: proto: HTTP/1.1 @@ -1893,7 +1705,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1907,33 +1721,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 370c7b80-afa1-47df-8f37-899a45c05820 + - 61a82ef3-c8cb-4d3a-b153-272c01cb27b5 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 59.963795ms + duration: 38.353293ms - id: 37 request: proto: HTTP/1.1 @@ -1946,7 +1752,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1958,31 +1770,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63436 + content_length: 61679 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-1", "description":"POP2-2C-8G - fr-par-1 (0.0735€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00072178466, "m3_water_usage":4.815502e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-1", "description":"POP2-2C-8G-WIN - fr-par-1 (0.1823€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007688888, "m3_water_usage":5.2443365e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-1", "description":"POP2-4C-16G - fr-par-1 (0.147€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001145898, "m3_water_usage":6.159374e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-1", "description":"POP2-4C-16G-WIN - fr-par-1 (0.3637€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012401063, "m3_water_usage":7.017042e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-1", "description":"POP2-48C-192G - fr-par-1 (1.77€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010476393, "m3_water_usage":3.5724548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-1", "description":"POP2-8C-32G - fr-par-1 (0.29€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019941248, "m3_water_usage":8.847117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-1", "description":"POP2-8C-32G-WIN - fr-par-1 (0.7233€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021825414, "m3_water_usage":1.05624544e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-1", "description":"POP2-16C-64G - fr-par-1 (0.59€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036905783, "m3_water_usage":1.4222603e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-1", "description":"POP2-16C-64G-WIN - fr-par-1 (1.4567€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004067411, "m3_water_usage":1.7653278e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-1", "description":"POP2-32C-128G - fr-par-1 (1.18€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0070834854, "m3_water_usage":2.4973576e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-1", "description":"POP2-32C-128G-WIN - fr-par-1 (2.9133€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007837151, "m3_water_usage":3.1834924e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-1", "description":"POP2-64C-256G - fr-par-1 (2.35€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0138693, "m3_water_usage":4.647552e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-1", "description":"PRO2-XXS - fr-par-1 (0.055€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006970975, "m3_water_usage":4.6791055e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-1", "description":"PRO2-XS - fr-par-1 (0.11€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010965237, "m3_water_usage":5.88658e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-1", "description":"PRO2-S - fr-par-1 (0.219€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018953761, "m3_water_usage":8.3015294e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-1", "description":"PRO2-M - fr-par-1 (0.438€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034930808, "m3_water_usage":1.3131428e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-1", "description":"PRO2-L - fr-par-1 (0.877€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066884905, "m3_water_usage":2.2791227e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-1", "description":"GP1-XS Instance - fr-par-1 (0.091€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011995973, "m3_water_usage":6.042756e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-1", "description":"GP1-S Instance - fr-par-1 (0.187€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021676724, "m3_water_usage":9.385356e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-1", "description":"GP1-M Instance - fr-par-1 (0.376€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0041038226, "m3_water_usage":1.6070554e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-1", "description":"GP1-L Instance - fr-par-1 (0.759€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007976123, "m3_water_usage":2.9440952e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-1", "description":"GP1-XL Instance - fr-par-1 (1.641€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015466409, "m3_water_usage":5.530364e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-1", "description":"COPARM1-2C-8G - fr-par-1 (0.0426€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00069850276, "m3_water_usage":4.6164647e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-1", "description":"COPARM1-4C-16G - fr-par-1 (0.0857€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010853942, "m3_water_usage":5.5987208e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-1", "description":"COPARM1-8C-32G - fr-par-1 (0.1724€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001859177, "m3_water_usage":7.563233e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-1", "description":"COPARM1-16C-64G - fr-par-1 (0.3454€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034067426, "m3_water_usage":1.1492257e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-1", "description":"COPARM1-32C-128G - fr-par-1 (0.6935€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006501874, "m3_water_usage":1.9350306e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - fr-par-1", "description":"STARDUST1-S - fr-par-1 (0.00015€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0002778983, "m3_water_usage":2.542258e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-1", "description":"DEV1-S Instance - fr-par-1 (0.0088€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00036396398, "m3_water_usage":2.847243e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-1", "description":"DEV1-M Instance - fr-par-1 (0.0198€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00051360304, "m3_water_usage":3.3775283e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-1", "description":"DEV1-L Instance - fr-par-1 (0.042€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00079038885, "m3_water_usage":4.358414e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-1", "description":"DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010446823, "m3_water_usage":5.2596153e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-1", "description":"PLAY2-PICO - fr-par-1 (0.014€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0003949738, "m3_water_usage":3.707793e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-1", "description":"PLAY2-NANO - fr-par-1 (0.027€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00049227633, "m3_water_usage":3.9439552e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-1", "description":"PLAY2-MICRO - fr-par-1 (0.054€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00068688137, "m3_water_usage":4.4162803e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-1", "description":"POP2-HM-2C-16G - fr-par-1 (0.103€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010394889, "m3_water_usage":5.2720925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-1", "description":"POP2-HM-4C-32G - fr-par-1 (0.206€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017813066, "m3_water_usage":7.072554e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-1", "description":"POP2-HM-8C-64G - fr-par-1 (0.412€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003264942, "m3_water_usage":1.0673478e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-1", "description":"POP2-HM-16C-128G - fr-par-1 (0.824€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062322128, "m3_water_usage":1.7875325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-1", "description":"POP2-HM-32C-256G - fr-par-1 (1.648€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012166753, "m3_water_usage":3.227902e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-1", "description":"POP2-HM-48C-384G - fr-par-1 (2.47€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018101295, "m3_water_usage":4.6682715e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-1", "description":"POP2-HM-64C-512G - fr-par-1 (3.296€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.024035836, "m3_water_usage":6.108641e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-1", "description":"POP2-HC-2C-4G - fr-par-1 (0.0532€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-1", "description":"POP2-HC-4C-8G - fr-par-1 (0.1064€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-1", "description":"POP2-HC-8C-16G - fr-par-1 (0.2128€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011733484, "m3_water_usage":6.246355e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-1", "description":"POP2-HC-16C-32G - fr-par-1 (0.4256€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020490256, "m3_water_usage":9.021079e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-1", "description":"POP2-HC-32C-64G - fr-par-1 (0.8512€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038003798, "m3_water_usage":1.4570527e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-1", "description":"POP2-HC-48C-96G - fr-par-1 (1.27€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005551734, "m3_water_usage":2.0119975e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-1", "description":"POP2-HC-64C-128G - fr-par-1 (1.7024€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073030884, "m3_water_usage":2.5669422e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-1", "description":"POP2-HN-10 - fr-par-1 (0.7264€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-1", "description":"POP2-HN-3 - fr-par-1 (0.2554€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-1", "description":"POP2-HN-5 - fr-par-1 (0.4524€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-1", "description":"L4-1-24G - fr-par-1 (0.0125€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-1", "description":"L4-2-24G - fr-par-1 (0.025€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-1", "description":"L4-4-24G - fr-par-1 (0.05€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-1", "description":"L4-8-24G - fr-par-1 (0.1€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-1", "description":"RENDER-S Instance - fr-par-1 (1.221€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":57}' headers: Content-Length: - - "63436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "61679" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6269a46a-f5b3-4236-b810-712db1d746ff + - d5025318-be9a-45b5-8c91-4681ad1ae8d7 status: 200 OK code: 200 - duration: 21.063024ms + duration: 28.84814ms - id: 38 request: proto: HTTP/1.1 @@ -1995,7 +1799,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2007,35 +1813,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2344 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"},"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"}}}' + 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": "shortage"}, "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: - - "2345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f5a0de2a-9572-4c4e-852f-f5e17f4ae1d2 + - 4b4a15f0-e497-493a-ae05-196812d11b86 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 109.585694ms + duration: 92.760655ms - id: 39 request: proto: HTTP/1.1 @@ -2048,7 +1846,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2060,35 +1860,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 769 uncompressed: false - 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"}}}' + body: '{"servers": {"PRO2-L": {"availability": "scarce"}, "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"}}}' headers: Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "769" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 56a7cc87-6443-4deb-b3a3-477f8325ace6 + - b40eeeff-49bb-4206-8c00-770e38165695 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 65.717271ms + duration: 72.050811ms - id: 40 request: proto: HTTP/1.1 @@ -2101,7 +1893,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2113,35 +1907,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 22b0105e-4f4c-4fb1-948c-99fbba133799 + - cf0edfba-cfc5-4393-835b-3feddf8117a1 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 55.307758ms + duration: 42.591628ms - id: 41 request: proto: HTTP/1.1 @@ -2154,7 +1940,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2168,33 +1956,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7b68c461-666e-431c-887b-b5a2504d898f + - 15fd2dd2-7d93-4fe7-af81-eb27ed500acb X-Total-Count: - "68" status: 200 OK code: 200 - duration: 37.154969ms + duration: 36.869419ms - id: 42 request: proto: HTTP/1.1 @@ -2207,7 +1987,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2219,31 +2005,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63436 + content_length: 61679 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-1", "description":"POP2-2C-8G - fr-par-1 (0.0735€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00072178466, "m3_water_usage":4.815502e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-1", "description":"POP2-2C-8G-WIN - fr-par-1 (0.1823€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007688888, "m3_water_usage":5.2443365e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-1", "description":"POP2-4C-16G - fr-par-1 (0.147€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001145898, "m3_water_usage":6.159374e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-1", "description":"POP2-4C-16G-WIN - fr-par-1 (0.3637€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012401063, "m3_water_usage":7.017042e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-1", "description":"POP2-48C-192G - fr-par-1 (1.77€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010476393, "m3_water_usage":3.5724548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-1", "description":"POP2-8C-32G - fr-par-1 (0.29€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019941248, "m3_water_usage":8.847117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-1", "description":"POP2-8C-32G-WIN - fr-par-1 (0.7233€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021825414, "m3_water_usage":1.05624544e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-1", "description":"POP2-16C-64G - fr-par-1 (0.59€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036905783, "m3_water_usage":1.4222603e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-1", "description":"POP2-16C-64G-WIN - fr-par-1 (1.4567€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004067411, "m3_water_usage":1.7653278e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-1", "description":"POP2-32C-128G - fr-par-1 (1.18€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0070834854, "m3_water_usage":2.4973576e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-1", "description":"POP2-32C-128G-WIN - fr-par-1 (2.9133€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007837151, "m3_water_usage":3.1834924e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-1", "description":"POP2-64C-256G - fr-par-1 (2.35€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0138693, "m3_water_usage":4.647552e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-1", "description":"PRO2-XXS - fr-par-1 (0.055€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006970975, "m3_water_usage":4.6791055e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-1", "description":"PRO2-XS - fr-par-1 (0.11€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010965237, "m3_water_usage":5.88658e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-1", "description":"PRO2-S - fr-par-1 (0.219€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018953761, "m3_water_usage":8.3015294e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-1", "description":"PRO2-M - fr-par-1 (0.438€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034930808, "m3_water_usage":1.3131428e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-1", "description":"PRO2-L - fr-par-1 (0.877€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066884905, "m3_water_usage":2.2791227e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-1", "description":"GP1-XS Instance - fr-par-1 (0.091€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011995973, "m3_water_usage":6.042756e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-1", "description":"GP1-S Instance - fr-par-1 (0.187€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021676724, "m3_water_usage":9.385356e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-1", "description":"GP1-M Instance - fr-par-1 (0.376€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0041038226, "m3_water_usage":1.6070554e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-1", "description":"GP1-L Instance - fr-par-1 (0.759€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007976123, "m3_water_usage":2.9440952e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-1", "description":"GP1-XL Instance - fr-par-1 (1.641€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015466409, "m3_water_usage":5.530364e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-1", "description":"COPARM1-2C-8G - fr-par-1 (0.0426€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00069850276, "m3_water_usage":4.6164647e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-1", "description":"COPARM1-4C-16G - fr-par-1 (0.0857€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010853942, "m3_water_usage":5.5987208e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-1", "description":"COPARM1-8C-32G - fr-par-1 (0.1724€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001859177, "m3_water_usage":7.563233e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-1", "description":"COPARM1-16C-64G - fr-par-1 (0.3454€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034067426, "m3_water_usage":1.1492257e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-1", "description":"COPARM1-32C-128G - fr-par-1 (0.6935€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006501874, "m3_water_usage":1.9350306e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - fr-par-1", "description":"STARDUST1-S - fr-par-1 (0.00015€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0002778983, "m3_water_usage":2.542258e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-1", "description":"DEV1-S Instance - fr-par-1 (0.0088€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00036396398, "m3_water_usage":2.847243e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-1", "description":"DEV1-M Instance - fr-par-1 (0.0198€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00051360304, "m3_water_usage":3.3775283e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-1", "description":"DEV1-L Instance - fr-par-1 (0.042€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00079038885, "m3_water_usage":4.358414e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-1", "description":"DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010446823, "m3_water_usage":5.2596153e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-1", "description":"PLAY2-PICO - fr-par-1 (0.014€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0003949738, "m3_water_usage":3.707793e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-1", "description":"PLAY2-NANO - fr-par-1 (0.027€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00049227633, "m3_water_usage":3.9439552e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-1", "description":"PLAY2-MICRO - fr-par-1 (0.054€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00068688137, "m3_water_usage":4.4162803e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-1", "description":"POP2-HM-2C-16G - fr-par-1 (0.103€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010394889, "m3_water_usage":5.2720925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-1", "description":"POP2-HM-4C-32G - fr-par-1 (0.206€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017813066, "m3_water_usage":7.072554e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-1", "description":"POP2-HM-8C-64G - fr-par-1 (0.412€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003264942, "m3_water_usage":1.0673478e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-1", "description":"POP2-HM-16C-128G - fr-par-1 (0.824€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062322128, "m3_water_usage":1.7875325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-1", "description":"POP2-HM-32C-256G - fr-par-1 (1.648€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012166753, "m3_water_usage":3.227902e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-1", "description":"POP2-HM-48C-384G - fr-par-1 (2.47€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018101295, "m3_water_usage":4.6682715e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-1", "description":"POP2-HM-64C-512G - fr-par-1 (3.296€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.024035836, "m3_water_usage":6.108641e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-1", "description":"POP2-HC-2C-4G - fr-par-1 (0.0532€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-1", "description":"POP2-HC-4C-8G - fr-par-1 (0.1064€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-1", "description":"POP2-HC-8C-16G - fr-par-1 (0.2128€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011733484, "m3_water_usage":6.246355e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-1", "description":"POP2-HC-16C-32G - fr-par-1 (0.4256€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020490256, "m3_water_usage":9.021079e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-1", "description":"POP2-HC-32C-64G - fr-par-1 (0.8512€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038003798, "m3_water_usage":1.4570527e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-1", "description":"POP2-HC-48C-96G - fr-par-1 (1.27€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005551734, "m3_water_usage":2.0119975e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-1", "description":"POP2-HC-64C-128G - fr-par-1 (1.7024€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073030884, "m3_water_usage":2.5669422e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-1", "description":"POP2-HN-10 - fr-par-1 (0.7264€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-1", "description":"POP2-HN-3 - fr-par-1 (0.2554€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-1", "description":"POP2-HN-5 - fr-par-1 (0.4524€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-1", "description":"L4-1-24G - fr-par-1 (0.0125€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-1", "description":"L4-2-24G - fr-par-1 (0.025€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-1", "description":"L4-4-24G - fr-par-1 (0.05€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-1", "description":"L4-8-24G - fr-par-1 (0.1€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-1", "description":"RENDER-S Instance - fr-par-1 (1.221€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":57}' headers: Content-Length: - - "63436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "61679" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5eecc2a2-e0aa-4d0c-8169-e45cce9cc5bc + - 86afbf2c-170a-4b3c-9b9e-857f8760d45c status: 200 OK code: 200 - duration: 27.05202ms + duration: 27.603333ms - id: 43 request: proto: HTTP/1.1 @@ -2256,7 +2034,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2268,35 +2048,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2344 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"},"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"}}}' + 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": "shortage"}, "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: - - "2345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2a5371cc-8bcc-43bb-8879-cad99490bb36 + - 7ba4cece-42fa-4677-ae5c-64c46517d677 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 94.79095ms + duration: 67.977114ms - id: 44 request: proto: HTTP/1.1 @@ -2309,7 +2081,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2321,32 +2095,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 769 uncompressed: false - 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"}}}' + body: '{"servers": {"PRO2-L": {"availability": "scarce"}, "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"}}}' headers: Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "769" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9ce65f6e-2928-4b39-8eca-e41581f3cf71 + - 4f61c674-6e6f-4a3e-9407-4a6549914390 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 66.625723ms + duration: 102.528659ms 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 6f5882368..bc7ce29a0 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 @@ -13,11 +13,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-2 headers: User-Agent: - scaleway-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=fr-par-2 method: GET response: proto: HTTP/2.0 @@ -25,31 +31,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44614 + content_length: 71103 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-2", "description":"POP2-2C-8G - fr-par-2 (0.0735€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012326919, "m3_water_usage":4.5415396e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-2", "description":"POP2-2C-8G-WIN - fr-par-2 (0.1823€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001275603, "m3_water_usage":5.732746e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-2", "description":"POP2-4C-16G - fr-par-2 (0.147€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016436653, "m3_water_usage":8.274516e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-2", "description":"POP2-4C-16G-WIN - fr-par-2 (0.3637€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017294873, "m3_water_usage":0.0000010656929}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-2", "description":"POP2-48C-192G - fr-par-2 (1.77€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010685078, "m3_water_usage":0.00000904}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-2", "description":"POP2-8C-32G - fr-par-2 (0.29€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0024656118, "m3_water_usage":0.0000015740469}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-2", "description":"POP2-8C-32G-WIN - fr-par-2 (0.7233€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0026372562, "m3_water_usage":0.0000020505295}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-2", "description":"POP2-16C-64G - fr-par-2 (0.59€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004109505, "m3_water_usage":0.0000030672375}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-2", "description":"POP2-16C-64G-WIN - fr-par-2 (1.4567€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004452794, "m3_water_usage":0.0000040202026}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-2", "description":"POP2-32C-128G - fr-par-2 (1.18€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073972913, "m3_water_usage":0.0000060536186}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-2", "description":"POP2-32C-128G-WIN - fr-par-2 (2.9133€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008083869, "m3_water_usage":0.000007959549}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-2", "description":"POP2-64C-256G - fr-par-2 (2.35€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013972864, "m3_water_usage":0.000012026381}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-2", "description":"PRO2-XXS - fr-par-2 (0.055€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012093384, "m3_water_usage":4.1626595e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-2", "description":"PRO2-XS - fr-par-2 (0.11€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015969581, "m3_water_usage":7.516756e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-2", "description":"PRO2-S - fr-par-2 (0.219€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023721978, "m3_water_usage":0.000001422495}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-2", "description":"PRO2-M - fr-par-2 (0.438€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0039226767, "m3_water_usage":0.0000027641336}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-2", "description":"PRO2-L - fr-par-2 (0.877€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007023635, "m3_water_usage":0.000005447411}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-2", "description":"GP1-XS Instance - fr-par-2 (0.091€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015745064, "m3_water_usage":9.91388e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-2", "description":"GP1-S Instance - fr-par-2 (0.187€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025098983, "m3_water_usage":0.0000019198878}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-2", "description":"GP1-M Instance - fr-par-2 (0.376€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004380682, "m3_water_usage":0.0000037768873}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-2", "description":"GP1-L Instance - fr-par-2 (0.759€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0081222495, "m3_water_usage":0.0000074908867}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-2", "description":"GP1-XL Instance - fr-par-2 (1.641€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015359656, "m3_water_usage":0.000014674966}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-2", "description":"COPARM1-2C-8G - fr-par-2 (0.0426€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012374872, "m3_water_usage":3.5749173e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-2", "description":"COPARM1-4C-16G - fr-par-2 (0.0857€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016147743, "m3_water_usage":6.3034065e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-2", "description":"COPARM1-8C-32G - fr-par-2 (0.1724€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023693487, "m3_water_usage":0.0000011760384}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-2", "description":"COPARM1-16C-64G - fr-par-2 (0.3454€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003878497, "m3_water_usage":0.000002267434}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-2", "description":"COPARM1-32C-128G - fr-par-2 (0.6935€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0068967943, "m3_water_usage":0.0000044502253}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-2", "description":"DEV1-S Instance - fr-par-2 (0.0088€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006957192, "m3_water_usage":2.2154349e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-2", "description":"DEV1-M Instance - fr-par-2 (0.0198€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0008401733, "m3_water_usage":3.6884495e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-2", "description":"DEV1-L Instance - fr-par-2 (0.042€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011073682, "m3_water_usage":6.4131325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-2", "description":"DEV1-XL Instance - fr-par-2 (0.063799999€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00135285, "m3_water_usage":8.9164695e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-2", "description":"PLAY2-PICO - fr-par-2 (0.014€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000916712, "m3_water_usage":1.4645697e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-2", "description":"PLAY2-NANO - fr-par-2 (0.027€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010117054, "m3_water_usage":2.1205766e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-2", "description":"PLAY2-MICRO - fr-par-2 (0.054€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001201692, "m3_water_usage":3.43259e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-2", "description":"POP2-HM-2C-16G - fr-par-2 (0.103€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015459318, "m3_water_usage":5.809846e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-2", "description":"POP2-HM-4C-32G - fr-par-2 (0.206€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0022701449, "m3_water_usage":0.0000010811128}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-2", "description":"POP2-HM-8C-64G - fr-par-2 (0.412€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0037185713, "m3_water_usage":0.0000020813695}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-2", "description":"POP2-HM-16C-128G - fr-par-2 (0.824€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066154236, "m3_water_usage":0.0000040818827}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-2", "description":"POP2-HM-32C-256G - fr-par-2 (1.648€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012409129, "m3_water_usage":0.000008082909}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-2", "description":"POP2-HM-48C-384G - fr-par-2 (2.47€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018202834, "m3_water_usage":0.000012083935}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-2", "description":"POP2-HM-64C-512G - fr-par-2 (3.296€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02399654, "m3_water_usage":0.000016084961}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-2", "description":"POP2-HC-2C-4G - fr-par-2 (0.0532€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010338553, "m3_water_usage":2.7354548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-2", "description":"POP2-HC-4C-8G - fr-par-2 (0.1064€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012459919, "m3_water_usage":4.6623464e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-2", "description":"POP2-HC-8C-16G - fr-par-2 (0.2128€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016702651, "m3_water_usage":8.51613e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-2", "description":"POP2-HC-16C-32G - fr-par-2 (0.4256€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025188117, "m3_water_usage":0.0000016223697}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-2", "description":"POP2-HC-32C-64G - fr-par-2 (0.8512€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0042159045, "m3_water_usage":0.000003163883}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-2", "description":"POP2-HC-48C-96G - fr-par-2 (1.27€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0059129978, "m3_water_usage":0.0000047053963}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-2", "description":"POP2-HC-64C-128G - fr-par-2 (1.7024€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0076100905, "m3_water_usage":0.00000624691}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-2", "description":"POP2-HN-10 - fr-par-2 (0.7264€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012459919, "m3_water_usage":4.6623464e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-2", "description":"POP2-HN-3 - fr-par-2 (0.2554€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010338553, "m3_water_usage":2.7354548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-2", "description":"POP2-HN-5 - fr-par-2 (0.4524€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012459919, "m3_water_usage":4.6623464e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_sxm_2_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-SXM-2-80G", "variant":"H100-SXM-2-80G - fr-par-2", "description":"H100-SXM-2-80G - fr-par-2 (0.1003€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":32}, "threads":32}, "ram":{"description":"240 GiB", "size":257698037760, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"2 x H100-SXM", "count":2, "type":"H100-SXM"}}, "instance":{"range":"GPU", "offer_id":"H100-SXM-2-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_sxm_4_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-SXM-4-80G", "variant":"H100-SXM-4-80G - fr-par-2", "description":"H100-SXM-4-80G - fr-par-2 (0.1935€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":193500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":64}, "threads":64}, "ram":{"description":"480 GiB", "size":515396075520, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"4 x H100-SXM", "count":4, "type":"H100-SXM"}}, "instance":{"range":"GPU", "offer_id":"H100-SXM-4-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_sxm_8_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-SXM-8-80G", "variant":"H100-SXM-8-80G - fr-par-2", "description":"H100-SXM-8-80G - fr-par-2 (0.3838€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":383800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 128", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":128}, "threads":128}, "ram":{"description":"960 GiB", "size":1030792151040, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x H100-SXM", "count":8, "type":"H100-SXM"}}, "instance":{"range":"GPU", "offer_id":"H100-SXM-8-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_1_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-1-80G", "variant":"H100-1-80G - fr-par-2", "description":"H100-1-80G - fr-par-2 (0.0455€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":45500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":24}, "threads":24}, "ram":{"description":"240 GiB", "size":257698037760, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"1 x H100-PCIe", "count":1, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-1-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_2_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-2-80G", "variant":"H100-2-80G - fr-par-2", "description":"H100-2-80G - fr-par-2 (0.091€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":48}, "threads":48}, "ram":{"description":"480 GiB", "size":515396075520, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"2 x H100-PCIe", "count":2, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-2-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_1_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-1-48G", "variant":"L40S-1-48G - fr-par-2", "description":"L40S-1-48G - fr-par-2 (0.023332€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":23332000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 8", "arch":"x64", "type":"", "virtual":{"count":8}, "threads":8}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L40S", "count":1, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-1-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_2_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-2-48G", "variant":"L40S-2-48G - fr-par-2", "description":"L40S-2-48G - fr-par-2 (0.046664€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":46664000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 16", "arch":"x64", "type":"", "virtual":{"count":16}, "threads":16}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L40S", "count":2, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-2-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_4_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-4-48G", "variant":"L40S-4-48G - fr-par-2", "description":"L40S-4-48G - fr-par-2 (0.093328€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":93328000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 32", "arch":"x64", "type":"", "virtual":{"count":32}, "threads":32}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L40S", "count":4, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-4-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_8_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-8-48G", "variant":"L40S-8-48G - fr-par-2", "description":"L40S-8-48G - fr-par-2 (0.186656€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":186656000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 64", "arch":"x64", "type":"", "virtual":{"count":64}, "threads":64}, "ram":{"description":"768 GiB", "size":824633720832, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L40S", "count":8, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-8-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-2", "description":"L4-1-24G - fr-par-2 (0.0125€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-2", "description":"L4-2-24G - fr-par-2 (0.025€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-2", "description":"L4-4-24G - fr-par-2 (0.05€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-2", "description":"L4-8-24G - fr-par-2 (0.1€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-2", "description":"RENDER-S Instance - fr-par-2 (1.221€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gpu_3070_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GPU-3070-S", "variant":"GPU-3070-S - fr-par-2", "description":"GPU-3070-S - fr-par-2 (0.98€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":980000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x RTX-3070", "count":1, "type":"RTX-3070"}}, "instance":{"range":"GPU", "offer_id":"GPU-3070-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":66}' headers: Content-Length: - - "44614" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "71103" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5303c33a-fc4d-4a7f-9977-db07c7b4b997 + - 5f347ec0-a18b-412d-b3b0-0807390ca22f status: 200 OK code: 200 - duration: 65.642556ms + duration: 114.501079ms - id: 1 request: proto: HTTP/1.1 @@ -62,11 +60,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-3 headers: User-Agent: - scaleway-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=fr-par-3 method: GET response: proto: HTTP/2.0 @@ -74,31 +78,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34583 + content_length: 36952 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-3", "description":"POP2-2C-8G - fr-par-3 (0.1103€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00091095007, "m3_water_usage":3.0167225e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-3", "description":"POP2-4C-16G - fr-par-3 (0.2205€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":220500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013344064, "m3_water_usage":3.019709e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-3", "description":"POP2-48C-192G - fr-par-3 (2.655€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":655000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010650447, "m3_water_usage":3.0854093e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-3", "description":"POP2-8C-32G - fr-par-3 (0.435€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":435000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021813193, "m3_water_usage":3.0256814e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-3", "description":"POP2-16C-64G - fr-par-3 (0.885€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":885000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038751448, "m3_water_usage":3.037627e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-3", "description":"POP2-32C-128G - fr-par-3 (1.77€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0072627957, "m3_water_usage":3.061518e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-3", "description":"POP2-64C-256G - fr-par-3 (3.525€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":525000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014038097, "m3_water_usage":3.1093002e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-3", "description":"PRO2-XXS - fr-par-3 (0.082€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":82000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00088632957, "m3_water_usage":3.0164195e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-3", "description":"PRO2-XS - fr-par-3 (0.164€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":164000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012851654, "m3_water_usage":3.0191025e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-3", "description":"PRO2-S - fr-par-3 (0.329€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":329000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020828373, "m3_water_usage":3.0244692e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-3", "description":"PRO2-M - fr-par-3 (0.658€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":658000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036781807, "m3_water_usage":3.0352023e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-3", "description":"PRO2-L - fr-par-3 (1.315€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":315000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0068688677, "m3_water_usage":3.0566685e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-3", "description":"GP1-XS Instance - fr-par-3 (0.137€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":137000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013456027, "m3_water_usage":2.3514449e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-3", "description":"GP1-S Instance - fr-par-3 (0.281€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":281000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023120437, "m3_water_usage":2.358873e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-3", "description":"GP1-M Instance - fr-par-3 (0.564€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":564000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0042449255, "m3_water_usage":2.373729e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-3", "description":"GP1-L Instance - fr-par-3 (1.139€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":139000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008110689, "m3_water_usage":2.4034408e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-3", "description":"GP1-XL Instance - fr-par-3 (2.462€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":462000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015588331, "m3_water_usage":2.4609136e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-3", "description":"POP2-HM-2C-16G - fr-par-3 (0.1545€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":154500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012284311, "m3_water_usage":3.017737e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-3", "description":"POP2-HM-4C-32G - fr-par-3 (0.309€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":309000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019693687, "m3_water_usage":3.0217382e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-3", "description":"POP2-HM-8C-64G - fr-par-3 (0.618€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":618000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034512435, "m3_water_usage":3.02974e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-3", "description":"POP2-HM-16C-128G - fr-par-3 (1.236€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":236000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006414993, "m3_water_usage":3.0457443e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-3", "description":"POP2-HM-32C-256G - fr-par-3 (2.472€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":472000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012342493, "m3_water_usage":3.0777525e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-3", "description":"POP2-HM-48C-384G - fr-par-3 (3.705€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":705000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018269992, "m3_water_usage":3.1097606e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-3", "description":"POP2-HM-64C-512G - fr-par-3 (4.944€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":4, "nanos":944000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02419749, "m3_water_usage":3.1417688e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-3", "description":"POP2-HC-2C-4G - fr-par-3 (0.0798€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":79800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007060738, "m3_water_usage":3.0152776e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-3", "description":"POP2-HC-4C-8G - fr-par-3 (0.1596€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":159600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000924654, "m3_water_usage":3.016819e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-3", "description":"POP2-HC-8C-16G - fr-par-3 (0.3192€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":319200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013618143, "m3_water_usage":3.0199022e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-3", "description":"POP2-HC-16C-32G - fr-par-3 (0.6384€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":638400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0022361348, "m3_water_usage":3.0260683e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-3", "description":"POP2-HC-32C-64G - fr-par-3 (1.2768€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":276800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0039847763, "m3_water_usage":3.0384e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-3", "description":"POP2-HC-48C-96G - fr-par-3 (1.905€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":905000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0057334173, "m3_water_usage":3.0507323e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-3", "description":"POP2-HC-64C-128G - fr-par-3 (2.5536€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":553600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007482059, "m3_water_usage":3.0630645e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-3", "description":"POP2-HN-10 - fr-par-3 (1.0896€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":89600000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000924654, "m3_water_usage":3.016819e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-3", "description":"POP2-HN-3 - fr-par-3 (0.3831€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":383100000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007060738, "m3_water_usage":3.0152776e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-3", "description":"POP2-HN-5 - fr-par-3 (0.6786€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":678600000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000924654, "m3_water_usage":3.016819e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":34}' headers: Content-Length: - - "34583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "36952" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 81e3d6c9-b375-4a1d-aaab-e26eaa0242c0 + - 3597ee6c-4e2c-44ef-81de-9a578fb9478a status: 200 OK code: 200 - duration: 33.692255ms + duration: 27.772869ms - id: 2 request: proto: HTTP/1.1 @@ -111,11 +107,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - nl-ams-3 headers: User-Agent: - scaleway-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=nl-ams-3 method: GET response: proto: HTTP/2.0 @@ -123,31 +125,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63436 + content_length: 33493 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - nl-ams-3", "description":"POP2-2C-8G - nl-ams-3 (0.0735€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031964844}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - nl-ams-3", "description":"POP2-4C-16G - nl-ams-3 (0.147€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003978665}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - nl-ams-3", "description":"POP2-48C-192G - nl-ams-3 (1.77€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021186637}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - nl-ams-3", "description":"POP2-8C-32G - nl-ams-3 (0.29€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005543026}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - nl-ams-3", "description":"POP2-16C-64G - nl-ams-3 (0.59€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0086717475}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - nl-ams-3", "description":"POP2-32C-128G - nl-ams-3 (1.18€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014929192}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - nl-ams-3", "description":"POP2-64C-256G - nl-ams-3 (2.35€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02744408}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - nl-ams-3", "description":"PRO2-XXS - nl-ams-3 (0.055€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003135455}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - nl-ams-3", "description":"PRO2-XS - nl-ams-3 (0.11€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038566063}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - nl-ams-3", "description":"PRO2-S - nl-ams-3 (0.219€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005298909}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - nl-ams-3", "description":"PRO2-M - nl-ams-3 (0.438€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008183513}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - nl-ams-3", "description":"PRO2-L - nl-ams-3 (0.877€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013952723}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - nl-ams-3", "description":"PLAY2-PICO - nl-ams-3 (0.014€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025745307}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - nl-ams-3", "description":"PLAY2-NANO - nl-ams-3 (0.027€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0027347575}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - nl-ams-3", "description":"PLAY2-MICRO - nl-ams-3 (0.054€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0030552107}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - nl-ams-3", "description":"POP2-HM-2C-16G - nl-ams-3 (0.103€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036358447}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - nl-ams-3", "description":"POP2-HM-4C-32G - nl-ams-3 (0.206€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0048573855}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - nl-ams-3", "description":"POP2-HM-8C-64G - nl-ams-3 (0.412€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073004668}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - nl-ams-3", "description":"POP2-HM-16C-128G - nl-ams-3 (0.824€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01218663}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - nl-ams-3", "description":"POP2-HM-32C-256G - nl-ams-3 (1.648€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021958956}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - nl-ams-3", "description":"POP2-HM-48C-384G - nl-ams-3 (2.47€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03173128}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - nl-ams-3", "description":"POP2-HM-64C-512G - nl-ams-3 (3.296€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.04150361}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - nl-ams-3", "description":"POP2-HC-2C-4G - nl-ams-3 (0.0532€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028180508}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - nl-ams-3", "description":"POP2-HC-4C-8G - nl-ams-3 (0.1064€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032217975}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - nl-ams-3", "description":"POP2-HC-8C-16G - nl-ams-3 (0.2128€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004029291}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - nl-ams-3", "description":"POP2-HC-16C-32G - nl-ams-3 (0.4256€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005644278}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - nl-ams-3", "description":"POP2-HC-32C-64G - nl-ams-3 (0.8512€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008874252}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - nl-ams-3", "description":"POP2-HC-48C-96G - nl-ams-3 (1.27€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012104226}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - nl-ams-3", "description":"POP2-HC-64C-128G - nl-ams-3 (1.7024€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0153342}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - nl-ams-3", "description":"POP2-HN-10 - nl-ams-3 (0.7264€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032217975}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - nl-ams-3", "description":"POP2-HN-3 - nl-ams-3 (0.2554€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028180508}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - nl-ams-3", "description":"POP2-HN-5 - nl-ams-3 (0.4524€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032217975}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":32}' headers: Content-Length: - - "63436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "33493" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9a2e3a98-c00a-442e-b640-de9783d1476d + - 8dce4918-c23c-4954-9f0b-1f4b1792aba1 status: 200 OK code: 200 - duration: 24.736593ms + duration: 37.099838ms - id: 3 request: proto: HTTP/1.1 @@ -160,11 +154,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - pl-waw-2 headers: User-Agent: - scaleway-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-2 + 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 @@ -172,31 +172,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 73161 + content_length: 54571 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - pl-waw-2", "description":"POP2-2C-8G - pl-waw-2 (0.0735€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0030845914}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - pl-waw-2", "description":"POP2-4C-16G - pl-waw-2 (0.147€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0045521464}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - pl-waw-2", "description":"POP2-48C-192G - pl-waw-2 (1.77€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.036838356}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - pl-waw-2", "description":"POP2-8C-32G - pl-waw-2 (0.29€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007487256}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - pl-waw-2", "description":"POP2-16C-64G - pl-waw-2 (0.59€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013357476}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - pl-waw-2", "description":"POP2-32C-128G - pl-waw-2 (1.18€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.025097916}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - pl-waw-2", "description":"POP2-64C-256G - pl-waw-2 (2.35€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.048578795}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - pl-waw-2", "description":"PRO2-XXS - pl-waw-2 (0.055€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029539997}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - pl-waw-2", "description":"PRO2-XS - pl-waw-2 (0.11€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004290963}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - pl-waw-2", "description":"PRO2-S - pl-waw-2 (0.219€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0069648894}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - pl-waw-2", "description":"PRO2-M - pl-waw-2 (0.438€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012312743}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - pl-waw-2", "description":"PRO2-L - pl-waw-2 (0.877€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.023008449}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - pl-waw-2", "description":"GP1-XS Instance - pl-waw-2 (0.091€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004821113}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - pl-waw-2", "description":"GP1-S Instance - pl-waw-2 (0.187€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00838453}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - pl-waw-2", "description":"GP1-M Instance - pl-waw-2 (0.376€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015511366}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - pl-waw-2", "description":"GP1-L Instance - pl-waw-2 (0.759€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.029765036}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - pl-waw-2", "description":"GP1-XL Instance - pl-waw-2 (1.641€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.057336263}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - pl-waw-2", "description":"STARDUST1-S - pl-waw-2 (0.00015€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013649596}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - pl-waw-2", "description":"DEV1-S Instance - pl-waw-2 (0.0088€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016878293}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - pl-waw-2", "description":"DEV1-M Instance - pl-waw-2 (0.0198€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0022492055}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - pl-waw-2", "description":"DEV1-L Instance - pl-waw-2 (0.042€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032875945}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - pl-waw-2", "description":"DEV1-XL Instance - pl-waw-2 (0.063799999€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0042416207}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - pl-waw-2", "description":"PLAY2-PICO - pl-waw-2 (0.014€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018977058}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - pl-waw-2", "description":"PLAY2-NANO - pl-waw-2 (0.027€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021783754}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - pl-waw-2", "description":"PLAY2-MICRO - pl-waw-2 (0.054€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0027397145}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - pl-waw-2", "description":"POP2-HM-2C-16G - pl-waw-2 (0.103€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0037568125}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - pl-waw-2", "description":"POP2-HM-4C-32G - pl-waw-2 (0.206€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005896589}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - pl-waw-2", "description":"POP2-HM-8C-64G - pl-waw-2 (0.412€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010176142}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - pl-waw-2", "description":"POP2-HM-16C-128G - pl-waw-2 (0.824€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018735247}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - pl-waw-2", "description":"POP2-HM-32C-256G - pl-waw-2 (1.648€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.035853457}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - pl-waw-2", "description":"POP2-HM-48C-384G - pl-waw-2 (2.47€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.05297167}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - pl-waw-2", "description":"POP2-HM-64C-512G - pl-waw-2 (3.296€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.07008988}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - pl-waw-2", "description":"POP2-HC-2C-4G - pl-waw-2 (0.0532€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023745603}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - pl-waw-2", "description":"POP2-HC-4C-8G - pl-waw-2 (0.1064€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031320846}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - pl-waw-2", "description":"POP2-HC-8C-16G - pl-waw-2 (0.2128€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0046471325}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - pl-waw-2", "description":"POP2-HC-16C-32G - pl-waw-2 (0.4256€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007677229}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - pl-waw-2", "description":"POP2-HC-32C-64G - pl-waw-2 (0.8512€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0137374215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - pl-waw-2", "description":"POP2-HC-48C-96G - pl-waw-2 (1.27€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.019797614}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - pl-waw-2", "description":"POP2-HC-64C-128G - pl-waw-2 (1.7024€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.025857806}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - pl-waw-2", "description":"POP2-HN-10 - pl-waw-2 (0.7264€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031320846}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - pl-waw-2", "description":"POP2-HN-3 - pl-waw-2 (0.2554€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023745603}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - pl-waw-2", "description":"POP2-HN-5 - pl-waw-2 (0.4524€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031320846}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_1_80g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-1-80G", "variant":"H100-1-80G - pl-waw-2", "description":"H100-1-80G - pl-waw-2 (0.0455€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":45500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":24}, "threads":24}, "ram":{"description":"240 GiB", "size":257698037760, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"1 x H100-PCIe", "count":1, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-1-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_2_80g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-2-80G", "variant":"H100-2-80G - pl-waw-2", "description":"H100-2-80G - pl-waw-2 (0.091€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":48}, "threads":48}, "ram":{"description":"480 GiB", "size":515396075520, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"2 x H100-PCIe", "count":2, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-2-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_1_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-1-48G", "variant":"L40S-1-48G - pl-waw-2", "description":"L40S-1-48G - pl-waw-2 (0.023332€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":23332000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 8", "arch":"x64", "type":"", "virtual":{"count":8}, "threads":8}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L40S", "count":1, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-1-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_2_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-2-48G", "variant":"L40S-2-48G - pl-waw-2", "description":"L40S-2-48G - pl-waw-2 (0.046664€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":46664000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 16", "arch":"x64", "type":"", "virtual":{"count":16}, "threads":16}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L40S", "count":2, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-2-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_4_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-4-48G", "variant":"L40S-4-48G - pl-waw-2", "description":"L40S-4-48G - pl-waw-2 (0.093328€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":93328000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 32", "arch":"x64", "type":"", "virtual":{"count":32}, "threads":32}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L40S", "count":4, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-4-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_8_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-8-48G", "variant":"L40S-8-48G - pl-waw-2", "description":"L40S-8-48G - pl-waw-2 (0.186656€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":186656000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 64", "arch":"x64", "type":"", "virtual":{"count":64}, "threads":64}, "ram":{"description":"768 GiB", "size":824633720832, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L40S", "count":8, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-8-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - pl-waw-2", "description":"L4-1-24G - pl-waw-2 (0.0125€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - pl-waw-2", "description":"L4-2-24G - pl-waw-2 (0.025€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - pl-waw-2", "description":"L4-4-24G - pl-waw-2 (0.05€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - pl-waw-2", "description":"L4-8-24G - pl-waw-2 (0.1€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}], "total_count":52}' headers: Content-Length: - - "73161" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "54571" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a9e3d258-619d-4db6-8ebd-de0fca40af7f + - ae4af591-eae3-4b71-a4d3-b596e64c7c3b status: 200 OK code: 200 - duration: 38.148606ms + duration: 32.614541ms - id: 4 request: proto: HTTP/1.1 @@ -209,11 +201,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-1 headers: User-Agent: - scaleway-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-3 + 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 @@ -221,31 +219,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38016 + content_length: 61679 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-1", "description":"POP2-2C-8G - fr-par-1 (0.0735€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00072178466, "m3_water_usage":4.815502e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-1", "description":"POP2-2C-8G-WIN - fr-par-1 (0.1823€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007688888, "m3_water_usage":5.2443365e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-1", "description":"POP2-4C-16G - fr-par-1 (0.147€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001145898, "m3_water_usage":6.159374e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-1", "description":"POP2-4C-16G-WIN - fr-par-1 (0.3637€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012401063, "m3_water_usage":7.017042e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-1", "description":"POP2-48C-192G - fr-par-1 (1.77€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010476393, "m3_water_usage":3.5724548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-1", "description":"POP2-8C-32G - fr-par-1 (0.29€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019941248, "m3_water_usage":8.847117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-1", "description":"POP2-8C-32G-WIN - fr-par-1 (0.7233€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021825414, "m3_water_usage":1.05624544e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-1", "description":"POP2-16C-64G - fr-par-1 (0.59€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036905783, "m3_water_usage":1.4222603e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-1", "description":"POP2-16C-64G-WIN - fr-par-1 (1.4567€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004067411, "m3_water_usage":1.7653278e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-1", "description":"POP2-32C-128G - fr-par-1 (1.18€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0070834854, "m3_water_usage":2.4973576e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-1", "description":"POP2-32C-128G-WIN - fr-par-1 (2.9133€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007837151, "m3_water_usage":3.1834924e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-1", "description":"POP2-64C-256G - fr-par-1 (2.35€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0138693, "m3_water_usage":4.647552e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-1", "description":"PRO2-XXS - fr-par-1 (0.055€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006970975, "m3_water_usage":4.6791055e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-1", "description":"PRO2-XS - fr-par-1 (0.11€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010965237, "m3_water_usage":5.88658e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-1", "description":"PRO2-S - fr-par-1 (0.219€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018953761, "m3_water_usage":8.3015294e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-1", "description":"PRO2-M - fr-par-1 (0.438€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034930808, "m3_water_usage":1.3131428e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-1", "description":"PRO2-L - fr-par-1 (0.877€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066884905, "m3_water_usage":2.2791227e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-1", "description":"GP1-XS Instance - fr-par-1 (0.091€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011995973, "m3_water_usage":6.042756e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-1", "description":"GP1-S Instance - fr-par-1 (0.187€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021676724, "m3_water_usage":9.385356e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-1", "description":"GP1-M Instance - fr-par-1 (0.376€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0041038226, "m3_water_usage":1.6070554e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-1", "description":"GP1-L Instance - fr-par-1 (0.759€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007976123, "m3_water_usage":2.9440952e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-1", "description":"GP1-XL Instance - fr-par-1 (1.641€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015466409, "m3_water_usage":5.530364e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-1", "description":"COPARM1-2C-8G - fr-par-1 (0.0426€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00069850276, "m3_water_usage":4.6164647e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-1", "description":"COPARM1-4C-16G - fr-par-1 (0.0857€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010853942, "m3_water_usage":5.5987208e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-1", "description":"COPARM1-8C-32G - fr-par-1 (0.1724€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001859177, "m3_water_usage":7.563233e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-1", "description":"COPARM1-16C-64G - fr-par-1 (0.3454€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034067426, "m3_water_usage":1.1492257e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-1", "description":"COPARM1-32C-128G - fr-par-1 (0.6935€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006501874, "m3_water_usage":1.9350306e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - fr-par-1", "description":"STARDUST1-S - fr-par-1 (0.00015€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0002778983, "m3_water_usage":2.542258e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-1", "description":"DEV1-S Instance - fr-par-1 (0.0088€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00036396398, "m3_water_usage":2.847243e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-1", "description":"DEV1-M Instance - fr-par-1 (0.0198€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00051360304, "m3_water_usage":3.3775283e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-1", "description":"DEV1-L Instance - fr-par-1 (0.042€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00079038885, "m3_water_usage":4.358414e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-1", "description":"DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010446823, "m3_water_usage":5.2596153e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-1", "description":"PLAY2-PICO - fr-par-1 (0.014€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0003949738, "m3_water_usage":3.707793e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-1", "description":"PLAY2-NANO - fr-par-1 (0.027€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00049227633, "m3_water_usage":3.9439552e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-1", "description":"PLAY2-MICRO - fr-par-1 (0.054€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00068688137, "m3_water_usage":4.4162803e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-1", "description":"POP2-HM-2C-16G - fr-par-1 (0.103€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010394889, "m3_water_usage":5.2720925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-1", "description":"POP2-HM-4C-32G - fr-par-1 (0.206€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017813066, "m3_water_usage":7.072554e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-1", "description":"POP2-HM-8C-64G - fr-par-1 (0.412€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003264942, "m3_water_usage":1.0673478e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-1", "description":"POP2-HM-16C-128G - fr-par-1 (0.824€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062322128, "m3_water_usage":1.7875325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-1", "description":"POP2-HM-32C-256G - fr-par-1 (1.648€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012166753, "m3_water_usage":3.227902e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-1", "description":"POP2-HM-48C-384G - fr-par-1 (2.47€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018101295, "m3_water_usage":4.6682715e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-1", "description":"POP2-HM-64C-512G - fr-par-1 (3.296€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.024035836, "m3_water_usage":6.108641e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-1", "description":"POP2-HC-2C-4G - fr-par-1 (0.0532€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-1", "description":"POP2-HC-4C-8G - fr-par-1 (0.1064€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-1", "description":"POP2-HC-8C-16G - fr-par-1 (0.2128€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011733484, "m3_water_usage":6.246355e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-1", "description":"POP2-HC-16C-32G - fr-par-1 (0.4256€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020490256, "m3_water_usage":9.021079e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-1", "description":"POP2-HC-32C-64G - fr-par-1 (0.8512€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038003798, "m3_water_usage":1.4570527e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-1", "description":"POP2-HC-48C-96G - fr-par-1 (1.27€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005551734, "m3_water_usage":2.0119975e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-1", "description":"POP2-HC-64C-128G - fr-par-1 (1.7024€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073030884, "m3_water_usage":2.5669422e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-1", "description":"POP2-HN-10 - fr-par-1 (0.7264€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-1", "description":"POP2-HN-3 - fr-par-1 (0.2554€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-1", "description":"POP2-HN-5 - fr-par-1 (0.4524€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-1", "description":"L4-1-24G - fr-par-1 (0.0125€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-1", "description":"L4-2-24G - fr-par-1 (0.025€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-1", "description":"L4-4-24G - fr-par-1 (0.05€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-1", "description":"L4-8-24G - fr-par-1 (0.1€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-1", "description":"RENDER-S Instance - fr-par-1 (1.221€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":57}' headers: Content-Length: - - "38016" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "61679" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cc64f9c5-073c-45f2-b706-9ead2bf107d8 + - 3c15936a-7239-45b4-af2e-b881fc397c4b status: 200 OK code: 200 - duration: 24.664358ms + duration: 27.038265ms - id: 5 request: proto: HTTP/1.1 @@ -258,7 +248,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - nl-ams-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -270,31 +266,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 52626 + content_length: 51183 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - nl-ams-1", "description":"POP2-2C-8G - nl-ams-1 (0.0735€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020151848, "m3_water_usage":0.000002740882}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - nl-ams-1", "description":"POP2-4C-16G - nl-ams-1 (0.147€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028653652, "m3_water_usage":0.000004010094}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - nl-ams-1", "description":"POP2-48C-192G - nl-ams-1 (1.77€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021569334, "m3_water_usage":0.00003193276}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - nl-ams-1", "description":"POP2-8C-32G - nl-ams-1 (0.29€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004565726, "m3_water_usage":0.0000065485183}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - nl-ams-1", "description":"POP2-16C-64G - nl-ams-1 (0.59€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007966448, "m3_water_usage":0.000011625366}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - nl-ams-1", "description":"POP2-32C-128G - nl-ams-1 (1.18€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014767891, "m3_water_usage":0.000021779062}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - nl-ams-1", "description":"POP2-64C-256G - nl-ams-1 (2.35€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.028370777, "m3_water_usage":0.000042086453}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - nl-ams-1", "description":"PRO2-XXS - nl-ams-1 (0.055€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001947254, "m3_water_usage":0.0000026120629}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - nl-ams-1", "description":"PRO2-XS - nl-ams-1 (0.11€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0027295032, "m3_water_usage":0.0000037524558}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - nl-ams-1", "description":"PRO2-S - nl-ams-1 (0.219€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004294002, "m3_water_usage":0.0000060332413}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - nl-ams-1", "description":"PRO2-M - nl-ams-1 (0.438€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0074229995, "m3_water_usage":0.000010594813}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - nl-ams-1", "description":"PRO2-L - nl-ams-1 (0.877€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0136809945, "m3_water_usage":0.000019717956}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - nl-ams-1", "description":"GP1-XS Instance - nl-ams-1 (0.091€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029339422, "m3_water_usage":0.0000043015316}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - nl-ams-1", "description":"GP1-S Instance - nl-ams-1 (0.187€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00496177, "m3_water_usage":0.000007458431}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - nl-ams-1", "description":"GP1-M Instance - nl-ams-1 (0.376€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.009017426, "m3_water_usage":0.000013772229}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - nl-ams-1", "description":"GP1-L Instance - nl-ams-1 (0.759€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.017128736, "m3_water_usage":0.000026399826}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - nl-ams-1", "description":"GP1-XL Instance - nl-ams-1 (1.641€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03281864, "m3_water_usage":0.000050825696}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - nl-ams-1", "description":"COPARM1-2C-8G - nl-ams-1 (0.0426€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019178725, "m3_water_usage":0.0000024682754}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - nl-ams-1", "description":"COPARM1-4C-16G - nl-ams-1 (0.0857€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0026161827, "m3_water_usage":0.0000033959616}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - nl-ams-1", "description":"COPARM1-8C-32G - nl-ams-1 (0.1724€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004012803, "m3_water_usage":0.000005251334}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - nl-ams-1", "description":"COPARM1-16C-64G - nl-ams-1 (0.3454€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006806044, "m3_water_usage":0.000008962079}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - nl-ams-1", "description":"COPARM1-32C-128G - nl-ams-1 (0.6935€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012392526, "m3_water_usage":0.000016383568}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - nl-ams-1", "description":"STARDUST1-S - nl-ams-1 (0.00015€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00093354017, "m3_water_usage":0.000001236451}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - nl-ams-1", "description":"DEV1-S Instance - nl-ams-1 (0.0088€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011162997, "m3_water_usage":0.0000015244923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - nl-ams-1", "description":"DEV1-M Instance - nl-ams-1 (0.0198€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0014340627, "m3_water_usage":0.0000020253174}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - nl-ams-1", "description":"DEV1-L Instance - nl-ams-1 (0.042€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.002021833, "m3_water_usage":0.0000029517096}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - nl-ams-1", "description":"DEV1-XL Instance - nl-ams-1 (0.063799999€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025618474, "m3_water_usage":0.000003802844}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - nl-ams-1", "description":"PLAY2-PICO - nl-ams-1 (0.014€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013371811, "m3_water_usage":0.0000016947124}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - nl-ams-1", "description":"PLAY2-NANO - nl-ams-1 (0.027€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015093576, "m3_water_usage":0.0000019177546}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - nl-ams-1", "description":"PLAY2-MICRO - nl-ams-1 (0.054€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018537106, "m3_water_usage":0.0000023638393}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - nl-ams-1", "description":"POP2-HM-2C-16G - nl-ams-1 (0.103€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0024776487, "m3_water_usage":0.0000031721063}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - nl-ams-1", "description":"POP2-HM-4C-32G - nl-ams-1 (0.206€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0037902927, "m3_water_usage":0.0000048725424}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - nl-ams-1", "description":"POP2-HM-8C-64G - nl-ams-1 (0.412€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006415581, "m3_water_usage":0.000008273415}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - nl-ams-1", "description":"POP2-HM-16C-128G - nl-ams-1 (0.824€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011666157, "m3_water_usage":0.000015075159}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - nl-ams-1", "description":"POP2-HM-32C-256G - nl-ams-1 (1.648€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02216731, "m3_water_usage":0.000028678649}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - nl-ams-1", "description":"POP2-HM-48C-384G - nl-ams-1 (2.47€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.032668464, "m3_water_usage":0.00004228214}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - nl-ams-1", "description":"POP2-HM-64C-512G - nl-ams-1 (3.296€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.043169614, "m3_water_usage":0.00005588563}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - nl-ams-1", "description":"POP2-HC-2C-4G - nl-ams-1 (0.0532€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016038516, "m3_water_usage":0.0000021268133}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - nl-ams-1", "description":"POP2-HC-4C-8G - nl-ams-1 (0.1064€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020426987, "m3_water_usage":0.0000027819565}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - nl-ams-1", "description":"POP2-HC-8C-16G - nl-ams-1 (0.2128€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029203927, "m3_water_usage":0.0000040922428}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - nl-ams-1", "description":"POP2-HC-16C-32G - nl-ams-1 (0.4256€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0046757804, "m3_water_usage":0.000006712816}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - nl-ams-1", "description":"POP2-HC-32C-64G - nl-ams-1 (0.8512€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008186556, "m3_water_usage":0.000011953961}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - nl-ams-1", "description":"POP2-HC-48C-96G - nl-ams-1 (1.27€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011697332, "m3_water_usage":0.000017195107}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - nl-ams-1", "description":"POP2-HC-64C-128G - nl-ams-1 (1.7024€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015208108, "m3_water_usage":0.000022436252}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - nl-ams-1", "description":"POP2-HN-10 - nl-ams-1 (0.7264€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020426987, "m3_water_usage":0.0000027819565}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - nl-ams-1", "description":"POP2-HN-3 - nl-ams-1 (0.2554€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016038516, "m3_water_usage":0.0000021268133}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - nl-ams-1", "description":"POP2-HN-5 - nl-ams-1 (0.4524€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020426987, "m3_water_usage":0.0000027819565}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":47}' headers: Content-Length: - - "52626" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "51183" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 937c717d-1aee-48cb-b133-e37a685184ca + - 910cef6f-e939-4cac-bed8-77cee80571e0 status: 200 OK code: 200 - duration: 33.550409ms + duration: 40.981255ms - id: 6 request: proto: HTTP/1.1 @@ -307,11 +295,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - nl-ams-2 headers: User-Agent: - scaleway-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-2 method: GET response: proto: HTTP/2.0 @@ -319,31 +313,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34584 + content_length: 43383 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - nl-ams-2", "description":"POP2-2C-8G - nl-ams-2 (0.0735€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020856473}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - nl-ams-2", "description":"POP2-4C-16G - nl-ams-2 (0.147€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029433833}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - nl-ams-2", "description":"POP2-48C-192G - nl-ams-2 (1.77€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021813573}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - nl-ams-2", "description":"POP2-8C-32G - nl-ams-2 (0.29€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004658855}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - nl-ams-2", "description":"POP2-16C-64G - nl-ams-2 (0.59€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0080897985}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - nl-ams-2", "description":"POP2-32C-128G - nl-ams-2 (1.18€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014951686}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - nl-ams-2", "description":"POP2-64C-256G - nl-ams-2 (2.35€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.028675461}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - nl-ams-2", "description":"PRO2-XXS - nl-ams-2 (0.055€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020169495}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - nl-ams-2", "description":"PRO2-XS - nl-ams-2 (0.11€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028059874}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - nl-ams-2", "description":"PRO2-S - nl-ams-2 (0.219€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0043840636}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - nl-ams-2", "description":"PRO2-M - nl-ams-2 (0.438€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0075402157}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - nl-ams-2", "description":"PRO2-L - nl-ams-2 (0.877€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01385252}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - nl-ams-2", "description":"GP1-XS Instance - nl-ams-2 (0.091€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0030016627}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - nl-ams-2", "description":"GP1-S Instance - nl-ams-2 (0.187€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005048283}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - nl-ams-2", "description":"GP1-M Instance - nl-ams-2 (0.376€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.009141524}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - nl-ams-2", "description":"GP1-L Instance - nl-ams-2 (0.759€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.017328005}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - nl-ams-2", "description":"GP1-XL Instance - nl-ams-2 (1.641€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.033163317}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - nl-ams-2", "description":"DEV1-S Instance - nl-ams-2 (0.0088€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001160269}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - nl-ams-2", "description":"DEV1-M Instance - nl-ams-2 (0.0198€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0014810135}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - nl-ams-2", "description":"DEV1-L Instance - nl-ams-2 (0.042€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020742984}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - nl-ams-2", "description":"DEV1-XL Instance - nl-ams-2 (0.063799999€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0026193797}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - nl-ams-2", "description":"PLAY2-PICO - nl-ams-2 (0.014€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0014014157}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - nl-ams-2", "description":"PLAY2-NANO - nl-ams-2 (0.027€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015749199}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - nl-ams-2", "description":"PLAY2-MICRO - nl-ams-2 (0.054€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019219284}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - nl-ams-2", "description":"POP2-HM-2C-16G - nl-ams-2 (0.103€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.002550678}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - nl-ams-2", "description":"POP2-HM-4C-32G - nl-ams-2 (0.206€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038734446}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - nl-ams-2", "description":"POP2-HM-8C-64G - nl-ams-2 (0.412€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006518978}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - nl-ams-2", "description":"POP2-HM-16C-128G - nl-ams-2 (0.824€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011810045}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - nl-ams-2", "description":"POP2-HM-32C-256G - nl-ams-2 (1.648€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.022392178}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - nl-ams-2", "description":"POP2-HM-48C-384G - nl-ams-2 (2.47€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03297431}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - nl-ams-2", "description":"POP2-HM-64C-512G - nl-ams-2 (3.296€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.043556444}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - nl-ams-2", "description":"POP2-HC-2C-4G - nl-ams-2 (0.0532€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016706584}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - nl-ams-2", "description":"POP2-HC-4C-8G - nl-ams-2 (0.1064€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021134054}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - nl-ams-2", "description":"POP2-HC-8C-16G - nl-ams-2 (0.2128€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029988994}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - nl-ams-2", "description":"POP2-HC-16C-32G - nl-ams-2 (0.4256€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004769888}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - nl-ams-2", "description":"POP2-HC-32C-64G - nl-ams-2 (0.8512€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008311864}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - nl-ams-2", "description":"POP2-HC-48C-96G - nl-ams-2 (1.27€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01185384}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - nl-ams-2", "description":"POP2-HC-64C-128G - nl-ams-2 (1.7024€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015395816}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - nl-ams-2", "description":"POP2-HN-10 - nl-ams-2 (0.7264€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021134054}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - nl-ams-2", "description":"POP2-HN-3 - nl-ams-2 (0.2554€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016706584}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - nl-ams-2", "description":"POP2-HN-5 - nl-ams-2 (0.4524€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021134054}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":41}' headers: Content-Length: - - "34584" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "43383" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b84bf7ec-66d8-408c-a9dd-e3b086532937 + - 789f727b-d547-4b1e-98d1-b2e4fbefabb0 status: 200 OK code: 200 - duration: 15.248073ms + duration: 22.488989ms - id: 7 request: proto: HTTP/1.1 @@ -356,7 +342,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - pl-waw-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -368,31 +360,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44600 + content_length: 43368 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - pl-waw-1", "description":"POP2-2C-8G - pl-waw-1 (0.0735€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0061734696}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - pl-waw-1", "description":"POP2-4C-16G - pl-waw-1 (0.147€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007879786}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - pl-waw-1", "description":"POP2-48C-192G - pl-waw-1 (1.77€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.04541874}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - pl-waw-1", "description":"POP2-8C-32G - pl-waw-1 (0.29€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011292418}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - pl-waw-1", "description":"POP2-16C-64G - pl-waw-1 (0.59€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018117683}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - pl-waw-1", "description":"POP2-32C-128G - pl-waw-1 (1.18€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03176821}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - pl-waw-1", "description":"POP2-64C-256G - pl-waw-1 (2.35€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.05906927}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - pl-waw-1", "description":"PRO2-XXS - pl-waw-1 (0.055€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0060186447}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - pl-waw-1", "description":"PRO2-XS - pl-waw-1 (0.11€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007570136}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - pl-waw-1", "description":"PRO2-S - pl-waw-1 (0.219€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010673119}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - pl-waw-1", "description":"PRO2-M - pl-waw-1 (0.438€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.016879084}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - pl-waw-1", "description":"PRO2-L - pl-waw-1 (0.877€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.029291015}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - pl-waw-1", "description":"GP1-XS Instance - pl-waw-1 (0.091€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0076317387}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - pl-waw-1", "description":"GP1-S Instance - pl-waw-1 (0.187€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011789025}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - pl-waw-1", "description":"GP1-M Instance - pl-waw-1 (0.376€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.020103598}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - pl-waw-1", "description":"GP1-L Instance - pl-waw-1 (0.759€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03673274}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - pl-waw-1", "description":"GP1-XL Instance - pl-waw-1 (1.641€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0688989}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - pl-waw-1", "description":"DEV1-S Instance - pl-waw-1 (0.0088€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036329427}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - pl-waw-1", "description":"DEV1-M Instance - pl-waw-1 (0.0198€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004288533}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - pl-waw-1", "description":"DEV1-L Instance - pl-waw-1 (0.042€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005501193}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - pl-waw-1", "description":"DEV1-XL Instance - pl-waw-1 (0.063799999€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066153323}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - pl-waw-1", "description":"PLAY2-PICO - pl-waw-1 (0.014€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0047897813}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - pl-waw-1", "description":"PLAY2-NANO - pl-waw-1 (0.027€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005112409}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - pl-waw-1", "description":"PLAY2-MICRO - pl-waw-1 (0.054€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0057576643}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - pl-waw-1", "description":"POP2-HM-2C-16G - pl-waw-1 (0.103€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0069268118}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - pl-waw-1", "description":"POP2-HM-4C-32G - pl-waw-1 (0.206€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.009386471}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - pl-waw-1", "description":"POP2-HM-8C-64G - pl-waw-1 (0.412€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014305787}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - pl-waw-1", "description":"POP2-HM-16C-128G - pl-waw-1 (0.824€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02414442}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - pl-waw-1", "description":"POP2-HM-32C-256G - pl-waw-1 (1.648€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.043821685}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - pl-waw-1", "description":"POP2-HM-48C-384G - pl-waw-1 (2.47€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.06349895}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - pl-waw-1", "description":"POP2-HM-64C-512G - pl-waw-1 (3.296€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.08317622}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - pl-waw-1", "description":"POP2-HC-2C-4G - pl-waw-1 (0.0532€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0053479215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - pl-waw-1", "description":"POP2-HC-4C-8G - pl-waw-1 (0.1064€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062286896}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - pl-waw-1", "description":"POP2-HC-8C-16G - pl-waw-1 (0.2128€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007990226}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - pl-waw-1", "description":"POP2-HC-16C-32G - pl-waw-1 (0.4256€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011513298}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - pl-waw-1", "description":"POP2-HC-32C-64G - pl-waw-1 (0.8512€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018559443}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - pl-waw-1", "description":"POP2-HC-48C-96G - pl-waw-1 (1.27€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.025605587}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - pl-waw-1", "description":"POP2-HC-64C-128G - pl-waw-1 (1.7024€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03265173}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - pl-waw-1", "description":"POP2-HN-10 - pl-waw-1 (0.7264€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062286896}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - pl-waw-1", "description":"POP2-HN-3 - pl-waw-1 (0.2554€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0053479215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - pl-waw-1", "description":"POP2-HN-5 - pl-waw-1 (0.4524€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062286896}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":41}' headers: Content-Length: - - "44600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "43368" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d508f608-55c1-4f16-831f-88f6aabd4c12 + - 82233eb2-4b2f-4841-93d9-72c2ba1ff061 status: 200 OK code: 200 - duration: 26.576982ms + duration: 29.781104ms - id: 8 request: proto: HTTP/1.1 @@ -405,11 +389,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - pl-waw-3 headers: User-Agent: - scaleway-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=pl-waw-3 method: GET response: proto: HTTP/2.0 @@ -417,31 +407,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 56175 + content_length: 33495 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - pl-waw-3", "description":"POP2-2C-8G - pl-waw-3 (0.0735€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031511723}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - pl-waw-3", "description":"POP2-4C-16G - pl-waw-3 (0.147€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0048574884}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - pl-waw-3", "description":"POP2-48C-192G - pl-waw-3 (1.77€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.042396445}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - pl-waw-3", "description":"POP2-8C-32G - pl-waw-3 (0.29€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008270121}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - pl-waw-3", "description":"POP2-16C-64G - pl-waw-3 (0.59€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015095386}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - pl-waw-3", "description":"POP2-32C-128G - pl-waw-3 (1.18€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.028745914}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - pl-waw-3", "description":"POP2-64C-256G - pl-waw-3 (2.35€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.056046974}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - pl-waw-3", "description":"PRO2-XXS - pl-waw-3 (0.055€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029963476}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - pl-waw-3", "description":"PRO2-XS - pl-waw-3 (0.11€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0045478386}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - pl-waw-3", "description":"PRO2-S - pl-waw-3 (0.219€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0076508215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - pl-waw-3", "description":"PRO2-M - pl-waw-3 (0.438€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013856786}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - pl-waw-3", "description":"PRO2-L - pl-waw-3 (0.877€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.026268717}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - pl-waw-3", "description":"PLAY2-PICO - pl-waw-3 (0.014€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017674839}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - pl-waw-3", "description":"PLAY2-NANO - pl-waw-3 (0.027€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020901116}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - pl-waw-3", "description":"PLAY2-MICRO - pl-waw-3 (0.054€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.002735367}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - pl-waw-3", "description":"POP2-HM-2C-16G - pl-waw-3 (0.103€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0039045145}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - pl-waw-3", "description":"POP2-HM-4C-32G - pl-waw-3 (0.206€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006364173}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - pl-waw-3", "description":"POP2-HM-8C-64G - pl-waw-3 (0.412€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01128349}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - pl-waw-3", "description":"POP2-HM-16C-128G - pl-waw-3 (0.824€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021122122}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - pl-waw-3", "description":"POP2-HM-32C-256G - pl-waw-3 (1.648€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.04079939}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - pl-waw-3", "description":"POP2-HM-48C-384G - pl-waw-3 (2.47€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.060476657}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - pl-waw-3", "description":"POP2-HM-64C-512G - pl-waw-3 (3.296€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.08015392}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - pl-waw-3", "description":"POP2-HC-2C-4G - pl-waw-3 (0.0532€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023256242}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - pl-waw-3", "description":"POP2-HC-4C-8G - pl-waw-3 (0.1064€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032063923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - pl-waw-3", "description":"POP2-HC-8C-16G - pl-waw-3 (0.2128€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0049679284}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - pl-waw-3", "description":"POP2-HC-16C-32G - pl-waw-3 (0.4256€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008491001}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - pl-waw-3", "description":"POP2-HC-32C-64G - pl-waw-3 (0.8512€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015537146}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - pl-waw-3", "description":"POP2-HC-48C-96G - pl-waw-3 (1.27€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02258329}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - pl-waw-3", "description":"POP2-HC-64C-128G - pl-waw-3 (1.7024€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.029629434}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - pl-waw-3", "description":"POP2-HN-10 - pl-waw-3 (0.7264€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032063923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - pl-waw-3", "description":"POP2-HN-3 - pl-waw-3 (0.2554€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023256242}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - pl-waw-3", "description":"POP2-HN-5 - pl-waw-3 (0.4524€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032063923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":32}' headers: Content-Length: - - "56175" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "33495" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a3c07147-6116-49f8-9b26-57e4d93e7c5c + - 0419f4bb-8347-4a57-883e-5595c0f1b66c status: 200 OK code: 200 - duration: 21.134003ms + duration: 22.828354ms - id: 9 request: proto: HTTP/1.1 @@ -454,11 +436,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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-2/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -466,35 +450,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 31954 + content_length: 40275 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}},"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", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "GPU-3070-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "RTX-3070", "gpu_memory": 8589934592}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 715.4, "hourly_price": 0.98, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "H100-1-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 24, "ram": 257698037760, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3000000000000, "monthly_price": 1992.9, "hourly_price": 2.73, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "H100-1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 24, "ram": 257698037760, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3000000000000, "monthly_price": 3066.0, "hourly_price": 4.2, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "H100-2-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 515396075520, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6000000000000, "monthly_price": 3985.8, "hourly_price": 5.46, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 4194304000, "end_of_service": false}, "H100-2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 515396075520, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6000000000000, "monthly_price": 6132.0, "hourly_price": 8.4, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 4194304000, "end_of_service": false}, "H100-SXM-2-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 257698037760, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3200000000000, "monthly_price": 4393.14, "hourly_price": 6.018, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "H100-SXM-4-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 515396075520, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6400000000000, "monthly_price": 8475.3, "hourly_price": 11.61, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "H100-SXM-8-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 128, "ram": 1030792151040, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 12800000000000, "monthly_price": 16810.44, "hourly_price": 23.028, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "L40S-1-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 103079215104, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 1600000000000, "monthly_price": 1022.0, "hourly_price": 1.4, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L40S-2-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 206158430208, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3200000000000, "monthly_price": 2044.0, "hourly_price": 2.8, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L40S-4-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 412316860416, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6400000000000, "monthly_price": 4088.0, "hourly_price": 5.6, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L40S-8-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 824633720832, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 12800000000000, "monthly_price": 8176.0, "hourly_price": 11.2, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "31954" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "40275" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:53:47 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0a907156-933b-4764-b982-1251507c650a + - 58decd2e-9423-4598-bd8b-b9d9d198c0a8 X-Total-Count: - - "41" + - "68" status: 200 OK code: 200 - duration: 42.32683ms + duration: 39.388288ms - id: 10 request: proto: HTTP/1.1 @@ -507,11 +483,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-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-2/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -519,31 +497,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44614 + content_length: 14060 uncompressed: false - 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}' + body: '{"servers": {"POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}}}' headers: Content-Length: - - "44614" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "14060" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:53:47 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2d9f915b-3462-4758-9737-b211266cd785 + - 986c8812-819b-4bfa-a7b8-b35a62ebe3b0 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 20.026569ms + duration: 79.44186ms - id: 11 request: proto: HTTP/1.1 @@ -556,11 +530,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-2 headers: User-Agent: - scaleway-sdk-go/v1.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-2 method: GET response: proto: HTTP/2.0 @@ -568,35 +548,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 71103 uncompressed: false - 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"}}}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-2", "description":"POP2-2C-8G - fr-par-2 (0.0735€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012326919, "m3_water_usage":4.5415396e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-2", "description":"POP2-2C-8G-WIN - fr-par-2 (0.1823€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001275603, "m3_water_usage":5.732746e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-2", "description":"POP2-4C-16G - fr-par-2 (0.147€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016436653, "m3_water_usage":8.274516e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-2", "description":"POP2-4C-16G-WIN - fr-par-2 (0.3637€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017294873, "m3_water_usage":0.0000010656929}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-2", "description":"POP2-48C-192G - fr-par-2 (1.77€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010685078, "m3_water_usage":0.00000904}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-2", "description":"POP2-8C-32G - fr-par-2 (0.29€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0024656118, "m3_water_usage":0.0000015740469}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-2", "description":"POP2-8C-32G-WIN - fr-par-2 (0.7233€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0026372562, "m3_water_usage":0.0000020505295}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-2", "description":"POP2-16C-64G - fr-par-2 (0.59€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004109505, "m3_water_usage":0.0000030672375}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-2", "description":"POP2-16C-64G-WIN - fr-par-2 (1.4567€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004452794, "m3_water_usage":0.0000040202026}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-2", "description":"POP2-32C-128G - fr-par-2 (1.18€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073972913, "m3_water_usage":0.0000060536186}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-2", "description":"POP2-32C-128G-WIN - fr-par-2 (2.9133€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008083869, "m3_water_usage":0.000007959549}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-2", "description":"POP2-64C-256G - fr-par-2 (2.35€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013972864, "m3_water_usage":0.000012026381}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-2", "description":"PRO2-XXS - fr-par-2 (0.055€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012093384, "m3_water_usage":4.1626595e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-2", "description":"PRO2-XS - fr-par-2 (0.11€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015969581, "m3_water_usage":7.516756e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-2", "description":"PRO2-S - fr-par-2 (0.219€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023721978, "m3_water_usage":0.000001422495}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-2", "description":"PRO2-M - fr-par-2 (0.438€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0039226767, "m3_water_usage":0.0000027641336}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-2", "description":"PRO2-L - fr-par-2 (0.877€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007023635, "m3_water_usage":0.000005447411}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-2", "description":"GP1-XS Instance - fr-par-2 (0.091€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015745064, "m3_water_usage":9.91388e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-2", "description":"GP1-S Instance - fr-par-2 (0.187€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025098983, "m3_water_usage":0.0000019198878}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-2", "description":"GP1-M Instance - fr-par-2 (0.376€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004380682, "m3_water_usage":0.0000037768873}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-2", "description":"GP1-L Instance - fr-par-2 (0.759€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0081222495, "m3_water_usage":0.0000074908867}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-2", "description":"GP1-XL Instance - fr-par-2 (1.641€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015359656, "m3_water_usage":0.000014674966}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-2", "description":"COPARM1-2C-8G - fr-par-2 (0.0426€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012374872, "m3_water_usage":3.5749173e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-2", "description":"COPARM1-4C-16G - fr-par-2 (0.0857€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016147743, "m3_water_usage":6.3034065e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-2", "description":"COPARM1-8C-32G - fr-par-2 (0.1724€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023693487, "m3_water_usage":0.0000011760384}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-2", "description":"COPARM1-16C-64G - fr-par-2 (0.3454€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003878497, "m3_water_usage":0.000002267434}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-2", "description":"COPARM1-32C-128G - fr-par-2 (0.6935€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0068967943, "m3_water_usage":0.0000044502253}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-2", "description":"DEV1-S Instance - fr-par-2 (0.0088€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006957192, "m3_water_usage":2.2154349e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-2", "description":"DEV1-M Instance - fr-par-2 (0.0198€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0008401733, "m3_water_usage":3.6884495e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-2", "description":"DEV1-L Instance - fr-par-2 (0.042€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011073682, "m3_water_usage":6.4131325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-2", "description":"DEV1-XL Instance - fr-par-2 (0.063799999€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00135285, "m3_water_usage":8.9164695e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-2", "description":"PLAY2-PICO - fr-par-2 (0.014€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000916712, "m3_water_usage":1.4645697e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-2", "description":"PLAY2-NANO - fr-par-2 (0.027€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010117054, "m3_water_usage":2.1205766e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-2", "description":"PLAY2-MICRO - fr-par-2 (0.054€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001201692, "m3_water_usage":3.43259e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-2", "description":"POP2-HM-2C-16G - fr-par-2 (0.103€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015459318, "m3_water_usage":5.809846e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-2", "description":"POP2-HM-4C-32G - fr-par-2 (0.206€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0022701449, "m3_water_usage":0.0000010811128}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-2", "description":"POP2-HM-8C-64G - fr-par-2 (0.412€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0037185713, "m3_water_usage":0.0000020813695}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-2", "description":"POP2-HM-16C-128G - fr-par-2 (0.824€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066154236, "m3_water_usage":0.0000040818827}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-2", "description":"POP2-HM-32C-256G - fr-par-2 (1.648€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012409129, "m3_water_usage":0.000008082909}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-2", "description":"POP2-HM-48C-384G - fr-par-2 (2.47€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018202834, "m3_water_usage":0.000012083935}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-2", "description":"POP2-HM-64C-512G - fr-par-2 (3.296€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02399654, "m3_water_usage":0.000016084961}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-2", "description":"POP2-HC-2C-4G - fr-par-2 (0.0532€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010338553, "m3_water_usage":2.7354548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-2", "description":"POP2-HC-4C-8G - fr-par-2 (0.1064€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012459919, "m3_water_usage":4.6623464e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-2", "description":"POP2-HC-8C-16G - fr-par-2 (0.2128€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016702651, "m3_water_usage":8.51613e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-2", "description":"POP2-HC-16C-32G - fr-par-2 (0.4256€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025188117, "m3_water_usage":0.0000016223697}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-2", "description":"POP2-HC-32C-64G - fr-par-2 (0.8512€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0042159045, "m3_water_usage":0.000003163883}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-2", "description":"POP2-HC-48C-96G - fr-par-2 (1.27€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0059129978, "m3_water_usage":0.0000047053963}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-2", "description":"POP2-HC-64C-128G - fr-par-2 (1.7024€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0076100905, "m3_water_usage":0.00000624691}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-2", "description":"POP2-HN-10 - fr-par-2 (0.7264€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012459919, "m3_water_usage":4.6623464e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-2", "description":"POP2-HN-3 - fr-par-2 (0.2554€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010338553, "m3_water_usage":2.7354548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-2", "description":"POP2-HN-5 - fr-par-2 (0.4524€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012459919, "m3_water_usage":4.6623464e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_sxm_2_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-SXM-2-80G", "variant":"H100-SXM-2-80G - fr-par-2", "description":"H100-SXM-2-80G - fr-par-2 (0.1003€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":32}, "threads":32}, "ram":{"description":"240 GiB", "size":257698037760, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"2 x H100-SXM", "count":2, "type":"H100-SXM"}}, "instance":{"range":"GPU", "offer_id":"H100-SXM-2-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_sxm_4_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-SXM-4-80G", "variant":"H100-SXM-4-80G - fr-par-2", "description":"H100-SXM-4-80G - fr-par-2 (0.1935€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":193500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":64}, "threads":64}, "ram":{"description":"480 GiB", "size":515396075520, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"4 x H100-SXM", "count":4, "type":"H100-SXM"}}, "instance":{"range":"GPU", "offer_id":"H100-SXM-4-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_sxm_8_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-SXM-8-80G", "variant":"H100-SXM-8-80G - fr-par-2", "description":"H100-SXM-8-80G - fr-par-2 (0.3838€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":383800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 128", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":128}, "threads":128}, "ram":{"description":"960 GiB", "size":1030792151040, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x H100-SXM", "count":8, "type":"H100-SXM"}}, "instance":{"range":"GPU", "offer_id":"H100-SXM-8-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_1_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-1-80G", "variant":"H100-1-80G - fr-par-2", "description":"H100-1-80G - fr-par-2 (0.0455€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":45500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":24}, "threads":24}, "ram":{"description":"240 GiB", "size":257698037760, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"1 x H100-PCIe", "count":1, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-1-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_2_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-2-80G", "variant":"H100-2-80G - fr-par-2", "description":"H100-2-80G - fr-par-2 (0.091€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":48}, "threads":48}, "ram":{"description":"480 GiB", "size":515396075520, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"2 x H100-PCIe", "count":2, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-2-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_1_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-1-48G", "variant":"L40S-1-48G - fr-par-2", "description":"L40S-1-48G - fr-par-2 (0.023332€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":23332000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 8", "arch":"x64", "type":"", "virtual":{"count":8}, "threads":8}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L40S", "count":1, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-1-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_2_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-2-48G", "variant":"L40S-2-48G - fr-par-2", "description":"L40S-2-48G - fr-par-2 (0.046664€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":46664000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 16", "arch":"x64", "type":"", "virtual":{"count":16}, "threads":16}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L40S", "count":2, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-2-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_4_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-4-48G", "variant":"L40S-4-48G - fr-par-2", "description":"L40S-4-48G - fr-par-2 (0.093328€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":93328000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 32", "arch":"x64", "type":"", "virtual":{"count":32}, "threads":32}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L40S", "count":4, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-4-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_8_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-8-48G", "variant":"L40S-8-48G - fr-par-2", "description":"L40S-8-48G - fr-par-2 (0.186656€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":186656000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 64", "arch":"x64", "type":"", "virtual":{"count":64}, "threads":64}, "ram":{"description":"768 GiB", "size":824633720832, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L40S", "count":8, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-8-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-2", "description":"L4-1-24G - fr-par-2 (0.0125€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-2", "description":"L4-2-24G - fr-par-2 (0.025€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-2", "description":"L4-4-24G - fr-par-2 (0.05€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-2", "description":"L4-8-24G - fr-par-2 (0.1€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-2", "description":"RENDER-S Instance - fr-par-2 (1.221€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gpu_3070_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GPU-3070-S", "variant":"GPU-3070-S - fr-par-2", "description":"GPU-3070-S - fr-par-2 (0.98€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":980000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x RTX-3070", "count":1, "type":"RTX-3070"}}, "instance":{"range":"GPU", "offer_id":"GPU-3070-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":66}' headers: Content-Length: - - "1882" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "71103" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5ee2ef84-2772-4a08-9e64-498646309c5c - X-Total-Count: - - "41" + - 941a890d-1526-4fb8-96ca-8f80b27ad7e2 status: 200 OK code: 200 - duration: 87.382296ms + duration: 26.622718ms - id: 12 request: proto: HTTP/1.1 @@ -609,11 +577,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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-2/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -621,35 +591,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 31954 + content_length: 2305 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}},"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"}, "GPU-3070-S": {"availability": "shortage"}, "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": "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: - - "31954" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2305" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53:47 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 93e551b6-0b76-4962-a2fb-29622de6aaa9 + - b570dda4-f821-4844-a904-b0ef7194fbf4 X-Total-Count: - - "41" + - "68" status: 200 OK code: 200 - duration: 54.103035ms + duration: 90.077837ms - id: 13 request: proto: HTTP/1.1 @@ -662,11 +624,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-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-2/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -674,31 +638,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44614 + content_length: 848 uncompressed: false - 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}' + 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: - - "44614" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "848" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53:48 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c2892421-6ef6-4845-b741-472be5c8f8bd + - 394ea68c-7ca5-47c1-b75c-beda1b21b552 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 23.672704ms + duration: 90.500407ms - id: 14 request: proto: HTTP/1.1 @@ -711,11 +671,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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-2/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -723,35 +685,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 40275 uncompressed: false - 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"}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "GPU-3070-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "RTX-3070", "gpu_memory": 8589934592}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 715.4, "hourly_price": 0.98, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "H100-1-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 24, "ram": 257698037760, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3000000000000, "monthly_price": 1992.9, "hourly_price": 2.73, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "H100-1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 24, "ram": 257698037760, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3000000000000, "monthly_price": 3066.0, "hourly_price": 4.2, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "H100-2-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 515396075520, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6000000000000, "monthly_price": 3985.8, "hourly_price": 5.46, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 4194304000, "end_of_service": false}, "H100-2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 515396075520, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6000000000000, "monthly_price": 6132.0, "hourly_price": 8.4, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 4194304000, "end_of_service": false}, "H100-SXM-2-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 257698037760, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3200000000000, "monthly_price": 4393.14, "hourly_price": 6.018, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "H100-SXM-4-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 515396075520, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6400000000000, "monthly_price": 8475.3, "hourly_price": 11.61, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "H100-SXM-8-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 128, "ram": 1030792151040, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 12800000000000, "monthly_price": 16810.44, "hourly_price": 23.028, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "L40S-1-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 103079215104, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 1600000000000, "monthly_price": 1022.0, "hourly_price": 1.4, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L40S-2-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 206158430208, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3200000000000, "monthly_price": 2044.0, "hourly_price": 2.8, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L40S-4-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 412316860416, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6400000000000, "monthly_price": 4088.0, "hourly_price": 5.6, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L40S-8-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 824633720832, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 12800000000000, "monthly_price": 8176.0, "hourly_price": 11.2, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "1882" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "40275" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 067d2e88-db54-49f2-980c-d176ff6a9141 + - 2af8e09f-bb5f-42e8-ae00-363915700be2 X-Total-Count: - - "41" + - "68" status: 200 OK code: 200 - duration: 84.29537ms + duration: 46.72719ms - id: 15 request: proto: HTTP/1.1 @@ -764,11 +718,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.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-2/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -776,35 +732,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 31954 + content_length: 14060 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}},"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": {"POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}}}' headers: Content-Length: - - "31954" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "14060" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cc8e9aed-e3ca-4fe2-aecd-389439f6d6f9 + - 5704219f-34d4-4374-98ee-b831ddd31067 X-Total-Count: - - "41" + - "68" status: 200 OK code: 200 - duration: 55.888351ms + duration: 46.114674ms - id: 16 request: proto: HTTP/1.1 @@ -817,11 +765,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-2 headers: User-Agent: - scaleway-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=fr-par-2 method: GET response: proto: HTTP/2.0 @@ -829,31 +783,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44614 + content_length: 71103 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-2", "description":"POP2-2C-8G - fr-par-2 (0.0735€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012326919, "m3_water_usage":4.5415396e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-2", "description":"POP2-2C-8G-WIN - fr-par-2 (0.1823€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001275603, "m3_water_usage":5.732746e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-2", "description":"POP2-4C-16G - fr-par-2 (0.147€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016436653, "m3_water_usage":8.274516e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-2", "description":"POP2-4C-16G-WIN - fr-par-2 (0.3637€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017294873, "m3_water_usage":0.0000010656929}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-2", "description":"POP2-48C-192G - fr-par-2 (1.77€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010685078, "m3_water_usage":0.00000904}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-2", "description":"POP2-8C-32G - fr-par-2 (0.29€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0024656118, "m3_water_usage":0.0000015740469}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-2", "description":"POP2-8C-32G-WIN - fr-par-2 (0.7233€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0026372562, "m3_water_usage":0.0000020505295}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-2", "description":"POP2-16C-64G - fr-par-2 (0.59€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004109505, "m3_water_usage":0.0000030672375}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-2", "description":"POP2-16C-64G-WIN - fr-par-2 (1.4567€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004452794, "m3_water_usage":0.0000040202026}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-2", "description":"POP2-32C-128G - fr-par-2 (1.18€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073972913, "m3_water_usage":0.0000060536186}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-2", "description":"POP2-32C-128G-WIN - fr-par-2 (2.9133€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008083869, "m3_water_usage":0.000007959549}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-2", "description":"POP2-64C-256G - fr-par-2 (2.35€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013972864, "m3_water_usage":0.000012026381}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-2", "description":"PRO2-XXS - fr-par-2 (0.055€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012093384, "m3_water_usage":4.1626595e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-2", "description":"PRO2-XS - fr-par-2 (0.11€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015969581, "m3_water_usage":7.516756e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-2", "description":"PRO2-S - fr-par-2 (0.219€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023721978, "m3_water_usage":0.000001422495}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-2", "description":"PRO2-M - fr-par-2 (0.438€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0039226767, "m3_water_usage":0.0000027641336}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-2", "description":"PRO2-L - fr-par-2 (0.877€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007023635, "m3_water_usage":0.000005447411}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-2", "description":"GP1-XS Instance - fr-par-2 (0.091€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015745064, "m3_water_usage":9.91388e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-2", "description":"GP1-S Instance - fr-par-2 (0.187€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025098983, "m3_water_usage":0.0000019198878}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-2", "description":"GP1-M Instance - fr-par-2 (0.376€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004380682, "m3_water_usage":0.0000037768873}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-2", "description":"GP1-L Instance - fr-par-2 (0.759€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0081222495, "m3_water_usage":0.0000074908867}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-2", "description":"GP1-XL Instance - fr-par-2 (1.641€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015359656, "m3_water_usage":0.000014674966}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-2", "description":"COPARM1-2C-8G - fr-par-2 (0.0426€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012374872, "m3_water_usage":3.5749173e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-2", "description":"COPARM1-4C-16G - fr-par-2 (0.0857€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016147743, "m3_water_usage":6.3034065e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-2", "description":"COPARM1-8C-32G - fr-par-2 (0.1724€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023693487, "m3_water_usage":0.0000011760384}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-2", "description":"COPARM1-16C-64G - fr-par-2 (0.3454€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003878497, "m3_water_usage":0.000002267434}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-2", "description":"COPARM1-32C-128G - fr-par-2 (0.6935€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0068967943, "m3_water_usage":0.0000044502253}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-2", "description":"DEV1-S Instance - fr-par-2 (0.0088€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006957192, "m3_water_usage":2.2154349e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-2", "description":"DEV1-M Instance - fr-par-2 (0.0198€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0008401733, "m3_water_usage":3.6884495e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-2", "description":"DEV1-L Instance - fr-par-2 (0.042€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011073682, "m3_water_usage":6.4131325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-2", "description":"DEV1-XL Instance - fr-par-2 (0.063799999€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00135285, "m3_water_usage":8.9164695e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-2", "description":"PLAY2-PICO - fr-par-2 (0.014€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000916712, "m3_water_usage":1.4645697e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-2", "description":"PLAY2-NANO - fr-par-2 (0.027€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010117054, "m3_water_usage":2.1205766e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-2", "description":"PLAY2-MICRO - fr-par-2 (0.054€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001201692, "m3_water_usage":3.43259e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-2", "description":"POP2-HM-2C-16G - fr-par-2 (0.103€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015459318, "m3_water_usage":5.809846e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-2", "description":"POP2-HM-4C-32G - fr-par-2 (0.206€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0022701449, "m3_water_usage":0.0000010811128}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-2", "description":"POP2-HM-8C-64G - fr-par-2 (0.412€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0037185713, "m3_water_usage":0.0000020813695}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-2", "description":"POP2-HM-16C-128G - fr-par-2 (0.824€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066154236, "m3_water_usage":0.0000040818827}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-2", "description":"POP2-HM-32C-256G - fr-par-2 (1.648€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012409129, "m3_water_usage":0.000008082909}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-2", "description":"POP2-HM-48C-384G - fr-par-2 (2.47€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018202834, "m3_water_usage":0.000012083935}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-2", "description":"POP2-HM-64C-512G - fr-par-2 (3.296€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02399654, "m3_water_usage":0.000016084961}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-2", "description":"POP2-HC-2C-4G - fr-par-2 (0.0532€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010338553, "m3_water_usage":2.7354548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-2", "description":"POP2-HC-4C-8G - fr-par-2 (0.1064€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012459919, "m3_water_usage":4.6623464e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-2", "description":"POP2-HC-8C-16G - fr-par-2 (0.2128€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016702651, "m3_water_usage":8.51613e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-2", "description":"POP2-HC-16C-32G - fr-par-2 (0.4256€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025188117, "m3_water_usage":0.0000016223697}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-2", "description":"POP2-HC-32C-64G - fr-par-2 (0.8512€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0042159045, "m3_water_usage":0.000003163883}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-2", "description":"POP2-HC-48C-96G - fr-par-2 (1.27€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0059129978, "m3_water_usage":0.0000047053963}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-2", "description":"POP2-HC-64C-128G - fr-par-2 (1.7024€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0076100905, "m3_water_usage":0.00000624691}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-2", "description":"POP2-HN-10 - fr-par-2 (0.7264€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012459919, "m3_water_usage":4.6623464e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-2", "description":"POP2-HN-3 - fr-par-2 (0.2554€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010338553, "m3_water_usage":2.7354548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-2", "description":"POP2-HN-5 - fr-par-2 (0.4524€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012459919, "m3_water_usage":4.6623464e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_sxm_2_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-SXM-2-80G", "variant":"H100-SXM-2-80G - fr-par-2", "description":"H100-SXM-2-80G - fr-par-2 (0.1003€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":32}, "threads":32}, "ram":{"description":"240 GiB", "size":257698037760, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"2 x H100-SXM", "count":2, "type":"H100-SXM"}}, "instance":{"range":"GPU", "offer_id":"H100-SXM-2-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_sxm_4_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-SXM-4-80G", "variant":"H100-SXM-4-80G - fr-par-2", "description":"H100-SXM-4-80G - fr-par-2 (0.1935€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":193500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":64}, "threads":64}, "ram":{"description":"480 GiB", "size":515396075520, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"4 x H100-SXM", "count":4, "type":"H100-SXM"}}, "instance":{"range":"GPU", "offer_id":"H100-SXM-4-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_sxm_8_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-SXM-8-80G", "variant":"H100-SXM-8-80G - fr-par-2", "description":"H100-SXM-8-80G - fr-par-2 (0.3838€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":383800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 128", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":128}, "threads":128}, "ram":{"description":"960 GiB", "size":1030792151040, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x H100-SXM", "count":8, "type":"H100-SXM"}}, "instance":{"range":"GPU", "offer_id":"H100-SXM-8-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_1_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-1-80G", "variant":"H100-1-80G - fr-par-2", "description":"H100-1-80G - fr-par-2 (0.0455€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":45500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":24}, "threads":24}, "ram":{"description":"240 GiB", "size":257698037760, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"1 x H100-PCIe", "count":1, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-1-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_2_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-2-80G", "variant":"H100-2-80G - fr-par-2", "description":"H100-2-80G - fr-par-2 (0.091€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":48}, "threads":48}, "ram":{"description":"480 GiB", "size":515396075520, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"2 x H100-PCIe", "count":2, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-2-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_1_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-1-48G", "variant":"L40S-1-48G - fr-par-2", "description":"L40S-1-48G - fr-par-2 (0.023332€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":23332000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 8", "arch":"x64", "type":"", "virtual":{"count":8}, "threads":8}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L40S", "count":1, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-1-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_2_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-2-48G", "variant":"L40S-2-48G - fr-par-2", "description":"L40S-2-48G - fr-par-2 (0.046664€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":46664000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 16", "arch":"x64", "type":"", "virtual":{"count":16}, "threads":16}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L40S", "count":2, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-2-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_4_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-4-48G", "variant":"L40S-4-48G - fr-par-2", "description":"L40S-4-48G - fr-par-2 (0.093328€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":93328000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 32", "arch":"x64", "type":"", "virtual":{"count":32}, "threads":32}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L40S", "count":4, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-4-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_8_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-8-48G", "variant":"L40S-8-48G - fr-par-2", "description":"L40S-8-48G - fr-par-2 (0.186656€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":186656000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 64", "arch":"x64", "type":"", "virtual":{"count":64}, "threads":64}, "ram":{"description":"768 GiB", "size":824633720832, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L40S", "count":8, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-8-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-2", "description":"L4-1-24G - fr-par-2 (0.0125€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-2", "description":"L4-2-24G - fr-par-2 (0.025€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-2", "description":"L4-4-24G - fr-par-2 (0.05€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-2", "description":"L4-8-24G - fr-par-2 (0.1€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-2", "description":"RENDER-S Instance - fr-par-2 (1.221€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gpu_3070_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GPU-3070-S", "variant":"GPU-3070-S - fr-par-2", "description":"GPU-3070-S - fr-par-2 (0.98€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":980000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x RTX-3070", "count":1, "type":"RTX-3070"}}, "instance":{"range":"GPU", "offer_id":"GPU-3070-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":66}' headers: Content-Length: - - "44614" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "71103" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7a2f9333-dbdb-46ae-a752-f16307a17448 + - 38f998f6-897d-4842-a35a-9ecfaee5802b status: 200 OK code: 200 - duration: 19.158573ms + duration: 25.658776ms - id: 17 request: proto: HTTP/1.1 @@ -866,11 +812,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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-2/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -878,35 +826,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 2305 uncompressed: false - 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"}}}' + 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": "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": "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: - - "1882" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2305" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8dde297a-bddf-4dd9-aa57-95f49d8545e2 + - 75098a08-2ed6-4f32-a65b-6d6368b31e6f X-Total-Count: - - "41" + - "68" status: 200 OK code: 200 - duration: 81.372381ms + duration: 80.76266ms - id: 18 request: proto: HTTP/1.1 @@ -919,11 +859,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.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/fr-par-2/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -931,35 +873,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 24777 + content_length: 848 uncompressed: false - 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}}}}' + 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: - - "24777" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "848" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6d57b9ed-9d29-44ae-8eae-775bc4fd97d7 + - 1617e1fa-a32c-4a22-bffb-5fea19250124 X-Total-Count: - - "32" + - "68" status: 200 OK code: 200 - duration: 89.063838ms + duration: 125.539472ms - id: 19 request: proto: HTTP/1.1 @@ -972,11 +906,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-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/instance/v1/zones/fr-par-2/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -984,31 +920,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34583 + content_length: 40275 uncompressed: false - 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}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "GPU-3070-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "RTX-3070", "gpu_memory": 8589934592}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 715.4, "hourly_price": 0.98, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "H100-1-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 24, "ram": 257698037760, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3000000000000, "monthly_price": 1992.9, "hourly_price": 2.73, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "H100-1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 24, "ram": 257698037760, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3000000000000, "monthly_price": 3066.0, "hourly_price": 4.2, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "H100-2-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 515396075520, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6000000000000, "monthly_price": 3985.8, "hourly_price": 5.46, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 4194304000, "end_of_service": false}, "H100-2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 515396075520, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6000000000000, "monthly_price": 6132.0, "hourly_price": 8.4, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 4194304000, "end_of_service": false}, "H100-SXM-2-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 257698037760, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3200000000000, "monthly_price": 4393.14, "hourly_price": 6.018, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "H100-SXM-4-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 515396075520, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6400000000000, "monthly_price": 8475.3, "hourly_price": 11.61, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "H100-SXM-8-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 128, "ram": 1030792151040, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 12800000000000, "monthly_price": 16810.44, "hourly_price": 23.028, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "L40S-1-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 103079215104, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 1600000000000, "monthly_price": 1022.0, "hourly_price": 1.4, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L40S-2-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 206158430208, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3200000000000, "monthly_price": 2044.0, "hourly_price": 2.8, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L40S-4-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 412316860416, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6400000000000, "monthly_price": 4088.0, "hourly_price": 5.6, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L40S-8-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 824633720832, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 12800000000000, "monthly_price": 8176.0, "hourly_price": 11.2, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "34583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "40275" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53:48 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 387dcc6e-b8b6-43ca-b6f9-d7d8fb87802f + - ff9674af-3150-4c2c-94fb-5bebe76b1cae + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 18.205336ms + duration: 55.734692ms - id: 20 request: proto: HTTP/1.1 @@ -1021,11 +953,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.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/fr-par-2/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -1033,35 +967,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1515 + content_length: 14060 uncompressed: false - 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"}}}' + body: '{"servers": {"POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}}}' headers: Content-Length: - - "1515" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "14060" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 02e2e573-8f93-4d90-a44b-205c969e62a0 + - 143ab2ae-6621-44f1-b8c9-5f122f67519f X-Total-Count: - - "32" + - "68" status: 200 OK code: 200 - duration: 96.084778ms + duration: 47.057759ms - id: 21 request: proto: HTTP/1.1 @@ -1074,11 +1000,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-2 headers: User-Agent: - scaleway-sdk-go/v1.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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=fr-par-2 method: GET response: proto: HTTP/2.0 @@ -1086,35 +1018,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 24777 + content_length: 71103 uncompressed: false - 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}}}}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-2", "description":"POP2-2C-8G - fr-par-2 (0.0735€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012326919, "m3_water_usage":4.5415396e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-2", "description":"POP2-2C-8G-WIN - fr-par-2 (0.1823€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001275603, "m3_water_usage":5.732746e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-2", "description":"POP2-4C-16G - fr-par-2 (0.147€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016436653, "m3_water_usage":8.274516e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-2", "description":"POP2-4C-16G-WIN - fr-par-2 (0.3637€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017294873, "m3_water_usage":0.0000010656929}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-2", "description":"POP2-48C-192G - fr-par-2 (1.77€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010685078, "m3_water_usage":0.00000904}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-2", "description":"POP2-8C-32G - fr-par-2 (0.29€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0024656118, "m3_water_usage":0.0000015740469}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-2", "description":"POP2-8C-32G-WIN - fr-par-2 (0.7233€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0026372562, "m3_water_usage":0.0000020505295}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-2", "description":"POP2-16C-64G - fr-par-2 (0.59€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004109505, "m3_water_usage":0.0000030672375}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-2", "description":"POP2-16C-64G-WIN - fr-par-2 (1.4567€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004452794, "m3_water_usage":0.0000040202026}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-2", "description":"POP2-32C-128G - fr-par-2 (1.18€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073972913, "m3_water_usage":0.0000060536186}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-2", "description":"POP2-32C-128G-WIN - fr-par-2 (2.9133€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008083869, "m3_water_usage":0.000007959549}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-2", "description":"POP2-64C-256G - fr-par-2 (2.35€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013972864, "m3_water_usage":0.000012026381}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-2", "description":"PRO2-XXS - fr-par-2 (0.055€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012093384, "m3_water_usage":4.1626595e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-2", "description":"PRO2-XS - fr-par-2 (0.11€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015969581, "m3_water_usage":7.516756e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-2", "description":"PRO2-S - fr-par-2 (0.219€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023721978, "m3_water_usage":0.000001422495}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-2", "description":"PRO2-M - fr-par-2 (0.438€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0039226767, "m3_water_usage":0.0000027641336}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-2", "description":"PRO2-L - fr-par-2 (0.877€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007023635, "m3_water_usage":0.000005447411}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-2", "description":"GP1-XS Instance - fr-par-2 (0.091€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015745064, "m3_water_usage":9.91388e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-2", "description":"GP1-S Instance - fr-par-2 (0.187€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025098983, "m3_water_usage":0.0000019198878}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-2", "description":"GP1-M Instance - fr-par-2 (0.376€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004380682, "m3_water_usage":0.0000037768873}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-2", "description":"GP1-L Instance - fr-par-2 (0.759€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0081222495, "m3_water_usage":0.0000074908867}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-2", "description":"GP1-XL Instance - fr-par-2 (1.641€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015359656, "m3_water_usage":0.000014674966}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-2", "description":"COPARM1-2C-8G - fr-par-2 (0.0426€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012374872, "m3_water_usage":3.5749173e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-2", "description":"COPARM1-4C-16G - fr-par-2 (0.0857€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016147743, "m3_water_usage":6.3034065e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-2", "description":"COPARM1-8C-32G - fr-par-2 (0.1724€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023693487, "m3_water_usage":0.0000011760384}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-2", "description":"COPARM1-16C-64G - fr-par-2 (0.3454€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003878497, "m3_water_usage":0.000002267434}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-2", "description":"COPARM1-32C-128G - fr-par-2 (0.6935€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0068967943, "m3_water_usage":0.0000044502253}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-2", "description":"DEV1-S Instance - fr-par-2 (0.0088€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006957192, "m3_water_usage":2.2154349e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-2", "description":"DEV1-M Instance - fr-par-2 (0.0198€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0008401733, "m3_water_usage":3.6884495e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-2", "description":"DEV1-L Instance - fr-par-2 (0.042€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011073682, "m3_water_usage":6.4131325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-2", "description":"DEV1-XL Instance - fr-par-2 (0.063799999€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00135285, "m3_water_usage":8.9164695e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-2", "description":"PLAY2-PICO - fr-par-2 (0.014€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000916712, "m3_water_usage":1.4645697e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-2", "description":"PLAY2-NANO - fr-par-2 (0.027€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010117054, "m3_water_usage":2.1205766e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-2", "description":"PLAY2-MICRO - fr-par-2 (0.054€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001201692, "m3_water_usage":3.43259e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-2", "description":"POP2-HM-2C-16G - fr-par-2 (0.103€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015459318, "m3_water_usage":5.809846e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-2", "description":"POP2-HM-4C-32G - fr-par-2 (0.206€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0022701449, "m3_water_usage":0.0000010811128}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-2", "description":"POP2-HM-8C-64G - fr-par-2 (0.412€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0037185713, "m3_water_usage":0.0000020813695}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-2", "description":"POP2-HM-16C-128G - fr-par-2 (0.824€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066154236, "m3_water_usage":0.0000040818827}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-2", "description":"POP2-HM-32C-256G - fr-par-2 (1.648€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012409129, "m3_water_usage":0.000008082909}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-2", "description":"POP2-HM-48C-384G - fr-par-2 (2.47€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018202834, "m3_water_usage":0.000012083935}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-2", "description":"POP2-HM-64C-512G - fr-par-2 (3.296€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02399654, "m3_water_usage":0.000016084961}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-2", "description":"POP2-HC-2C-4G - fr-par-2 (0.0532€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010338553, "m3_water_usage":2.7354548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-2", "description":"POP2-HC-4C-8G - fr-par-2 (0.1064€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012459919, "m3_water_usage":4.6623464e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-2", "description":"POP2-HC-8C-16G - fr-par-2 (0.2128€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016702651, "m3_water_usage":8.51613e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-2", "description":"POP2-HC-16C-32G - fr-par-2 (0.4256€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025188117, "m3_water_usage":0.0000016223697}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-2", "description":"POP2-HC-32C-64G - fr-par-2 (0.8512€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0042159045, "m3_water_usage":0.000003163883}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-2", "description":"POP2-HC-48C-96G - fr-par-2 (1.27€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0059129978, "m3_water_usage":0.0000047053963}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-2", "description":"POP2-HC-64C-128G - fr-par-2 (1.7024€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0076100905, "m3_water_usage":0.00000624691}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-2", "description":"POP2-HN-10 - fr-par-2 (0.7264€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012459919, "m3_water_usage":4.6623464e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-2", "description":"POP2-HN-3 - fr-par-2 (0.2554€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010338553, "m3_water_usage":2.7354548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-2", "description":"POP2-HN-5 - fr-par-2 (0.4524€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012459919, "m3_water_usage":4.6623464e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_sxm_2_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-SXM-2-80G", "variant":"H100-SXM-2-80G - fr-par-2", "description":"H100-SXM-2-80G - fr-par-2 (0.1003€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":32}, "threads":32}, "ram":{"description":"240 GiB", "size":257698037760, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"2 x H100-SXM", "count":2, "type":"H100-SXM"}}, "instance":{"range":"GPU", "offer_id":"H100-SXM-2-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_sxm_4_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-SXM-4-80G", "variant":"H100-SXM-4-80G - fr-par-2", "description":"H100-SXM-4-80G - fr-par-2 (0.1935€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":193500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":64}, "threads":64}, "ram":{"description":"480 GiB", "size":515396075520, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"4 x H100-SXM", "count":4, "type":"H100-SXM"}}, "instance":{"range":"GPU", "offer_id":"H100-SXM-4-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_sxm_8_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-SXM-8-80G", "variant":"H100-SXM-8-80G - fr-par-2", "description":"H100-SXM-8-80G - fr-par-2 (0.3838€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":383800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 128", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":128}, "threads":128}, "ram":{"description":"960 GiB", "size":1030792151040, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x H100-SXM", "count":8, "type":"H100-SXM"}}, "instance":{"range":"GPU", "offer_id":"H100-SXM-8-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_1_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-1-80G", "variant":"H100-1-80G - fr-par-2", "description":"H100-1-80G - fr-par-2 (0.0455€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":45500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":24}, "threads":24}, "ram":{"description":"240 GiB", "size":257698037760, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"1 x H100-PCIe", "count":1, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-1-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_2_80g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-2-80G", "variant":"H100-2-80G - fr-par-2", "description":"H100-2-80G - fr-par-2 (0.091€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":48}, "threads":48}, "ram":{"description":"480 GiB", "size":515396075520, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"2 x H100-PCIe", "count":2, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-2-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_1_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-1-48G", "variant":"L40S-1-48G - fr-par-2", "description":"L40S-1-48G - fr-par-2 (0.023332€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":23332000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 8", "arch":"x64", "type":"", "virtual":{"count":8}, "threads":8}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L40S", "count":1, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-1-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_2_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-2-48G", "variant":"L40S-2-48G - fr-par-2", "description":"L40S-2-48G - fr-par-2 (0.046664€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":46664000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 16", "arch":"x64", "type":"", "virtual":{"count":16}, "threads":16}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L40S", "count":2, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-2-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_4_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-4-48G", "variant":"L40S-4-48G - fr-par-2", "description":"L40S-4-48G - fr-par-2 (0.093328€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":93328000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 32", "arch":"x64", "type":"", "virtual":{"count":32}, "threads":32}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L40S", "count":4, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-4-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_8_48g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-8-48G", "variant":"L40S-8-48G - fr-par-2", "description":"L40S-8-48G - fr-par-2 (0.186656€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":186656000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 64", "arch":"x64", "type":"", "virtual":{"count":64}, "threads":64}, "ram":{"description":"768 GiB", "size":824633720832, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L40S", "count":8, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-8-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-2", "description":"L4-1-24G - fr-par-2 (0.0125€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-2", "description":"L4-2-24G - fr-par-2 (0.025€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-2", "description":"L4-4-24G - fr-par-2 (0.05€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-2", "description":"L4-8-24G - fr-par-2 (0.1€ per minute)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-2", "description":"RENDER-S Instance - fr-par-2 (1.221€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gpu_3070_s/run_fr-par-2", "service_category":"Compute", "product_category":"Instance", "product":"GPU-3070-S", "variant":"GPU-3070-S - fr-par-2", "description":"GPU-3070-S - fr-par-2 (0.98€ per hour)", "locality":{"zone":"fr-par-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":980000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x RTX-3070", "count":1, "type":"RTX-3070"}}, "instance":{"range":"GPU", "offer_id":"GPU-3070-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":66}' headers: Content-Length: - - "24777" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "71103" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dd242679-c6cc-47ec-9c8b-5f5c699bc95e - X-Total-Count: - - "32" + - a47da634-ef92-41c4-8a5c-81435fe75648 status: 200 OK code: 200 - duration: 150.038425ms + duration: 26.194899ms - id: 22 request: proto: HTTP/1.1 @@ -1127,11 +1047,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-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/instance/v1/zones/fr-par-2/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -1139,31 +1061,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34583 + content_length: 2305 uncompressed: false - 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}' + 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": "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": "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: - - "34583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2305" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:48 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b97c889d-2cfa-4181-8ec2-956d8c3f7e71 + - b644e901-5c35-4346-a8d6-a169dbacddef + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 23.07278ms + duration: 71.368624ms - id: 23 request: proto: HTTP/1.1 @@ -1176,11 +1094,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.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/fr-par-2/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -1188,35 +1108,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1515 + content_length: 848 uncompressed: false - 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"}}}' + 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: - - "1515" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "848" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45734a6f-762f-4e2c-af7d-6082396d6577 + - 8904d466-2cd9-4de7-a6e7-fac37cf97308 X-Total-Count: - - "32" + - "68" status: 200 OK code: 200 - duration: 87.041769ms + duration: 65.25304ms - id: 24 request: proto: HTTP/1.1 @@ -1229,11 +1141,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/fr-par-3/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -1241,35 +1155,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 24777 + content_length: 24905 uncompressed: false - 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}}}}' + body: '{"servers": {"GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 433.912, "hourly_price": 0.5944, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 217.686, "hourly_price": 0.2982, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 107.748, "hourly_price": 0.1476, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 646.05, "hourly_price": 0.885, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.4825, "hourly_price": 0.1103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1291.1, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1938.15, "hourly_price": 2.655, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 160.965, "hourly_price": 0.2205, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2573.25, "hourly_price": 3.525, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 317.55, "hourly_price": 0.435, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 466.032, "hourly_price": 0.6384, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 58.254, "hourly_price": 0.0798, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 932.064, "hourly_price": 1.2768, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1390.65, "hourly_price": 1.905, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 116.508, "hourly_price": 0.1596, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1864.128, "hourly_price": 2.5536, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 233.016, "hourly_price": 0.3192, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 902.28, "hourly_price": 1.236, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 112.785, "hourly_price": 0.1545, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1804.56, "hourly_price": 2.472, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2704.65, "hourly_price": 3.705, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 225.57, "hourly_price": 0.309, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 3609.12, "hourly_price": 4.944, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 451.14, "hourly_price": 0.618, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 795.408, "hourly_price": 1.0896, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 279.663, "hourly_price": 0.3831, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 495.378, "hourly_price": 0.6786, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 959.95, "hourly_price": 1.315, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 480.34, "hourly_price": 0.658, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 240.17, "hourly_price": 0.329, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 119.72, "hourly_price": 0.164, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 59.86, "hourly_price": 0.082, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}' headers: Content-Length: - - "24777" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "24905" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:49 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 207b89c5-9e30-4652-af59-ecd7c13f1c3f + - 3474f7f1-928e-41c9-b4bc-8dd04fe83f8a X-Total-Count: - "32" status: 200 OK code: 200 - duration: 80.25641ms + duration: 34.898222ms - id: 25 request: proto: HTTP/1.1 @@ -1282,11 +1188,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-3 headers: User-Agent: - scaleway-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=fr-par-3 method: GET response: proto: HTTP/2.0 @@ -1294,31 +1206,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34583 + content_length: 36952 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-3", "description":"POP2-2C-8G - fr-par-3 (0.1103€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00091095007, "m3_water_usage":3.0167225e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-3", "description":"POP2-4C-16G - fr-par-3 (0.2205€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":220500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013344064, "m3_water_usage":3.019709e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-3", "description":"POP2-48C-192G - fr-par-3 (2.655€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":655000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010650447, "m3_water_usage":3.0854093e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-3", "description":"POP2-8C-32G - fr-par-3 (0.435€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":435000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021813193, "m3_water_usage":3.0256814e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-3", "description":"POP2-16C-64G - fr-par-3 (0.885€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":885000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038751448, "m3_water_usage":3.037627e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-3", "description":"POP2-32C-128G - fr-par-3 (1.77€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0072627957, "m3_water_usage":3.061518e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-3", "description":"POP2-64C-256G - fr-par-3 (3.525€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":525000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014038097, "m3_water_usage":3.1093002e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-3", "description":"PRO2-XXS - fr-par-3 (0.082€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":82000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00088632957, "m3_water_usage":3.0164195e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-3", "description":"PRO2-XS - fr-par-3 (0.164€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":164000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012851654, "m3_water_usage":3.0191025e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-3", "description":"PRO2-S - fr-par-3 (0.329€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":329000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020828373, "m3_water_usage":3.0244692e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-3", "description":"PRO2-M - fr-par-3 (0.658€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":658000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036781807, "m3_water_usage":3.0352023e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-3", "description":"PRO2-L - fr-par-3 (1.315€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":315000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0068688677, "m3_water_usage":3.0566685e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-3", "description":"GP1-XS Instance - fr-par-3 (0.137€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":137000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013456027, "m3_water_usage":2.3514449e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-3", "description":"GP1-S Instance - fr-par-3 (0.281€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":281000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023120437, "m3_water_usage":2.358873e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-3", "description":"GP1-M Instance - fr-par-3 (0.564€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":564000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0042449255, "m3_water_usage":2.373729e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-3", "description":"GP1-L Instance - fr-par-3 (1.139€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":139000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008110689, "m3_water_usage":2.4034408e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-3", "description":"GP1-XL Instance - fr-par-3 (2.462€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":462000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015588331, "m3_water_usage":2.4609136e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-3", "description":"POP2-HM-2C-16G - fr-par-3 (0.1545€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":154500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012284311, "m3_water_usage":3.017737e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-3", "description":"POP2-HM-4C-32G - fr-par-3 (0.309€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":309000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019693687, "m3_water_usage":3.0217382e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-3", "description":"POP2-HM-8C-64G - fr-par-3 (0.618€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":618000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034512435, "m3_water_usage":3.02974e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-3", "description":"POP2-HM-16C-128G - fr-par-3 (1.236€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":236000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006414993, "m3_water_usage":3.0457443e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-3", "description":"POP2-HM-32C-256G - fr-par-3 (2.472€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":472000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012342493, "m3_water_usage":3.0777525e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-3", "description":"POP2-HM-48C-384G - fr-par-3 (3.705€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":705000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018269992, "m3_water_usage":3.1097606e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-3", "description":"POP2-HM-64C-512G - fr-par-3 (4.944€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":4, "nanos":944000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02419749, "m3_water_usage":3.1417688e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-3", "description":"POP2-HC-2C-4G - fr-par-3 (0.0798€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":79800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007060738, "m3_water_usage":3.0152776e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-3", "description":"POP2-HC-4C-8G - fr-par-3 (0.1596€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":159600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000924654, "m3_water_usage":3.016819e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-3", "description":"POP2-HC-8C-16G - fr-par-3 (0.3192€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":319200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013618143, "m3_water_usage":3.0199022e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-3", "description":"POP2-HC-16C-32G - fr-par-3 (0.6384€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":638400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0022361348, "m3_water_usage":3.0260683e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-3", "description":"POP2-HC-32C-64G - fr-par-3 (1.2768€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":276800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0039847763, "m3_water_usage":3.0384e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-3", "description":"POP2-HC-48C-96G - fr-par-3 (1.905€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":905000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0057334173, "m3_water_usage":3.0507323e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-3", "description":"POP2-HC-64C-128G - fr-par-3 (2.5536€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":553600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007482059, "m3_water_usage":3.0630645e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-3", "description":"POP2-HN-10 - fr-par-3 (1.0896€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":89600000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000924654, "m3_water_usage":3.016819e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-3", "description":"POP2-HN-3 - fr-par-3 (0.3831€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":383100000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007060738, "m3_water_usage":3.0152776e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-3", "description":"POP2-HN-5 - fr-par-3 (0.6786€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":678600000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000924654, "m3_water_usage":3.016819e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":34}' headers: Content-Length: - - "34583" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "36952" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d96c66b9-e2eb-4347-ab69-870df0bb99a1 + - d71f4cc5-a048-4716-b473-dc597e80d8c4 status: 200 OK code: 200 - duration: 23.064754ms + duration: 21.103719ms - id: 26 request: proto: HTTP/1.1 @@ -1331,11 +1235,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/fr-par-3/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -1343,35 +1249,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1515 + content_length: 1491 uncompressed: false - 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"}}}' + 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": "scarce"}, "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": "scarce"}, "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": "available"}, "PRO2-S": {"availability": "available"}, "PRO2-XS": {"availability": "available"}, "PRO2-XXS": {"availability": "available"}}}' headers: Content-Length: - - "1515" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1491" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:49 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 74508797-a6b0-4167-bd99-c9d4c5e1666d + - ca242141-28fb-4d50-b78c-4724b827d9ae X-Total-Count: - "32" status: 200 OK code: 200 - duration: 89.013264ms + duration: 54.61559ms - id: 27 request: proto: HTTP/1.1 @@ -1384,11 +1282,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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-3/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -1396,35 +1296,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 24905 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}}}}' + body: '{"servers": {"GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 433.912, "hourly_price": 0.5944, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 217.686, "hourly_price": 0.2982, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 107.748, "hourly_price": 0.1476, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 646.05, "hourly_price": 0.885, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.4825, "hourly_price": 0.1103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1291.1, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1938.15, "hourly_price": 2.655, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 160.965, "hourly_price": 0.2205, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2573.25, "hourly_price": 3.525, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 317.55, "hourly_price": 0.435, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 466.032, "hourly_price": 0.6384, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 58.254, "hourly_price": 0.0798, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 932.064, "hourly_price": 1.2768, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1390.65, "hourly_price": 1.905, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 116.508, "hourly_price": 0.1596, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1864.128, "hourly_price": 2.5536, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 233.016, "hourly_price": 0.3192, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 902.28, "hourly_price": 1.236, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 112.785, "hourly_price": 0.1545, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1804.56, "hourly_price": 2.472, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2704.65, "hourly_price": 3.705, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 225.57, "hourly_price": 0.309, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 3609.12, "hourly_price": 4.944, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 451.14, "hourly_price": 0.618, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 795.408, "hourly_price": 1.0896, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 279.663, "hourly_price": 0.3831, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 495.378, "hourly_price": 0.6786, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 959.95, "hourly_price": 1.315, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 480.34, "hourly_price": 0.658, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 240.17, "hourly_price": 0.329, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 119.72, "hourly_price": 0.164, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 59.86, "hourly_price": 0.082, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "24905" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:49 GMT Link: - - ; rel="next",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 948b37a0-4693-433b-ad52-7dee574c8252 + - a8e33d05-1fe5-4398-b5d4-2bd252a82b5d X-Total-Count: - - "68" + - "32" status: 200 OK code: 200 - duration: 84.983751ms + duration: 39.12749ms - id: 28 request: proto: HTTP/1.1 @@ -1437,11 +1329,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-3 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=fr-par-3 method: GET response: proto: HTTP/2.0 @@ -1449,35 +1347,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14295 + content_length: 36952 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}}}}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-3", "description":"POP2-2C-8G - fr-par-3 (0.1103€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00091095007, "m3_water_usage":3.0167225e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-3", "description":"POP2-4C-16G - fr-par-3 (0.2205€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":220500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013344064, "m3_water_usage":3.019709e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-3", "description":"POP2-48C-192G - fr-par-3 (2.655€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":655000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010650447, "m3_water_usage":3.0854093e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-3", "description":"POP2-8C-32G - fr-par-3 (0.435€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":435000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021813193, "m3_water_usage":3.0256814e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-3", "description":"POP2-16C-64G - fr-par-3 (0.885€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":885000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038751448, "m3_water_usage":3.037627e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-3", "description":"POP2-32C-128G - fr-par-3 (1.77€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0072627957, "m3_water_usage":3.061518e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-3", "description":"POP2-64C-256G - fr-par-3 (3.525€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":525000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014038097, "m3_water_usage":3.1093002e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-3", "description":"PRO2-XXS - fr-par-3 (0.082€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":82000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00088632957, "m3_water_usage":3.0164195e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-3", "description":"PRO2-XS - fr-par-3 (0.164€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":164000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012851654, "m3_water_usage":3.0191025e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-3", "description":"PRO2-S - fr-par-3 (0.329€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":329000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020828373, "m3_water_usage":3.0244692e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-3", "description":"PRO2-M - fr-par-3 (0.658€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":658000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036781807, "m3_water_usage":3.0352023e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-3", "description":"PRO2-L - fr-par-3 (1.315€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":315000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0068688677, "m3_water_usage":3.0566685e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-3", "description":"GP1-XS Instance - fr-par-3 (0.137€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":137000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013456027, "m3_water_usage":2.3514449e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-3", "description":"GP1-S Instance - fr-par-3 (0.281€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":281000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023120437, "m3_water_usage":2.358873e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-3", "description":"GP1-M Instance - fr-par-3 (0.564€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":564000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0042449255, "m3_water_usage":2.373729e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-3", "description":"GP1-L Instance - fr-par-3 (1.139€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":139000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008110689, "m3_water_usage":2.4034408e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-3", "description":"GP1-XL Instance - fr-par-3 (2.462€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":462000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015588331, "m3_water_usage":2.4609136e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-3", "description":"POP2-HM-2C-16G - fr-par-3 (0.1545€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":154500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012284311, "m3_water_usage":3.017737e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-3", "description":"POP2-HM-4C-32G - fr-par-3 (0.309€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":309000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019693687, "m3_water_usage":3.0217382e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-3", "description":"POP2-HM-8C-64G - fr-par-3 (0.618€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":618000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034512435, "m3_water_usage":3.02974e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-3", "description":"POP2-HM-16C-128G - fr-par-3 (1.236€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":236000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006414993, "m3_water_usage":3.0457443e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-3", "description":"POP2-HM-32C-256G - fr-par-3 (2.472€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":472000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012342493, "m3_water_usage":3.0777525e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-3", "description":"POP2-HM-48C-384G - fr-par-3 (3.705€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":705000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018269992, "m3_water_usage":3.1097606e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-3", "description":"POP2-HM-64C-512G - fr-par-3 (4.944€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":4, "nanos":944000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02419749, "m3_water_usage":3.1417688e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-3", "description":"POP2-HC-2C-4G - fr-par-3 (0.0798€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":79800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007060738, "m3_water_usage":3.0152776e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-3", "description":"POP2-HC-4C-8G - fr-par-3 (0.1596€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":159600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000924654, "m3_water_usage":3.016819e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-3", "description":"POP2-HC-8C-16G - fr-par-3 (0.3192€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":319200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013618143, "m3_water_usage":3.0199022e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-3", "description":"POP2-HC-16C-32G - fr-par-3 (0.6384€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":638400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0022361348, "m3_water_usage":3.0260683e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-3", "description":"POP2-HC-32C-64G - fr-par-3 (1.2768€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":276800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0039847763, "m3_water_usage":3.0384e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-3", "description":"POP2-HC-48C-96G - fr-par-3 (1.905€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":905000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0057334173, "m3_water_usage":3.0507323e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-3", "description":"POP2-HC-64C-128G - fr-par-3 (2.5536€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":553600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007482059, "m3_water_usage":3.0630645e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-3", "description":"POP2-HN-10 - fr-par-3 (1.0896€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":89600000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000924654, "m3_water_usage":3.016819e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-3", "description":"POP2-HN-3 - fr-par-3 (0.3831€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":383100000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007060738, "m3_water_usage":3.0152776e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-3", "description":"POP2-HN-5 - fr-par-3 (0.6786€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":678600000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000924654, "m3_water_usage":3.016819e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":34}' headers: Content-Length: - - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "36952" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 14ca0319-cf9b-47eb-90be-6b6404751456 - X-Total-Count: - - "68" + - 4b07a5cd-a597-4877-bcc2-d944d65d9aa1 status: 200 OK code: 200 - duration: 42.918651ms + duration: 24.190872ms - id: 29 request: proto: HTTP/1.1 @@ -1490,11 +1376,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-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/instance/v1/zones/fr-par-3/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -1502,31 +1390,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63436 + content_length: 1491 uncompressed: false - 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}' + 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": "scarce"}, "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": "scarce"}, "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": "available"}, "PRO2-S": {"availability": "available"}, "PRO2-XS": {"availability": "available"}, "PRO2-XXS": {"availability": "available"}}}' headers: Content-Length: - - "63436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1491" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:49 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 74672d52-1f09-4abd-85de-b185648a7aad + - ff853474-d60c-4bdc-a4e4-b896a2308f40 + X-Total-Count: + - "32" status: 200 OK code: 200 - duration: 22.719768ms + duration: 63.447745ms - id: 30 request: proto: HTTP/1.1 @@ -1539,11 +1423,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/fr-par-3/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -1551,35 +1437,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 24905 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"},"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"}}}' + body: '{"servers": {"GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 433.912, "hourly_price": 0.5944, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 217.686, "hourly_price": 0.2982, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 107.748, "hourly_price": 0.1476, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 646.05, "hourly_price": 0.885, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.4825, "hourly_price": 0.1103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1291.1, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1938.15, "hourly_price": 2.655, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 160.965, "hourly_price": 0.2205, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2573.25, "hourly_price": 3.525, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 317.55, "hourly_price": 0.435, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 466.032, "hourly_price": 0.6384, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 58.254, "hourly_price": 0.0798, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 932.064, "hourly_price": 1.2768, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1390.65, "hourly_price": 1.905, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 116.508, "hourly_price": 0.1596, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1864.128, "hourly_price": 2.5536, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 233.016, "hourly_price": 0.3192, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 902.28, "hourly_price": 1.236, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 112.785, "hourly_price": 0.1545, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1804.56, "hourly_price": 2.472, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2704.65, "hourly_price": 3.705, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 225.57, "hourly_price": 0.309, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 3609.12, "hourly_price": 4.944, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 451.14, "hourly_price": 0.618, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 795.408, "hourly_price": 1.0896, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 279.663, "hourly_price": 0.3831, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 495.378, "hourly_price": 0.6786, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 959.95, "hourly_price": 1.315, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 480.34, "hourly_price": 0.658, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 240.17, "hourly_price": 0.329, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 119.72, "hourly_price": 0.164, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 59.86, "hourly_price": 0.082, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}' headers: Content-Length: - - "2345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "24905" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:49 GMT Link: - - ; rel="next",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dd043940-6a25-48fa-bbd7-3a594fbe3830 + - 8a9380e9-5d05-4777-bb3e-28dd63c65720 X-Total-Count: - - "68" + - "32" status: 200 OK code: 200 - duration: 87.672801ms + duration: 36.416391ms - id: 31 request: proto: HTTP/1.1 @@ -1592,11 +1470,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-3 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=fr-par-3 method: GET response: proto: HTTP/2.0 @@ -1604,35 +1488,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 36952 uncompressed: false - 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"}}}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-3", "description":"POP2-2C-8G - fr-par-3 (0.1103€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00091095007, "m3_water_usage":3.0167225e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-3", "description":"POP2-4C-16G - fr-par-3 (0.2205€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":220500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013344064, "m3_water_usage":3.019709e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-3", "description":"POP2-48C-192G - fr-par-3 (2.655€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":655000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010650447, "m3_water_usage":3.0854093e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-3", "description":"POP2-8C-32G - fr-par-3 (0.435€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":435000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021813193, "m3_water_usage":3.0256814e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-3", "description":"POP2-16C-64G - fr-par-3 (0.885€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":885000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038751448, "m3_water_usage":3.037627e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-3", "description":"POP2-32C-128G - fr-par-3 (1.77€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0072627957, "m3_water_usage":3.061518e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-3", "description":"POP2-64C-256G - fr-par-3 (3.525€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":525000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014038097, "m3_water_usage":3.1093002e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-3", "description":"PRO2-XXS - fr-par-3 (0.082€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":82000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00088632957, "m3_water_usage":3.0164195e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-3", "description":"PRO2-XS - fr-par-3 (0.164€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":164000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012851654, "m3_water_usage":3.0191025e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-3", "description":"PRO2-S - fr-par-3 (0.329€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":329000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020828373, "m3_water_usage":3.0244692e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-3", "description":"PRO2-M - fr-par-3 (0.658€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":658000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036781807, "m3_water_usage":3.0352023e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-3", "description":"PRO2-L - fr-par-3 (1.315€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":315000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0068688677, "m3_water_usage":3.0566685e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-3", "description":"GP1-XS Instance - fr-par-3 (0.137€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":137000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013456027, "m3_water_usage":2.3514449e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-3", "description":"GP1-S Instance - fr-par-3 (0.281€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":281000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023120437, "m3_water_usage":2.358873e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-3", "description":"GP1-M Instance - fr-par-3 (0.564€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":564000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0042449255, "m3_water_usage":2.373729e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-3", "description":"GP1-L Instance - fr-par-3 (1.139€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":139000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008110689, "m3_water_usage":2.4034408e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-3", "description":"GP1-XL Instance - fr-par-3 (2.462€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":462000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015588331, "m3_water_usage":2.4609136e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-3", "description":"POP2-HM-2C-16G - fr-par-3 (0.1545€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":154500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012284311, "m3_water_usage":3.017737e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-3", "description":"POP2-HM-4C-32G - fr-par-3 (0.309€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":309000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019693687, "m3_water_usage":3.0217382e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-3", "description":"POP2-HM-8C-64G - fr-par-3 (0.618€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":618000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034512435, "m3_water_usage":3.02974e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-3", "description":"POP2-HM-16C-128G - fr-par-3 (1.236€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":236000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006414993, "m3_water_usage":3.0457443e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-3", "description":"POP2-HM-32C-256G - fr-par-3 (2.472€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":472000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012342493, "m3_water_usage":3.0777525e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-3", "description":"POP2-HM-48C-384G - fr-par-3 (3.705€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":705000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018269992, "m3_water_usage":3.1097606e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-3", "description":"POP2-HM-64C-512G - fr-par-3 (4.944€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":4, "nanos":944000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02419749, "m3_water_usage":3.1417688e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-3", "description":"POP2-HC-2C-4G - fr-par-3 (0.0798€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":79800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007060738, "m3_water_usage":3.0152776e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-3", "description":"POP2-HC-4C-8G - fr-par-3 (0.1596€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":159600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000924654, "m3_water_usage":3.016819e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-3", "description":"POP2-HC-8C-16G - fr-par-3 (0.3192€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":319200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013618143, "m3_water_usage":3.0199022e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-3", "description":"POP2-HC-16C-32G - fr-par-3 (0.6384€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":638400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0022361348, "m3_water_usage":3.0260683e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-3", "description":"POP2-HC-32C-64G - fr-par-3 (1.2768€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":276800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0039847763, "m3_water_usage":3.0384e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-3", "description":"POP2-HC-48C-96G - fr-par-3 (1.905€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":905000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0057334173, "m3_water_usage":3.0507323e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-3", "description":"POP2-HC-64C-128G - fr-par-3 (2.5536€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":553600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007482059, "m3_water_usage":3.0630645e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-3", "description":"POP2-HN-10 - fr-par-3 (1.0896€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":89600000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000924654, "m3_water_usage":3.016819e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-3", "description":"POP2-HN-3 - fr-par-3 (0.3831€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":383100000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007060738, "m3_water_usage":3.0152776e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_fr-par-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-3", "description":"POP2-HN-5 - fr-par-3 (0.6786€ per hour)", "locality":{"zone":"fr-par-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":678600000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.000924654, "m3_water_usage":3.016819e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":34}' headers: Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "36952" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d2f0864b-455d-4891-9e74-d525398451ae - X-Total-Count: - - "68" + - 978ab0db-7522-4caa-bd31-3ebd36dc3e5d status: 200 OK code: 200 - duration: 90.077109ms + duration: 51.82358ms - id: 32 request: proto: HTTP/1.1 @@ -1645,11 +1517,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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-3/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -1657,35 +1531,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 1491 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}}}}' + 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": "scarce"}, "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": "scarce"}, "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": "available"}, "PRO2-S": {"availability": "available"}, "PRO2-XS": {"availability": "available"}, "PRO2-XXS": {"availability": "available"}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1491" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:49 GMT Link: - - ; rel="next",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b5681754-974e-47e6-840e-a581389fb90a + - b29e5b21-cc2a-4895-acab-445cd28d1e9c X-Total-Count: - - "68" + - "32" status: 200 OK code: 200 - duration: 99.982988ms + duration: 55.316581ms - id: 33 request: proto: HTTP/1.1 @@ -1698,11 +1564,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/nl-ams-3/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -1710,35 +1578,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14295 + content_length: 24777 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}}}}' + body: '{"servers": {"PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}' headers: Content-Length: - - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "24777" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:50 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e35b7d19-13b4-4c48-a982-4fd37d941392 + - 616cdab7-b9f1-498b-b09b-a4addb339e61 X-Total-Count: - - "68" + - "32" status: 200 OK code: 200 - duration: 45.868871ms + duration: 60.172621ms - id: 34 request: proto: HTTP/1.1 @@ -1751,11 +1611,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - nl-ams-3 headers: User-Agent: - scaleway-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=nl-ams-3 method: GET response: proto: HTTP/2.0 @@ -1763,31 +1629,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63436 + content_length: 33493 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - nl-ams-3", "description":"POP2-2C-8G - nl-ams-3 (0.0735€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031964844}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - nl-ams-3", "description":"POP2-4C-16G - nl-ams-3 (0.147€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003978665}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - nl-ams-3", "description":"POP2-48C-192G - nl-ams-3 (1.77€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021186637}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - nl-ams-3", "description":"POP2-8C-32G - nl-ams-3 (0.29€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005543026}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - nl-ams-3", "description":"POP2-16C-64G - nl-ams-3 (0.59€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0086717475}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - nl-ams-3", "description":"POP2-32C-128G - nl-ams-3 (1.18€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014929192}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - nl-ams-3", "description":"POP2-64C-256G - nl-ams-3 (2.35€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02744408}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - nl-ams-3", "description":"PRO2-XXS - nl-ams-3 (0.055€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003135455}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - nl-ams-3", "description":"PRO2-XS - nl-ams-3 (0.11€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038566063}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - nl-ams-3", "description":"PRO2-S - nl-ams-3 (0.219€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005298909}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - nl-ams-3", "description":"PRO2-M - nl-ams-3 (0.438€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008183513}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - nl-ams-3", "description":"PRO2-L - nl-ams-3 (0.877€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013952723}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - nl-ams-3", "description":"PLAY2-PICO - nl-ams-3 (0.014€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025745307}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - nl-ams-3", "description":"PLAY2-NANO - nl-ams-3 (0.027€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0027347575}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - nl-ams-3", "description":"PLAY2-MICRO - nl-ams-3 (0.054€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0030552107}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - nl-ams-3", "description":"POP2-HM-2C-16G - nl-ams-3 (0.103€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036358447}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - nl-ams-3", "description":"POP2-HM-4C-32G - nl-ams-3 (0.206€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0048573855}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - nl-ams-3", "description":"POP2-HM-8C-64G - nl-ams-3 (0.412€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073004668}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - nl-ams-3", "description":"POP2-HM-16C-128G - nl-ams-3 (0.824€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01218663}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - nl-ams-3", "description":"POP2-HM-32C-256G - nl-ams-3 (1.648€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021958956}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - nl-ams-3", "description":"POP2-HM-48C-384G - nl-ams-3 (2.47€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03173128}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - nl-ams-3", "description":"POP2-HM-64C-512G - nl-ams-3 (3.296€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.04150361}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - nl-ams-3", "description":"POP2-HC-2C-4G - nl-ams-3 (0.0532€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028180508}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - nl-ams-3", "description":"POP2-HC-4C-8G - nl-ams-3 (0.1064€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032217975}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - nl-ams-3", "description":"POP2-HC-8C-16G - nl-ams-3 (0.2128€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004029291}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - nl-ams-3", "description":"POP2-HC-16C-32G - nl-ams-3 (0.4256€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005644278}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - nl-ams-3", "description":"POP2-HC-32C-64G - nl-ams-3 (0.8512€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008874252}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - nl-ams-3", "description":"POP2-HC-48C-96G - nl-ams-3 (1.27€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012104226}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - nl-ams-3", "description":"POP2-HC-64C-128G - nl-ams-3 (1.7024€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0153342}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - nl-ams-3", "description":"POP2-HN-10 - nl-ams-3 (0.7264€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032217975}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - nl-ams-3", "description":"POP2-HN-3 - nl-ams-3 (0.2554€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028180508}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - nl-ams-3", "description":"POP2-HN-5 - nl-ams-3 (0.4524€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032217975}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":32}' headers: Content-Length: - - "63436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "33493" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d969a4b5-df72-4ddd-a99d-cf709f4acc5a + - 8a0d8be3-79ba-4aa7-8854-82b129ed02f2 status: 200 OK code: 200 - duration: 22.621795ms + duration: 29.196261ms - id: 35 request: proto: HTTP/1.1 @@ -1800,11 +1658,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/nl-ams-3/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -1812,35 +1672,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 1515 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"},"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"}}}' + 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: - - "2345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1515" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:50 GMT Link: - - ; rel="next",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0d9c8fb7-4073-479a-a1c9-57bab506ad2e + - e8cb8805-825b-4a7c-bb6b-36e51313273a X-Total-Count: - - "68" + - "32" status: 200 OK code: 200 - duration: 92.420832ms + duration: 72.533152ms - id: 36 request: proto: HTTP/1.1 @@ -1853,11 +1705,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/nl-ams-3/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -1865,35 +1719,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 24777 uncompressed: false - 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"}}}' + body: '{"servers": {"PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}' headers: Content-Length: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "24777" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:50 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7c094004-1397-44da-9bb8-07c12825f8ab + - 79abf59b-dd47-4de2-95f7-1a439688deab X-Total-Count: - - "68" + - "32" status: 200 OK code: 200 - duration: 73.16094ms + duration: 73.501744ms - id: 37 request: proto: HTTP/1.1 @@ -1906,11 +1752,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - nl-ams-3 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-3 method: GET response: proto: HTTP/2.0 @@ -1918,35 +1770,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 33493 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}}}}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - nl-ams-3", "description":"POP2-2C-8G - nl-ams-3 (0.0735€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031964844}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - nl-ams-3", "description":"POP2-4C-16G - nl-ams-3 (0.147€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003978665}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - nl-ams-3", "description":"POP2-48C-192G - nl-ams-3 (1.77€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021186637}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - nl-ams-3", "description":"POP2-8C-32G - nl-ams-3 (0.29€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005543026}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - nl-ams-3", "description":"POP2-16C-64G - nl-ams-3 (0.59€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0086717475}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - nl-ams-3", "description":"POP2-32C-128G - nl-ams-3 (1.18€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014929192}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - nl-ams-3", "description":"POP2-64C-256G - nl-ams-3 (2.35€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02744408}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - nl-ams-3", "description":"PRO2-XXS - nl-ams-3 (0.055€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003135455}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - nl-ams-3", "description":"PRO2-XS - nl-ams-3 (0.11€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038566063}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - nl-ams-3", "description":"PRO2-S - nl-ams-3 (0.219€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005298909}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - nl-ams-3", "description":"PRO2-M - nl-ams-3 (0.438€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008183513}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - nl-ams-3", "description":"PRO2-L - nl-ams-3 (0.877€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013952723}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - nl-ams-3", "description":"PLAY2-PICO - nl-ams-3 (0.014€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025745307}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - nl-ams-3", "description":"PLAY2-NANO - nl-ams-3 (0.027€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0027347575}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - nl-ams-3", "description":"PLAY2-MICRO - nl-ams-3 (0.054€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0030552107}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - nl-ams-3", "description":"POP2-HM-2C-16G - nl-ams-3 (0.103€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036358447}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - nl-ams-3", "description":"POP2-HM-4C-32G - nl-ams-3 (0.206€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0048573855}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - nl-ams-3", "description":"POP2-HM-8C-64G - nl-ams-3 (0.412€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073004668}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - nl-ams-3", "description":"POP2-HM-16C-128G - nl-ams-3 (0.824€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01218663}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - nl-ams-3", "description":"POP2-HM-32C-256G - nl-ams-3 (1.648€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021958956}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - nl-ams-3", "description":"POP2-HM-48C-384G - nl-ams-3 (2.47€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03173128}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - nl-ams-3", "description":"POP2-HM-64C-512G - nl-ams-3 (3.296€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.04150361}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - nl-ams-3", "description":"POP2-HC-2C-4G - nl-ams-3 (0.0532€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028180508}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - nl-ams-3", "description":"POP2-HC-4C-8G - nl-ams-3 (0.1064€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032217975}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - nl-ams-3", "description":"POP2-HC-8C-16G - nl-ams-3 (0.2128€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004029291}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - nl-ams-3", "description":"POP2-HC-16C-32G - nl-ams-3 (0.4256€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005644278}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - nl-ams-3", "description":"POP2-HC-32C-64G - nl-ams-3 (0.8512€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008874252}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - nl-ams-3", "description":"POP2-HC-48C-96G - nl-ams-3 (1.27€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012104226}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - nl-ams-3", "description":"POP2-HC-64C-128G - nl-ams-3 (1.7024€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0153342}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - nl-ams-3", "description":"POP2-HN-10 - nl-ams-3 (0.7264€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032217975}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - nl-ams-3", "description":"POP2-HN-3 - nl-ams-3 (0.2554€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028180508}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - nl-ams-3", "description":"POP2-HN-5 - nl-ams-3 (0.4524€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032217975}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":32}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "33493" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0b2f0cb7-8bd8-415b-a42e-04f2bcae4613 - X-Total-Count: - - "68" + - 96177cfa-409b-449b-b86d-e68060ff6382 status: 200 OK code: 200 - duration: 101.13133ms + duration: 22.939091ms - id: 38 request: proto: HTTP/1.1 @@ -1959,11 +1799,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/nl-ams-3/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -1971,35 +1813,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14295 + content_length: 1515 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}}}}' + 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: - - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1515" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:50 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0e14921c-de79-475e-bf18-8188ddac0a59 + - 614c71fa-52d1-4b22-8b76-1a2a16b763f2 X-Total-Count: - - "68" + - "32" status: 200 OK code: 200 - duration: 47.672702ms + duration: 68.810461ms - id: 39 request: proto: HTTP/1.1 @@ -2012,11 +1846,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-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/instance/v1/zones/nl-ams-3/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -2024,31 +1860,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63436 + content_length: 24777 uncompressed: false - 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}' + body: '{"servers": {"PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}' headers: Content-Length: - - "63436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "24777" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:50 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f79f9d29-7437-4993-acf8-34aa015eece3 + - 1c3ef901-8abc-4300-961f-63b9e7bde338 + X-Total-Count: + - "32" status: 200 OK code: 200 - duration: 21.374026ms + duration: 52.274422ms - id: 40 request: proto: HTTP/1.1 @@ -2061,11 +1893,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - nl-ams-3 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-3 method: GET response: proto: HTTP/2.0 @@ -2073,35 +1911,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 33493 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"},"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"}}}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - nl-ams-3", "description":"POP2-2C-8G - nl-ams-3 (0.0735€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031964844}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - nl-ams-3", "description":"POP2-4C-16G - nl-ams-3 (0.147€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003978665}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - nl-ams-3", "description":"POP2-48C-192G - nl-ams-3 (1.77€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021186637}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - nl-ams-3", "description":"POP2-8C-32G - nl-ams-3 (0.29€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005543026}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - nl-ams-3", "description":"POP2-16C-64G - nl-ams-3 (0.59€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0086717475}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - nl-ams-3", "description":"POP2-32C-128G - nl-ams-3 (1.18€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014929192}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - nl-ams-3", "description":"POP2-64C-256G - nl-ams-3 (2.35€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02744408}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - nl-ams-3", "description":"PRO2-XXS - nl-ams-3 (0.055€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003135455}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - nl-ams-3", "description":"PRO2-XS - nl-ams-3 (0.11€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038566063}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - nl-ams-3", "description":"PRO2-S - nl-ams-3 (0.219€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005298909}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - nl-ams-3", "description":"PRO2-M - nl-ams-3 (0.438€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008183513}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - nl-ams-3", "description":"PRO2-L - nl-ams-3 (0.877€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013952723}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - nl-ams-3", "description":"PLAY2-PICO - nl-ams-3 (0.014€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025745307}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - nl-ams-3", "description":"PLAY2-NANO - nl-ams-3 (0.027€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0027347575}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - nl-ams-3", "description":"PLAY2-MICRO - nl-ams-3 (0.054€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0030552107}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - nl-ams-3", "description":"POP2-HM-2C-16G - nl-ams-3 (0.103€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036358447}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - nl-ams-3", "description":"POP2-HM-4C-32G - nl-ams-3 (0.206€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0048573855}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - nl-ams-3", "description":"POP2-HM-8C-64G - nl-ams-3 (0.412€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073004668}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - nl-ams-3", "description":"POP2-HM-16C-128G - nl-ams-3 (0.824€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01218663}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - nl-ams-3", "description":"POP2-HM-32C-256G - nl-ams-3 (1.648€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021958956}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - nl-ams-3", "description":"POP2-HM-48C-384G - nl-ams-3 (2.47€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03173128}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - nl-ams-3", "description":"POP2-HM-64C-512G - nl-ams-3 (3.296€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.04150361}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - nl-ams-3", "description":"POP2-HC-2C-4G - nl-ams-3 (0.0532€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028180508}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - nl-ams-3", "description":"POP2-HC-4C-8G - nl-ams-3 (0.1064€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032217975}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - nl-ams-3", "description":"POP2-HC-8C-16G - nl-ams-3 (0.2128€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004029291}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - nl-ams-3", "description":"POP2-HC-16C-32G - nl-ams-3 (0.4256€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005644278}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - nl-ams-3", "description":"POP2-HC-32C-64G - nl-ams-3 (0.8512€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008874252}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - nl-ams-3", "description":"POP2-HC-48C-96G - nl-ams-3 (1.27€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012104226}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - nl-ams-3", "description":"POP2-HC-64C-128G - nl-ams-3 (1.7024€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0153342}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - nl-ams-3", "description":"POP2-HN-10 - nl-ams-3 (0.7264€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032217975}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - nl-ams-3", "description":"POP2-HN-3 - nl-ams-3 (0.2554€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028180508}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_nl-ams-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - nl-ams-3", "description":"POP2-HN-5 - nl-ams-3 (0.4524€ per hour)", "locality":{"zone":"nl-ams-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032217975}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":32}' headers: Content-Length: - - "2345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "33493" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2f3b8776-def2-4002-8384-969a1a995a1f - X-Total-Count: - - "68" + - 943b932b-c647-4d68-aa08-c99b5d7e5f4b status: 200 OK code: 200 - duration: 112.021934ms + duration: 25.263938ms - id: 41 request: proto: HTTP/1.1 @@ -2114,11 +1940,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/nl-ams-3/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -2126,35 +1954,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 770 + content_length: 1515 uncompressed: false - 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"}}}' + 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: - - "770" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1515" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:50 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 20400e2c-1302-4a7e-a45a-816679f6b0db + - bbbfbbc6-a564-427d-baba-841b38438a33 X-Total-Count: - - "68" + - "32" status: 200 OK code: 200 - duration: 99.158914ms + duration: 91.490188ms - id: 42 request: proto: HTTP/1.1 @@ -2167,11 +1987,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -2179,35 +2001,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 40272 + content_length: 39730 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}},"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}}}}' + body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "H100-1-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 24, "ram": 257698037760, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3000000000000, "monthly_price": 1992.9, "hourly_price": 2.73, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "H100-2-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 515396075520, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6000000000000, "monthly_price": 3985.8, "hourly_price": 5.46, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 4194304000, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "L40S-1-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 103079215104, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 1600000000000, "monthly_price": 1022.0, "hourly_price": 1.4, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L40S-2-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 206158430208, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3200000000000, "monthly_price": 2044.0, "hourly_price": 2.8, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L40S-4-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 412316860416, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6400000000000, "monthly_price": 4088.0, "hourly_price": 5.6, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L40S-8-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 824633720832, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 12800000000000, "monthly_price": 8176.0, "hourly_price": 11.2, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}}}' headers: Content-Length: - - "40272" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39730" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d1dd618d-e6df-45e7-ae96-246e77dc662f + - 7004ecf5-9507-4f5c-b715-039d254a45e5 X-Total-Count: - - "68" + - "52" status: 200 OK code: 200 - duration: 43.257726ms + duration: 98.605062ms - id: 43 request: proto: HTTP/1.1 @@ -2220,11 +2034,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -2232,35 +2048,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14060 + content_length: 1575 uncompressed: false - 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}}}}' + body: '{"servers": {"PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}}}' headers: Content-Length: - - "14060" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1575" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 92da10a8-99df-4f55-9a99-6a399be5d1f4 + - b6256a5e-00ce-4b5a-b74f-da7003febd60 X-Total-Count: - - "68" + - "52" status: 200 OK code: 200 - duration: 49.567584ms + duration: 95.072627ms - id: 44 request: proto: HTTP/1.1 @@ -2273,11 +2081,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - pl-waw-2 headers: User-Agent: - scaleway-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-2 + 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 @@ -2285,31 +2099,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 73161 + content_length: 54571 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - pl-waw-2", "description":"POP2-2C-8G - pl-waw-2 (0.0735€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0030845914}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - pl-waw-2", "description":"POP2-4C-16G - pl-waw-2 (0.147€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0045521464}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - pl-waw-2", "description":"POP2-48C-192G - pl-waw-2 (1.77€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.036838356}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - pl-waw-2", "description":"POP2-8C-32G - pl-waw-2 (0.29€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007487256}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - pl-waw-2", "description":"POP2-16C-64G - pl-waw-2 (0.59€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013357476}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - pl-waw-2", "description":"POP2-32C-128G - pl-waw-2 (1.18€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.025097916}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - pl-waw-2", "description":"POP2-64C-256G - pl-waw-2 (2.35€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.048578795}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - pl-waw-2", "description":"PRO2-XXS - pl-waw-2 (0.055€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029539997}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - pl-waw-2", "description":"PRO2-XS - pl-waw-2 (0.11€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004290963}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - pl-waw-2", "description":"PRO2-S - pl-waw-2 (0.219€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0069648894}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - pl-waw-2", "description":"PRO2-M - pl-waw-2 (0.438€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012312743}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - pl-waw-2", "description":"PRO2-L - pl-waw-2 (0.877€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.023008449}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - pl-waw-2", "description":"GP1-XS Instance - pl-waw-2 (0.091€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004821113}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - pl-waw-2", "description":"GP1-S Instance - pl-waw-2 (0.187€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00838453}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - pl-waw-2", "description":"GP1-M Instance - pl-waw-2 (0.376€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015511366}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - pl-waw-2", "description":"GP1-L Instance - pl-waw-2 (0.759€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.029765036}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - pl-waw-2", "description":"GP1-XL Instance - pl-waw-2 (1.641€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.057336263}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - pl-waw-2", "description":"STARDUST1-S - pl-waw-2 (0.00015€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013649596}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - pl-waw-2", "description":"DEV1-S Instance - pl-waw-2 (0.0088€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016878293}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - pl-waw-2", "description":"DEV1-M Instance - pl-waw-2 (0.0198€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0022492055}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - pl-waw-2", "description":"DEV1-L Instance - pl-waw-2 (0.042€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032875945}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - pl-waw-2", "description":"DEV1-XL Instance - pl-waw-2 (0.063799999€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0042416207}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - pl-waw-2", "description":"PLAY2-PICO - pl-waw-2 (0.014€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018977058}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - pl-waw-2", "description":"PLAY2-NANO - pl-waw-2 (0.027€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021783754}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - pl-waw-2", "description":"PLAY2-MICRO - pl-waw-2 (0.054€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0027397145}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - pl-waw-2", "description":"POP2-HM-2C-16G - pl-waw-2 (0.103€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0037568125}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - pl-waw-2", "description":"POP2-HM-4C-32G - pl-waw-2 (0.206€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005896589}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - pl-waw-2", "description":"POP2-HM-8C-64G - pl-waw-2 (0.412€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010176142}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - pl-waw-2", "description":"POP2-HM-16C-128G - pl-waw-2 (0.824€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018735247}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - pl-waw-2", "description":"POP2-HM-32C-256G - pl-waw-2 (1.648€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.035853457}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - pl-waw-2", "description":"POP2-HM-48C-384G - pl-waw-2 (2.47€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.05297167}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - pl-waw-2", "description":"POP2-HM-64C-512G - pl-waw-2 (3.296€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.07008988}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - pl-waw-2", "description":"POP2-HC-2C-4G - pl-waw-2 (0.0532€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023745603}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - pl-waw-2", "description":"POP2-HC-4C-8G - pl-waw-2 (0.1064€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031320846}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - pl-waw-2", "description":"POP2-HC-8C-16G - pl-waw-2 (0.2128€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0046471325}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - pl-waw-2", "description":"POP2-HC-16C-32G - pl-waw-2 (0.4256€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007677229}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - pl-waw-2", "description":"POP2-HC-32C-64G - pl-waw-2 (0.8512€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0137374215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - pl-waw-2", "description":"POP2-HC-48C-96G - pl-waw-2 (1.27€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.019797614}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - pl-waw-2", "description":"POP2-HC-64C-128G - pl-waw-2 (1.7024€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.025857806}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - pl-waw-2", "description":"POP2-HN-10 - pl-waw-2 (0.7264€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031320846}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - pl-waw-2", "description":"POP2-HN-3 - pl-waw-2 (0.2554€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023745603}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - pl-waw-2", "description":"POP2-HN-5 - pl-waw-2 (0.4524€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031320846}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_1_80g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-1-80G", "variant":"H100-1-80G - pl-waw-2", "description":"H100-1-80G - pl-waw-2 (0.0455€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":45500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":24}, "threads":24}, "ram":{"description":"240 GiB", "size":257698037760, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"1 x H100-PCIe", "count":1, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-1-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_2_80g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-2-80G", "variant":"H100-2-80G - pl-waw-2", "description":"H100-2-80G - pl-waw-2 (0.091€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":48}, "threads":48}, "ram":{"description":"480 GiB", "size":515396075520, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"2 x H100-PCIe", "count":2, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-2-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_1_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-1-48G", "variant":"L40S-1-48G - pl-waw-2", "description":"L40S-1-48G - pl-waw-2 (0.023332€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":23332000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 8", "arch":"x64", "type":"", "virtual":{"count":8}, "threads":8}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L40S", "count":1, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-1-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_2_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-2-48G", "variant":"L40S-2-48G - pl-waw-2", "description":"L40S-2-48G - pl-waw-2 (0.046664€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":46664000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 16", "arch":"x64", "type":"", "virtual":{"count":16}, "threads":16}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L40S", "count":2, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-2-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_4_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-4-48G", "variant":"L40S-4-48G - pl-waw-2", "description":"L40S-4-48G - pl-waw-2 (0.093328€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":93328000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 32", "arch":"x64", "type":"", "virtual":{"count":32}, "threads":32}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L40S", "count":4, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-4-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_8_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-8-48G", "variant":"L40S-8-48G - pl-waw-2", "description":"L40S-8-48G - pl-waw-2 (0.186656€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":186656000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 64", "arch":"x64", "type":"", "virtual":{"count":64}, "threads":64}, "ram":{"description":"768 GiB", "size":824633720832, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L40S", "count":8, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-8-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - pl-waw-2", "description":"L4-1-24G - pl-waw-2 (0.0125€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - pl-waw-2", "description":"L4-2-24G - pl-waw-2 (0.025€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - pl-waw-2", "description":"L4-4-24G - pl-waw-2 (0.05€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - pl-waw-2", "description":"L4-8-24G - pl-waw-2 (0.1€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}], "total_count":52}' headers: Content-Length: - - "73161" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "54571" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f3be39f9-9953-4716-a414-79854852ac3a + - 0f9b6a9f-58d4-4518-9e68-e2dea8c5546f status: 200 OK code: 200 - duration: 28.157151ms + duration: 23.33962ms - id: 45 request: proto: HTTP/1.1 @@ -2322,11 +2128,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/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 @@ -2334,35 +2142,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2272 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"},"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"}}}' + 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": "scarce"}, "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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2272" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0d45d232-7ef2-4e08-8751-ca2c4fcb103a + - 822a5bd5-8175-45d8-bb11-ee1cd44fbc61 X-Total-Count: - - "68" + - "52" status: 200 OK code: 200 - duration: 85.935256ms + duration: 123.52674ms - id: 46 request: proto: HTTP/1.1 @@ -2375,11 +2175,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/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 @@ -2387,35 +2189,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 848 + content_length: 102 uncompressed: false - 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"}}}' + body: '{"servers": {"PRO2-XXS": {"availability": "available"}, "STARDUST1-S": {"availability": "available"}}}' headers: Content-Length: - - "848" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "102" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ac38fdc0-bd4b-4a20-b9dd-4f032a9bd42c + - 30e86b40-4102-4b20-a70e-4666582b0b71 X-Total-Count: - - "68" + - "52" status: 200 OK code: 200 - duration: 94.995139ms + duration: 107.960586ms - id: 47 request: proto: HTTP/1.1 @@ -2428,11 +2222,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -2440,35 +2236,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 40272 + content_length: 39730 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}},"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}}}}' + body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "H100-1-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 24, "ram": 257698037760, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3000000000000, "monthly_price": 1992.9, "hourly_price": 2.73, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "H100-2-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 515396075520, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6000000000000, "monthly_price": 3985.8, "hourly_price": 5.46, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 4194304000, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "L40S-1-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 103079215104, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 1600000000000, "monthly_price": 1022.0, "hourly_price": 1.4, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L40S-2-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 206158430208, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3200000000000, "monthly_price": 2044.0, "hourly_price": 2.8, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L40S-4-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 412316860416, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6400000000000, "monthly_price": 4088.0, "hourly_price": 5.6, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L40S-8-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 824633720832, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 12800000000000, "monthly_price": 8176.0, "hourly_price": 11.2, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}}}' headers: Content-Length: - - "40272" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39730" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3d8a33d5-1092-4d7f-84ca-b9cb64fe0a34 + - 041718b4-2b2e-470c-a9d5-dbf30fbc4bd5 X-Total-Count: - - "68" + - "52" status: 200 OK code: 200 - duration: 42.347882ms + duration: 78.332295ms - id: 48 request: proto: HTTP/1.1 @@ -2481,11 +2269,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -2493,35 +2283,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14060 + content_length: 1575 uncompressed: false - 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}}}}' + body: '{"servers": {"PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}}}' headers: Content-Length: - - "14060" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1575" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:52 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3b94126d-0070-43ee-b9af-e02bdde215d0 + - 9d41395b-1fa0-4f76-8008-3998e7dafbb3 X-Total-Count: - - "68" + - "52" status: 200 OK code: 200 - duration: 39.564123ms + duration: 89.795259ms - id: 49 request: proto: HTTP/1.1 @@ -2534,11 +2316,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - pl-waw-2 headers: User-Agent: - scaleway-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-2 + 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 @@ -2546,31 +2334,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 73161 + content_length: 54571 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - pl-waw-2", "description":"POP2-2C-8G - pl-waw-2 (0.0735€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0030845914}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - pl-waw-2", "description":"POP2-4C-16G - pl-waw-2 (0.147€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0045521464}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - pl-waw-2", "description":"POP2-48C-192G - pl-waw-2 (1.77€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.036838356}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - pl-waw-2", "description":"POP2-8C-32G - pl-waw-2 (0.29€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007487256}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - pl-waw-2", "description":"POP2-16C-64G - pl-waw-2 (0.59€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013357476}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - pl-waw-2", "description":"POP2-32C-128G - pl-waw-2 (1.18€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.025097916}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - pl-waw-2", "description":"POP2-64C-256G - pl-waw-2 (2.35€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.048578795}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - pl-waw-2", "description":"PRO2-XXS - pl-waw-2 (0.055€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029539997}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - pl-waw-2", "description":"PRO2-XS - pl-waw-2 (0.11€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004290963}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - pl-waw-2", "description":"PRO2-S - pl-waw-2 (0.219€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0069648894}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - pl-waw-2", "description":"PRO2-M - pl-waw-2 (0.438€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012312743}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - pl-waw-2", "description":"PRO2-L - pl-waw-2 (0.877€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.023008449}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - pl-waw-2", "description":"GP1-XS Instance - pl-waw-2 (0.091€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004821113}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - pl-waw-2", "description":"GP1-S Instance - pl-waw-2 (0.187€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00838453}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - pl-waw-2", "description":"GP1-M Instance - pl-waw-2 (0.376€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015511366}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - pl-waw-2", "description":"GP1-L Instance - pl-waw-2 (0.759€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.029765036}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - pl-waw-2", "description":"GP1-XL Instance - pl-waw-2 (1.641€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.057336263}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - pl-waw-2", "description":"STARDUST1-S - pl-waw-2 (0.00015€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013649596}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - pl-waw-2", "description":"DEV1-S Instance - pl-waw-2 (0.0088€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016878293}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - pl-waw-2", "description":"DEV1-M Instance - pl-waw-2 (0.0198€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0022492055}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - pl-waw-2", "description":"DEV1-L Instance - pl-waw-2 (0.042€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032875945}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - pl-waw-2", "description":"DEV1-XL Instance - pl-waw-2 (0.063799999€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0042416207}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - pl-waw-2", "description":"PLAY2-PICO - pl-waw-2 (0.014€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018977058}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - pl-waw-2", "description":"PLAY2-NANO - pl-waw-2 (0.027€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021783754}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - pl-waw-2", "description":"PLAY2-MICRO - pl-waw-2 (0.054€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0027397145}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - pl-waw-2", "description":"POP2-HM-2C-16G - pl-waw-2 (0.103€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0037568125}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - pl-waw-2", "description":"POP2-HM-4C-32G - pl-waw-2 (0.206€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005896589}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - pl-waw-2", "description":"POP2-HM-8C-64G - pl-waw-2 (0.412€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010176142}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - pl-waw-2", "description":"POP2-HM-16C-128G - pl-waw-2 (0.824€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018735247}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - pl-waw-2", "description":"POP2-HM-32C-256G - pl-waw-2 (1.648€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.035853457}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - pl-waw-2", "description":"POP2-HM-48C-384G - pl-waw-2 (2.47€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.05297167}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - pl-waw-2", "description":"POP2-HM-64C-512G - pl-waw-2 (3.296€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.07008988}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - pl-waw-2", "description":"POP2-HC-2C-4G - pl-waw-2 (0.0532€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023745603}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - pl-waw-2", "description":"POP2-HC-4C-8G - pl-waw-2 (0.1064€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031320846}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - pl-waw-2", "description":"POP2-HC-8C-16G - pl-waw-2 (0.2128€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0046471325}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - pl-waw-2", "description":"POP2-HC-16C-32G - pl-waw-2 (0.4256€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007677229}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - pl-waw-2", "description":"POP2-HC-32C-64G - pl-waw-2 (0.8512€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0137374215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - pl-waw-2", "description":"POP2-HC-48C-96G - pl-waw-2 (1.27€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.019797614}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - pl-waw-2", "description":"POP2-HC-64C-128G - pl-waw-2 (1.7024€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.025857806}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - pl-waw-2", "description":"POP2-HN-10 - pl-waw-2 (0.7264€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031320846}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - pl-waw-2", "description":"POP2-HN-3 - pl-waw-2 (0.2554€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023745603}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - pl-waw-2", "description":"POP2-HN-5 - pl-waw-2 (0.4524€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031320846}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_1_80g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-1-80G", "variant":"H100-1-80G - pl-waw-2", "description":"H100-1-80G - pl-waw-2 (0.0455€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":45500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":24}, "threads":24}, "ram":{"description":"240 GiB", "size":257698037760, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"1 x H100-PCIe", "count":1, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-1-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_2_80g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-2-80G", "variant":"H100-2-80G - pl-waw-2", "description":"H100-2-80G - pl-waw-2 (0.091€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":48}, "threads":48}, "ram":{"description":"480 GiB", "size":515396075520, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"2 x H100-PCIe", "count":2, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-2-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_1_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-1-48G", "variant":"L40S-1-48G - pl-waw-2", "description":"L40S-1-48G - pl-waw-2 (0.023332€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":23332000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 8", "arch":"x64", "type":"", "virtual":{"count":8}, "threads":8}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L40S", "count":1, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-1-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_2_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-2-48G", "variant":"L40S-2-48G - pl-waw-2", "description":"L40S-2-48G - pl-waw-2 (0.046664€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":46664000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 16", "arch":"x64", "type":"", "virtual":{"count":16}, "threads":16}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L40S", "count":2, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-2-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_4_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-4-48G", "variant":"L40S-4-48G - pl-waw-2", "description":"L40S-4-48G - pl-waw-2 (0.093328€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":93328000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 32", "arch":"x64", "type":"", "virtual":{"count":32}, "threads":32}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L40S", "count":4, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-4-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_8_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-8-48G", "variant":"L40S-8-48G - pl-waw-2", "description":"L40S-8-48G - pl-waw-2 (0.186656€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":186656000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 64", "arch":"x64", "type":"", "virtual":{"count":64}, "threads":64}, "ram":{"description":"768 GiB", "size":824633720832, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L40S", "count":8, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-8-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - pl-waw-2", "description":"L4-1-24G - pl-waw-2 (0.0125€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - pl-waw-2", "description":"L4-2-24G - pl-waw-2 (0.025€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - pl-waw-2", "description":"L4-4-24G - pl-waw-2 (0.05€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - pl-waw-2", "description":"L4-8-24G - pl-waw-2 (0.1€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}], "total_count":52}' headers: Content-Length: - - "73161" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "54571" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 04752761-d266-4eeb-8174-9e962ba56181 + - b4559c03-3d1b-406e-acd1-37978659253d status: 200 OK code: 200 - duration: 22.610253ms + duration: 23.856697ms - id: 50 request: proto: HTTP/1.1 @@ -2583,11 +2363,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/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 @@ -2595,35 +2377,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2272 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"},"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"}}}' + 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": "scarce"}, "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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2272" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:52 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e3c1de31-1537-424f-8c40-637c26f4e755 + - 7340d951-302f-4d0f-9eab-5c3a3b8739ba X-Total-Count: - - "68" + - "52" status: 200 OK code: 200 - duration: 78.51674ms + duration: 101.75365ms - id: 51 request: proto: HTTP/1.1 @@ -2636,11 +2410,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/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 @@ -2648,35 +2424,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 848 + content_length: 102 uncompressed: false - 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"}}}' + body: '{"servers": {"PRO2-XXS": {"availability": "available"}, "STARDUST1-S": {"availability": "available"}}}' headers: Content-Length: - - "848" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "102" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:52 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a780274f-867e-4bcb-a076-b00a35d797a8 + - 7ef20047-edd1-4e83-b439-bfd48bd7040b X-Total-Count: - - "68" + - "52" status: 200 OK code: 200 - duration: 93.887583ms + duration: 119.588718ms - id: 52 request: proto: HTTP/1.1 @@ -2689,11 +2457,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -2701,35 +2471,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 40272 + content_length: 39730 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}},"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}}}}' + body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "H100-1-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 24, "ram": 257698037760, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3000000000000, "monthly_price": 1992.9, "hourly_price": 2.73, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "H100-2-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 515396075520, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6000000000000, "monthly_price": 3985.8, "hourly_price": 5.46, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 4194304000, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "L40S-1-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 103079215104, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 1600000000000, "monthly_price": 1022.0, "hourly_price": 1.4, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L40S-2-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 206158430208, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3200000000000, "monthly_price": 2044.0, "hourly_price": 2.8, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L40S-4-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 412316860416, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6400000000000, "monthly_price": 4088.0, "hourly_price": 5.6, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L40S-8-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 824633720832, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 12800000000000, "monthly_price": 8176.0, "hourly_price": 11.2, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}}}' headers: Content-Length: - - "40272" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39730" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53:52 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c93861ba-e1e7-4586-8912-afc149cfd45e + - d7c9896b-4d15-451d-9ceb-60b352c8f6c6 X-Total-Count: - - "68" + - "52" status: 200 OK code: 200 - duration: 47.717758ms + duration: 78.474301ms - id: 53 request: proto: HTTP/1.1 @@ -2742,11 +2504,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -2754,35 +2518,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14060 + content_length: 1575 uncompressed: false - 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}}}}' + body: '{"servers": {"PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}}}' headers: Content-Length: - - "14060" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1575" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53:52 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 60af2a66-ce35-433a-9d7d-1529e3b0097a + - 9962be50-e806-43c1-91de-3eef0e4899d5 X-Total-Count: - - "68" + - "52" status: 200 OK code: 200 - duration: 34.301509ms + duration: 117.438066ms - id: 54 request: proto: HTTP/1.1 @@ -2795,11 +2551,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - pl-waw-2 headers: User-Agent: - scaleway-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-2 + 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 @@ -2807,31 +2569,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 73161 + content_length: 54571 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - pl-waw-2", "description":"POP2-2C-8G - pl-waw-2 (0.0735€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0030845914}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - pl-waw-2", "description":"POP2-4C-16G - pl-waw-2 (0.147€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0045521464}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - pl-waw-2", "description":"POP2-48C-192G - pl-waw-2 (1.77€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.036838356}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - pl-waw-2", "description":"POP2-8C-32G - pl-waw-2 (0.29€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007487256}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - pl-waw-2", "description":"POP2-16C-64G - pl-waw-2 (0.59€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013357476}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - pl-waw-2", "description":"POP2-32C-128G - pl-waw-2 (1.18€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.025097916}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - pl-waw-2", "description":"POP2-64C-256G - pl-waw-2 (2.35€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.048578795}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - pl-waw-2", "description":"PRO2-XXS - pl-waw-2 (0.055€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029539997}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - pl-waw-2", "description":"PRO2-XS - pl-waw-2 (0.11€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004290963}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - pl-waw-2", "description":"PRO2-S - pl-waw-2 (0.219€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0069648894}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - pl-waw-2", "description":"PRO2-M - pl-waw-2 (0.438€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012312743}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - pl-waw-2", "description":"PRO2-L - pl-waw-2 (0.877€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.023008449}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - pl-waw-2", "description":"GP1-XS Instance - pl-waw-2 (0.091€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004821113}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - pl-waw-2", "description":"GP1-S Instance - pl-waw-2 (0.187€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00838453}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - pl-waw-2", "description":"GP1-M Instance - pl-waw-2 (0.376€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015511366}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - pl-waw-2", "description":"GP1-L Instance - pl-waw-2 (0.759€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.029765036}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - pl-waw-2", "description":"GP1-XL Instance - pl-waw-2 (1.641€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.057336263}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - pl-waw-2", "description":"STARDUST1-S - pl-waw-2 (0.00015€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013649596}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - pl-waw-2", "description":"DEV1-S Instance - pl-waw-2 (0.0088€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016878293}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - pl-waw-2", "description":"DEV1-M Instance - pl-waw-2 (0.0198€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0022492055}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - pl-waw-2", "description":"DEV1-L Instance - pl-waw-2 (0.042€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032875945}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - pl-waw-2", "description":"DEV1-XL Instance - pl-waw-2 (0.063799999€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0042416207}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - pl-waw-2", "description":"PLAY2-PICO - pl-waw-2 (0.014€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018977058}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - pl-waw-2", "description":"PLAY2-NANO - pl-waw-2 (0.027€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021783754}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - pl-waw-2", "description":"PLAY2-MICRO - pl-waw-2 (0.054€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0027397145}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - pl-waw-2", "description":"POP2-HM-2C-16G - pl-waw-2 (0.103€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0037568125}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - pl-waw-2", "description":"POP2-HM-4C-32G - pl-waw-2 (0.206€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005896589}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - pl-waw-2", "description":"POP2-HM-8C-64G - pl-waw-2 (0.412€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010176142}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - pl-waw-2", "description":"POP2-HM-16C-128G - pl-waw-2 (0.824€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018735247}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - pl-waw-2", "description":"POP2-HM-32C-256G - pl-waw-2 (1.648€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.035853457}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - pl-waw-2", "description":"POP2-HM-48C-384G - pl-waw-2 (2.47€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.05297167}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - pl-waw-2", "description":"POP2-HM-64C-512G - pl-waw-2 (3.296€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.07008988}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - pl-waw-2", "description":"POP2-HC-2C-4G - pl-waw-2 (0.0532€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023745603}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - pl-waw-2", "description":"POP2-HC-4C-8G - pl-waw-2 (0.1064€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031320846}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - pl-waw-2", "description":"POP2-HC-8C-16G - pl-waw-2 (0.2128€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0046471325}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - pl-waw-2", "description":"POP2-HC-16C-32G - pl-waw-2 (0.4256€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007677229}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - pl-waw-2", "description":"POP2-HC-32C-64G - pl-waw-2 (0.8512€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0137374215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - pl-waw-2", "description":"POP2-HC-48C-96G - pl-waw-2 (1.27€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.019797614}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - pl-waw-2", "description":"POP2-HC-64C-128G - pl-waw-2 (1.7024€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.025857806}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - pl-waw-2", "description":"POP2-HN-10 - pl-waw-2 (0.7264€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031320846}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - pl-waw-2", "description":"POP2-HN-3 - pl-waw-2 (0.2554€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023745603}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - pl-waw-2", "description":"POP2-HN-5 - pl-waw-2 (0.4524€ per hour)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031320846}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_1_80g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-1-80G", "variant":"H100-1-80G - pl-waw-2", "description":"H100-1-80G - pl-waw-2 (0.0455€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":45500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":24}, "threads":24}, "ram":{"description":"240 GiB", "size":257698037760, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"1 x H100-PCIe", "count":1, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-1-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/h100_2_80g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"H100-2-80G", "variant":"H100-2-80G - pl-waw-2", "description":"H100-2-80G - pl-waw-2 (0.091€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC 9334 2,7 GHz", "virtual":{"count":48}, "threads":48}, "ram":{"description":"480 GiB", "size":515396075520, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"2 x H100-PCIe", "count":2, "type":"H100-PCIe"}}, "instance":{"range":"GPU", "offer_id":"H100-2-80G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_1_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-1-48G", "variant":"L40S-1-48G - pl-waw-2", "description":"L40S-1-48G - pl-waw-2 (0.023332€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":23332000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 8", "arch":"x64", "type":"", "virtual":{"count":8}, "threads":8}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L40S", "count":1, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-1-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_2_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-2-48G", "variant":"L40S-2-48G - pl-waw-2", "description":"L40S-2-48G - pl-waw-2 (0.046664€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":46664000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 16", "arch":"x64", "type":"", "virtual":{"count":16}, "threads":16}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L40S", "count":2, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-2-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_4_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-4-48G", "variant":"L40S-4-48G - pl-waw-2", "description":"L40S-4-48G - pl-waw-2 (0.093328€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":93328000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 32", "arch":"x64", "type":"", "virtual":{"count":32}, "threads":32}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L40S", "count":4, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-4-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l40s_8_48g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L40S-8-48G", "variant":"L40S-8-48G - pl-waw-2", "description":"L40S-8-48G - pl-waw-2 (0.186656€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":186656000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 64", "arch":"x64", "type":"", "virtual":{"count":64}, "threads":64}, "ram":{"description":"768 GiB", "size":824633720832, "type":""}, "storage":{"description":"Block, Scratch", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L40S", "count":8, "type":"L40S"}}, "instance":{"range":"GPU", "offer_id":"L40S-8-48G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - pl-waw-2", "description":"L4-1-24G - pl-waw-2 (0.0125€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - pl-waw-2", "description":"L4-2-24G - pl-waw-2 (0.025€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - pl-waw-2", "description":"L4-4-24G - pl-waw-2 (0.05€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_pl-waw-2", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - pl-waw-2", "description":"L4-8-24G - pl-waw-2 (0.1€ per minute)", "locality":{"zone":"pl-waw-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}], "total_count":52}' headers: Content-Length: - - "73161" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "54571" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 243ca78c-5eff-407a-a4d8-8148322f1bc7 + - 46ce8279-0fa3-418e-970c-a3401cf6b18b status: 200 OK code: 200 - duration: 26.173192ms + duration: 22.690447ms - id: 55 request: proto: HTTP/1.1 @@ -2844,11 +2598,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/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 @@ -2856,35 +2612,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2272 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"},"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"}}}' + 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": "scarce"}, "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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2272" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53:52 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 84aa5ac0-4bce-4c16-8d85-1f1e27bd975d + - 1c27153d-f3c1-41eb-9971-471ce648fe1a X-Total-Count: - - "68" + - "52" status: 200 OK code: 200 - duration: 79.326048ms + duration: 110.16083ms - id: 56 request: proto: HTTP/1.1 @@ -2897,11 +2645,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/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 @@ -2909,35 +2659,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 848 + content_length: 102 uncompressed: false - 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"}}}' + body: '{"servers": {"PRO2-XXS": {"availability": "available"}, "STARDUST1-S": {"availability": "available"}}}' headers: Content-Length: - - "848" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "102" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53:52 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c737d9a9-3fd0-4805-8742-48900c0530ba + - 39dc5ff9-c2f9-4499-a44b-b5ed899e8f5e X-Total-Count: - - "68" + - "52" status: 200 OK code: 200 - duration: 96.87877ms + duration: 107.976374ms - id: 57 request: proto: HTTP/1.1 @@ -2950,11 +2692,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-3/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 @@ -2962,35 +2706,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 24905 + content_length: 39264 uncompressed: false - 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "24905" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7bceff63-a0ff-412b-9dca-53961654f210 + - 9baa7c86-143b-4bb9-9aaf-44f9293cb4e0 X-Total-Count: - - "32" + - "68" status: 200 OK code: 200 - duration: 28.088162ms + duration: 39.988652ms - id: 58 request: proto: HTTP/1.1 @@ -3003,11 +2739,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-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-3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -3015,31 +2753,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38016 + content_length: 14295 uncompressed: false - 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}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "38016" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "14295" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f0bf7b97-c09c-4018-a803-b7b4c59cf8a0 + - 121d6d2c-126f-4be7-a90f-223f10e83856 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 17.256978ms + duration: 52.512468ms - id: 59 request: proto: HTTP/1.1 @@ -3052,11 +2786,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-3/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 @@ -3064,35 +2804,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1494 + content_length: 61679 uncompressed: false - 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"}}}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-1", "description":"POP2-2C-8G - fr-par-1 (0.0735€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00072178466, "m3_water_usage":4.815502e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-1", "description":"POP2-2C-8G-WIN - fr-par-1 (0.1823€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007688888, "m3_water_usage":5.2443365e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-1", "description":"POP2-4C-16G - fr-par-1 (0.147€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001145898, "m3_water_usage":6.159374e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-1", "description":"POP2-4C-16G-WIN - fr-par-1 (0.3637€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012401063, "m3_water_usage":7.017042e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-1", "description":"POP2-48C-192G - fr-par-1 (1.77€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010476393, "m3_water_usage":3.5724548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-1", "description":"POP2-8C-32G - fr-par-1 (0.29€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019941248, "m3_water_usage":8.847117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-1", "description":"POP2-8C-32G-WIN - fr-par-1 (0.7233€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021825414, "m3_water_usage":1.05624544e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-1", "description":"POP2-16C-64G - fr-par-1 (0.59€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036905783, "m3_water_usage":1.4222603e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-1", "description":"POP2-16C-64G-WIN - fr-par-1 (1.4567€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004067411, "m3_water_usage":1.7653278e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-1", "description":"POP2-32C-128G - fr-par-1 (1.18€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0070834854, "m3_water_usage":2.4973576e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-1", "description":"POP2-32C-128G-WIN - fr-par-1 (2.9133€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007837151, "m3_water_usage":3.1834924e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-1", "description":"POP2-64C-256G - fr-par-1 (2.35€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0138693, "m3_water_usage":4.647552e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-1", "description":"PRO2-XXS - fr-par-1 (0.055€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006970975, "m3_water_usage":4.6791055e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-1", "description":"PRO2-XS - fr-par-1 (0.11€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010965237, "m3_water_usage":5.88658e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-1", "description":"PRO2-S - fr-par-1 (0.219€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018953761, "m3_water_usage":8.3015294e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-1", "description":"PRO2-M - fr-par-1 (0.438€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034930808, "m3_water_usage":1.3131428e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-1", "description":"PRO2-L - fr-par-1 (0.877€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066884905, "m3_water_usage":2.2791227e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-1", "description":"GP1-XS Instance - fr-par-1 (0.091€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011995973, "m3_water_usage":6.042756e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-1", "description":"GP1-S Instance - fr-par-1 (0.187€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021676724, "m3_water_usage":9.385356e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-1", "description":"GP1-M Instance - fr-par-1 (0.376€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0041038226, "m3_water_usage":1.6070554e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-1", "description":"GP1-L Instance - fr-par-1 (0.759€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007976123, "m3_water_usage":2.9440952e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-1", "description":"GP1-XL Instance - fr-par-1 (1.641€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015466409, "m3_water_usage":5.530364e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-1", "description":"COPARM1-2C-8G - fr-par-1 (0.0426€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00069850276, "m3_water_usage":4.6164647e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-1", "description":"COPARM1-4C-16G - fr-par-1 (0.0857€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010853942, "m3_water_usage":5.5987208e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-1", "description":"COPARM1-8C-32G - fr-par-1 (0.1724€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001859177, "m3_water_usage":7.563233e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-1", "description":"COPARM1-16C-64G - fr-par-1 (0.3454€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034067426, "m3_water_usage":1.1492257e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-1", "description":"COPARM1-32C-128G - fr-par-1 (0.6935€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006501874, "m3_water_usage":1.9350306e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - fr-par-1", "description":"STARDUST1-S - fr-par-1 (0.00015€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0002778983, "m3_water_usage":2.542258e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-1", "description":"DEV1-S Instance - fr-par-1 (0.0088€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00036396398, "m3_water_usage":2.847243e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-1", "description":"DEV1-M Instance - fr-par-1 (0.0198€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00051360304, "m3_water_usage":3.3775283e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-1", "description":"DEV1-L Instance - fr-par-1 (0.042€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00079038885, "m3_water_usage":4.358414e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-1", "description":"DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010446823, "m3_water_usage":5.2596153e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-1", "description":"PLAY2-PICO - fr-par-1 (0.014€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0003949738, "m3_water_usage":3.707793e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-1", "description":"PLAY2-NANO - fr-par-1 (0.027€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00049227633, "m3_water_usage":3.9439552e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-1", "description":"PLAY2-MICRO - fr-par-1 (0.054€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00068688137, "m3_water_usage":4.4162803e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-1", "description":"POP2-HM-2C-16G - fr-par-1 (0.103€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010394889, "m3_water_usage":5.2720925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-1", "description":"POP2-HM-4C-32G - fr-par-1 (0.206€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017813066, "m3_water_usage":7.072554e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-1", "description":"POP2-HM-8C-64G - fr-par-1 (0.412€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003264942, "m3_water_usage":1.0673478e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-1", "description":"POP2-HM-16C-128G - fr-par-1 (0.824€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062322128, "m3_water_usage":1.7875325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-1", "description":"POP2-HM-32C-256G - fr-par-1 (1.648€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012166753, "m3_water_usage":3.227902e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-1", "description":"POP2-HM-48C-384G - fr-par-1 (2.47€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018101295, "m3_water_usage":4.6682715e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-1", "description":"POP2-HM-64C-512G - fr-par-1 (3.296€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.024035836, "m3_water_usage":6.108641e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-1", "description":"POP2-HC-2C-4G - fr-par-1 (0.0532€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-1", "description":"POP2-HC-4C-8G - fr-par-1 (0.1064€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-1", "description":"POP2-HC-8C-16G - fr-par-1 (0.2128€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011733484, "m3_water_usage":6.246355e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-1", "description":"POP2-HC-16C-32G - fr-par-1 (0.4256€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020490256, "m3_water_usage":9.021079e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-1", "description":"POP2-HC-32C-64G - fr-par-1 (0.8512€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038003798, "m3_water_usage":1.4570527e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-1", "description":"POP2-HC-48C-96G - fr-par-1 (1.27€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005551734, "m3_water_usage":2.0119975e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-1", "description":"POP2-HC-64C-128G - fr-par-1 (1.7024€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073030884, "m3_water_usage":2.5669422e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-1", "description":"POP2-HN-10 - fr-par-1 (0.7264€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-1", "description":"POP2-HN-3 - fr-par-1 (0.2554€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-1", "description":"POP2-HN-5 - fr-par-1 (0.4524€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-1", "description":"L4-1-24G - fr-par-1 (0.0125€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-1", "description":"L4-2-24G - fr-par-1 (0.025€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-1", "description":"L4-4-24G - fr-par-1 (0.05€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-1", "description":"L4-8-24G - fr-par-1 (0.1€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-1", "description":"RENDER-S Instance - fr-par-1 (1.221€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":57}' headers: Content-Length: - - "1494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "61679" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 198b8b83-5acf-4a00-a1aa-75f2dba8488c - X-Total-Count: - - "32" + - b0ff8a32-b909-4a1f-b254-a3664210a6e1 status: 200 OK code: 200 - duration: 56.762973ms + duration: 20.33902ms - id: 60 request: proto: HTTP/1.1 @@ -3105,11 +2833,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-3/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 @@ -3117,35 +2847,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 24905 + content_length: 2344 uncompressed: false - 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}}}}' + 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": "shortage"}, "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: - - "24905" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 543dd861-0dc3-4c47-b3e5-719988fd2cb9 + - 4c335be7-58a7-4c97-aa27-4bd404ff55cf X-Total-Count: - - "32" + - "68" status: 200 OK code: 200 - duration: 42.616605ms + duration: 87.84245ms - id: 61 request: proto: HTTP/1.1 @@ -3158,11 +2880,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-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-3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -3170,31 +2894,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38016 + content_length: 769 uncompressed: false - 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}' + body: '{"servers": {"PRO2-L": {"availability": "scarce"}, "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"}}}' headers: Content-Length: - - "38016" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "769" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 215b63b1-5b68-429a-b022-f3192bbf99b3 + - 1c6b2e4b-3d4f-40fe-88af-3f3e454856b1 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 24.862375ms + duration: 136.852518ms - id: 62 request: proto: HTTP/1.1 @@ -3207,11 +2927,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-3/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 @@ -3219,35 +2941,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1494 + content_length: 39264 uncompressed: false - 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"}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "1494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6cb32674-1cd7-4ccd-a46e-e37be34b6c2c + - 79bc3abf-a037-46ca-bdf9-932bc22970cb X-Total-Count: - - "32" + - "68" status: 200 OK code: 200 - duration: 66.915715ms + duration: 41.064142ms - id: 63 request: proto: HTTP/1.1 @@ -3260,11 +2974,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-3/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 @@ -3272,35 +2988,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 24905 + content_length: 14295 uncompressed: false - 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "24905" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "14295" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1580bdf3-ba9f-4d67-acdc-be41a0dbf3d9 + - 27cc2e2e-24d2-44ea-ab0a-be9216dc71f9 X-Total-Count: - - "32" + - "68" status: 200 OK code: 200 - duration: 55.206436ms + duration: 83.161996ms - id: 64 request: proto: HTTP/1.1 @@ -3313,11 +3021,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-1 headers: User-Agent: - scaleway-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-3 + 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 @@ -3325,31 +3039,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38016 + content_length: 61679 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-1", "description":"POP2-2C-8G - fr-par-1 (0.0735€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00072178466, "m3_water_usage":4.815502e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-1", "description":"POP2-2C-8G-WIN - fr-par-1 (0.1823€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007688888, "m3_water_usage":5.2443365e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-1", "description":"POP2-4C-16G - fr-par-1 (0.147€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001145898, "m3_water_usage":6.159374e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-1", "description":"POP2-4C-16G-WIN - fr-par-1 (0.3637€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012401063, "m3_water_usage":7.017042e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-1", "description":"POP2-48C-192G - fr-par-1 (1.77€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010476393, "m3_water_usage":3.5724548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-1", "description":"POP2-8C-32G - fr-par-1 (0.29€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019941248, "m3_water_usage":8.847117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-1", "description":"POP2-8C-32G-WIN - fr-par-1 (0.7233€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021825414, "m3_water_usage":1.05624544e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-1", "description":"POP2-16C-64G - fr-par-1 (0.59€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036905783, "m3_water_usage":1.4222603e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-1", "description":"POP2-16C-64G-WIN - fr-par-1 (1.4567€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004067411, "m3_water_usage":1.7653278e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-1", "description":"POP2-32C-128G - fr-par-1 (1.18€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0070834854, "m3_water_usage":2.4973576e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-1", "description":"POP2-32C-128G-WIN - fr-par-1 (2.9133€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007837151, "m3_water_usage":3.1834924e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-1", "description":"POP2-64C-256G - fr-par-1 (2.35€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0138693, "m3_water_usage":4.647552e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-1", "description":"PRO2-XXS - fr-par-1 (0.055€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006970975, "m3_water_usage":4.6791055e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-1", "description":"PRO2-XS - fr-par-1 (0.11€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010965237, "m3_water_usage":5.88658e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-1", "description":"PRO2-S - fr-par-1 (0.219€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018953761, "m3_water_usage":8.3015294e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-1", "description":"PRO2-M - fr-par-1 (0.438€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034930808, "m3_water_usage":1.3131428e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-1", "description":"PRO2-L - fr-par-1 (0.877€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066884905, "m3_water_usage":2.2791227e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-1", "description":"GP1-XS Instance - fr-par-1 (0.091€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011995973, "m3_water_usage":6.042756e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-1", "description":"GP1-S Instance - fr-par-1 (0.187€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021676724, "m3_water_usage":9.385356e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-1", "description":"GP1-M Instance - fr-par-1 (0.376€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0041038226, "m3_water_usage":1.6070554e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-1", "description":"GP1-L Instance - fr-par-1 (0.759€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007976123, "m3_water_usage":2.9440952e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-1", "description":"GP1-XL Instance - fr-par-1 (1.641€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015466409, "m3_water_usage":5.530364e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-1", "description":"COPARM1-2C-8G - fr-par-1 (0.0426€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00069850276, "m3_water_usage":4.6164647e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-1", "description":"COPARM1-4C-16G - fr-par-1 (0.0857€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010853942, "m3_water_usage":5.5987208e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-1", "description":"COPARM1-8C-32G - fr-par-1 (0.1724€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001859177, "m3_water_usage":7.563233e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-1", "description":"COPARM1-16C-64G - fr-par-1 (0.3454€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034067426, "m3_water_usage":1.1492257e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-1", "description":"COPARM1-32C-128G - fr-par-1 (0.6935€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006501874, "m3_water_usage":1.9350306e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - fr-par-1", "description":"STARDUST1-S - fr-par-1 (0.00015€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0002778983, "m3_water_usage":2.542258e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-1", "description":"DEV1-S Instance - fr-par-1 (0.0088€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00036396398, "m3_water_usage":2.847243e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-1", "description":"DEV1-M Instance - fr-par-1 (0.0198€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00051360304, "m3_water_usage":3.3775283e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-1", "description":"DEV1-L Instance - fr-par-1 (0.042€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00079038885, "m3_water_usage":4.358414e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-1", "description":"DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010446823, "m3_water_usage":5.2596153e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-1", "description":"PLAY2-PICO - fr-par-1 (0.014€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0003949738, "m3_water_usage":3.707793e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-1", "description":"PLAY2-NANO - fr-par-1 (0.027€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00049227633, "m3_water_usage":3.9439552e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-1", "description":"PLAY2-MICRO - fr-par-1 (0.054€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00068688137, "m3_water_usage":4.4162803e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-1", "description":"POP2-HM-2C-16G - fr-par-1 (0.103€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010394889, "m3_water_usage":5.2720925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-1", "description":"POP2-HM-4C-32G - fr-par-1 (0.206€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017813066, "m3_water_usage":7.072554e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-1", "description":"POP2-HM-8C-64G - fr-par-1 (0.412€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003264942, "m3_water_usage":1.0673478e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-1", "description":"POP2-HM-16C-128G - fr-par-1 (0.824€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062322128, "m3_water_usage":1.7875325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-1", "description":"POP2-HM-32C-256G - fr-par-1 (1.648€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012166753, "m3_water_usage":3.227902e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-1", "description":"POP2-HM-48C-384G - fr-par-1 (2.47€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018101295, "m3_water_usage":4.6682715e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-1", "description":"POP2-HM-64C-512G - fr-par-1 (3.296€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.024035836, "m3_water_usage":6.108641e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-1", "description":"POP2-HC-2C-4G - fr-par-1 (0.0532€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-1", "description":"POP2-HC-4C-8G - fr-par-1 (0.1064€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-1", "description":"POP2-HC-8C-16G - fr-par-1 (0.2128€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011733484, "m3_water_usage":6.246355e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-1", "description":"POP2-HC-16C-32G - fr-par-1 (0.4256€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020490256, "m3_water_usage":9.021079e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-1", "description":"POP2-HC-32C-64G - fr-par-1 (0.8512€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038003798, "m3_water_usage":1.4570527e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-1", "description":"POP2-HC-48C-96G - fr-par-1 (1.27€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005551734, "m3_water_usage":2.0119975e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-1", "description":"POP2-HC-64C-128G - fr-par-1 (1.7024€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073030884, "m3_water_usage":2.5669422e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-1", "description":"POP2-HN-10 - fr-par-1 (0.7264€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-1", "description":"POP2-HN-3 - fr-par-1 (0.2554€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-1", "description":"POP2-HN-5 - fr-par-1 (0.4524€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-1", "description":"L4-1-24G - fr-par-1 (0.0125€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-1", "description":"L4-2-24G - fr-par-1 (0.025€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-1", "description":"L4-4-24G - fr-par-1 (0.05€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-1", "description":"L4-8-24G - fr-par-1 (0.1€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-1", "description":"RENDER-S Instance - fr-par-1 (1.221€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":57}' headers: Content-Length: - - "38016" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "61679" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 174a6d6b-add9-420d-8181-749e415cf7a6 + - 5b1e7a50-86dc-4b83-a2d9-de38119ea7e8 status: 200 OK code: 200 - duration: 23.447714ms + duration: 33.838502ms - id: 65 request: proto: HTTP/1.1 @@ -3362,11 +3068,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-3/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 @@ -3374,35 +3082,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1494 + content_length: 2344 uncompressed: false - 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"}}}' + 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": "shortage"}, "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: - - "1494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cdd83e47-6f50-44a5-a024-eb470f92814d + - e0991bca-f26f-4d68-8ab2-3dfbc1093175 X-Total-Count: - - "32" + - "68" status: 200 OK code: 200 - duration: 77.434502ms + duration: 97.19192ms - id: 66 request: proto: HTTP/1.1 @@ -3415,11 +3115,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.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/fr-par-1/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -3427,35 +3129,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39006 + content_length: 769 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}},"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}}}}' + body: '{"servers": {"PRO2-L": {"availability": "scarce"}, "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"}}}' headers: Content-Length: - - "39006" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "769" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="next",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dae4d033-2d15-48b7-b1a5-ca207f992c5d + - 72e2f9e2-3b27-4488-ab64-ace16d29fa92 X-Total-Count: - - "58" + - "68" status: 200 OK code: 200 - duration: 67.367522ms + duration: 97.48047ms - id: 67 request: proto: HTTP/1.1 @@ -3468,11 +3162,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -3480,35 +3176,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 6405 + content_length: 39264 uncompressed: false - 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "6405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 62d26016-2160-4ff4-b48e-7b82de5c0cd1 + - 9156590a-4afa-42dc-9a46-a0e96dae8209 X-Total-Count: - - "58" + - "68" status: 200 OK code: 200 - duration: 66.606535ms + duration: 48.797201ms - id: 68 request: proto: HTTP/1.1 @@ -3521,11 +3209,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-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/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -3533,31 +3223,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 52626 + content_length: 14295 uncompressed: false - 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}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "52626" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "14295" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e3cab58f-2aa0-42fe-adca-90a1d41111c2 + - 3c3e7ca2-66cd-400c-9150-023ef6bef660 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 24.305331ms + duration: 47.970195ms - id: 69 request: proto: HTTP/1.1 @@ -3570,11 +3256,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.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=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -3582,35 +3274,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2304 + content_length: 61679 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"},"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"}}}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - fr-par-1", "description":"POP2-2C-8G - fr-par-1 (0.0735€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00072178466, "m3_water_usage":4.815502e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_2c_8g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G-WIN", "variant":"POP2-2C-8G-WIN - fr-par-1", "description":"POP2-2C-8G-WIN - fr-par-1 (0.1823€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":182300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0007688888, "m3_water_usage":5.2443365e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - fr-par-1", "description":"POP2-4C-16G - fr-par-1 (0.147€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001145898, "m3_water_usage":6.159374e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G-WIN", "variant":"POP2-4C-16G-WIN - fr-par-1", "description":"POP2-4C-16G-WIN - fr-par-1 (0.3637€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":363700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0012401063, "m3_water_usage":7.017042e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - fr-par-1", "description":"POP2-48C-192G - fr-par-1 (1.77€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010476393, "m3_water_usage":3.5724548e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - fr-par-1", "description":"POP2-8C-32G - fr-par-1 (0.29€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019941248, "m3_water_usage":8.847117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G-WIN", "variant":"POP2-8C-32G-WIN - fr-par-1", "description":"POP2-8C-32G-WIN - fr-par-1 (0.7233€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":723300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021825414, "m3_water_usage":1.05624544e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - fr-par-1", "description":"POP2-16C-64G - fr-par-1 (0.59€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036905783, "m3_water_usage":1.4222603e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G-WIN", "variant":"POP2-16C-64G-WIN - fr-par-1", "description":"POP2-16C-64G-WIN - fr-par-1 (1.4567€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":456700000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004067411, "m3_water_usage":1.7653278e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - fr-par-1", "description":"POP2-32C-128G - fr-par-1 (1.18€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0070834854, "m3_water_usage":2.4973576e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g_win/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G-WIN", "variant":"POP2-32C-128G-WIN - fr-par-1", "description":"POP2-32C-128G-WIN - fr-par-1 (2.9133€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":913300000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G-WIN", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007837151, "m3_water_usage":3.1834924e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - fr-par-1", "description":"POP2-64C-256G - fr-par-1 (2.35€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0138693, "m3_water_usage":4.647552e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - fr-par-1", "description":"PRO2-XXS - fr-par-1 (0.055€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0006970975, "m3_water_usage":4.6791055e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - fr-par-1", "description":"PRO2-XS - fr-par-1 (0.11€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010965237, "m3_water_usage":5.88658e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - fr-par-1", "description":"PRO2-S - fr-par-1 (0.219€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018953761, "m3_water_usage":8.3015294e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - fr-par-1", "description":"PRO2-M - fr-par-1 (0.438€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034930808, "m3_water_usage":1.3131428e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - fr-par-1", "description":"PRO2-L - fr-par-1 (0.877€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066884905, "m3_water_usage":2.2791227e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - fr-par-1", "description":"GP1-XS Instance - fr-par-1 (0.091€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011995973, "m3_water_usage":6.042756e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - fr-par-1", "description":"GP1-S Instance - fr-par-1 (0.187€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021676724, "m3_water_usage":9.385356e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - fr-par-1", "description":"GP1-M Instance - fr-par-1 (0.376€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0041038226, "m3_water_usage":1.6070554e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - fr-par-1", "description":"GP1-L Instance - fr-par-1 (0.759€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007976123, "m3_water_usage":2.9440952e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - fr-par-1", "description":"GP1-XL Instance - fr-par-1 (1.641€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015466409, "m3_water_usage":5.530364e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - fr-par-1", "description":"COPARM1-2C-8G - fr-par-1 (0.0426€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00069850276, "m3_water_usage":4.6164647e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - fr-par-1", "description":"COPARM1-4C-16G - fr-par-1 (0.0857€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010853942, "m3_water_usage":5.5987208e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - fr-par-1", "description":"COPARM1-8C-32G - fr-par-1 (0.1724€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001859177, "m3_water_usage":7.563233e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - fr-par-1", "description":"COPARM1-16C-64G - fr-par-1 (0.3454€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0034067426, "m3_water_usage":1.1492257e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - fr-par-1", "description":"COPARM1-32C-128G - fr-par-1 (0.6935€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006501874, "m3_water_usage":1.9350306e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - fr-par-1", "description":"STARDUST1-S - fr-par-1 (0.00015€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0002778983, "m3_water_usage":2.542258e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - fr-par-1", "description":"DEV1-S Instance - fr-par-1 (0.0088€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00036396398, "m3_water_usage":2.847243e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - fr-par-1", "description":"DEV1-M Instance - fr-par-1 (0.0198€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00051360304, "m3_water_usage":3.3775283e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - fr-par-1", "description":"DEV1-L Instance - fr-par-1 (0.042€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00079038885, "m3_water_usage":4.358414e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - fr-par-1", "description":"DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010446823, "m3_water_usage":5.2596153e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - fr-par-1", "description":"PLAY2-PICO - fr-par-1 (0.014€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0003949738, "m3_water_usage":3.707793e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - fr-par-1", "description":"PLAY2-NANO - fr-par-1 (0.027€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00049227633, "m3_water_usage":3.9439552e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - fr-par-1", "description":"PLAY2-MICRO - fr-par-1 (0.054€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00068688137, "m3_water_usage":4.4162803e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - fr-par-1", "description":"POP2-HM-2C-16G - fr-par-1 (0.103€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0010394889, "m3_water_usage":5.2720925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - fr-par-1", "description":"POP2-HM-4C-32G - fr-par-1 (0.206€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017813066, "m3_water_usage":7.072554e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - fr-par-1", "description":"POP2-HM-8C-64G - fr-par-1 (0.412€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.003264942, "m3_water_usage":1.0673478e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - fr-par-1", "description":"POP2-HM-16C-128G - fr-par-1 (0.824€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062322128, "m3_water_usage":1.7875325e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - fr-par-1", "description":"POP2-HM-32C-256G - fr-par-1 (1.648€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012166753, "m3_water_usage":3.227902e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - fr-par-1", "description":"POP2-HM-48C-384G - fr-par-1 (2.47€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018101295, "m3_water_usage":4.6682715e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - fr-par-1", "description":"POP2-HM-64C-512G - fr-par-1 (3.296€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.024035836, "m3_water_usage":6.108641e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - fr-par-1", "description":"POP2-HC-2C-4G - fr-par-1 (0.0532€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - fr-par-1", "description":"POP2-HC-4C-8G - fr-par-1 (0.1064€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - fr-par-1", "description":"POP2-HC-8C-16G - fr-par-1 (0.2128€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011733484, "m3_water_usage":6.246355e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - fr-par-1", "description":"POP2-HC-16C-32G - fr-par-1 (0.4256€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020490256, "m3_water_usage":9.021079e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - fr-par-1", "description":"POP2-HC-32C-64G - fr-par-1 (0.8512€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038003798, "m3_water_usage":1.4570527e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - fr-par-1", "description":"POP2-HC-48C-96G - fr-par-1 (1.27€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005551734, "m3_water_usage":2.0119975e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - fr-par-1", "description":"POP2-HC-64C-128G - fr-par-1 (1.7024€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0073030884, "m3_water_usage":2.5669422e-7}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - fr-par-1", "description":"POP2-HN-10 - fr-par-1 (0.7264€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - fr-par-1", "description":"POP2-HN-3 - fr-par-1 (0.2554€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0005165906, "m3_water_usage":4.1653117e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - fr-par-1", "description":"POP2-HN-5 - fr-par-1 (0.4524€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00073550985, "m3_water_usage":4.8589925e-8}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_1_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-1-24G", "variant":"L4-1-24G - fr-par-1", "description":"L4-1-24G - fr-par-1 (0.0125€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":12500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"48 GiB", "size":51539607552, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s", "internal_bandwidth":2500000000, "public_bandwidth":2500000000, "max_public_bandwidth":2500000000}, "gpu":{"description":"1 x L4", "count":1, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-1-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_2_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-2-24G", "variant":"L4-2-24G - fr-par-1", "description":"L4-2-24G - fr-par-1 (0.025€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":25000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}, "gpu":{"description":"2 x L4", "count":2, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-2-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_4_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-4-24G", "variant":"L4-4-24G - fr-par-1", "description":"L4-4-24G - fr-par-1 (0.05€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":50000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}, "gpu":{"description":"4 x L4", "count":4, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-4-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/l4_8_24g/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"L4-8-24G", "variant":"L4-8-24G - fr-par-1", "description":"L4-8-24G - fr-par-1 (0.1€ per minute)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":100000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7413 (2.65 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s", "internal_bandwidth":20000000000, "public_bandwidth":20000000000, "max_public_bandwidth":20000000000}, "gpu":{"description":"8 x L4", "count":8, "type":"L4"}}, "instance":{"range":"GPU", "offer_id":"L4-8-24G", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"minute", "size":1}, "status":"general_availability"}, {"sku":"/compute/render_s/run_par1", "service_category":"Compute", "product_category":"Instance", "product":"RENDER-S Instance", "variant":"RENDER-S Instance - fr-par-1", "description":"RENDER-S Instance - fr-par-1 (1.221€ per hour)", "locality":{"zone":"fr-par-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":221000000}}, "properties":{"hardware":{"cpu":{"description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10", "arch":"x64", "type":"Intel Xeon Gold 6148 (2.4 GHz)", "virtual":{"count":10}, "threads":10}, "ram":{"description":"42 GiB", "size":45097156608, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s", "internal_bandwidth":2000000000, "public_bandwidth":2000000000, "max_public_bandwidth":2000000000}, "gpu":{"description":"1 x P100", "count":1, "type":"P100"}}, "instance":{"range":"GPU", "offer_id":"RENDER-S", "recommended_replacement_offer_ids":[]}}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":57}' headers: Content-Length: - - "2304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "61679" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 35d3091c-ca43-4e5e-9445-0114f20bbc8d - X-Total-Count: - - "58" + - 21b9b247-52a8-4869-a2a7-f10b63f48356 status: 200 OK code: 200 - duration: 88.782765ms + duration: 25.095423ms - id: 70 request: proto: HTTP/1.1 @@ -3623,11 +3303,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/fr-par-1/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -3635,35 +3317,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 347 + content_length: 2344 uncompressed: false - 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"}}}' + 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": "shortage"}, "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: - - "347" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ee2317f3-206c-4ad5-8ef5-4e427adfbb1a + - b1bf411a-3e34-486d-85e5-fd27ac7cbd8f X-Total-Count: - - "58" + - "68" status: 200 OK code: 200 - duration: 89.351531ms + duration: 88.931936ms - id: 71 request: proto: HTTP/1.1 @@ -3676,11 +3350,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.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/fr-par-1/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -3688,35 +3364,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39006 + content_length: 769 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}},"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}}}}' + body: '{"servers": {"PRO2-L": {"availability": "scarce"}, "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"}}}' headers: Content-Length: - - "39006" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "769" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - - ; rel="next",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - db70220d-de2b-4b6a-99ab-968ee15d3330 + - 6ee8d0b8-baeb-40a9-a03a-df09bf4f57ae X-Total-Count: - - "58" + - "68" status: 200 OK code: 200 - duration: 71.587342ms + duration: 89.751458ms - id: 72 request: proto: HTTP/1.1 @@ -3729,11 +3397,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -3741,35 +3411,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 6405 + content_length: 39006 uncompressed: false - 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "6405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39006" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7a1b31e8-77c4-44b6-8ba0-87885973aafa + - eb983b2c-29a5-4909-8136-71e3d378ef9c X-Total-Count: - "58" status: 200 OK code: 200 - duration: 66.658532ms + duration: 58.084266ms - id: 73 request: proto: HTTP/1.1 @@ -3782,11 +3444,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-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-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -3794,31 +3458,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 52626 + content_length: 6405 uncompressed: false - 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}' + body: '{"servers": {"START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "52626" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "6405" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c47eb5cb-928b-4d7e-8307-7c46faaa9097 + - c9423c68-5555-4213-ae76-108ae2739760 + X-Total-Count: + - "58" status: 200 OK code: 200 - duration: 25.338518ms + duration: 51.71115ms - id: 74 request: proto: HTTP/1.1 @@ -3831,11 +3491,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - nl-ams-1 headers: User-Agent: - scaleway-sdk-go/v1.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=nl-ams-1 method: GET response: proto: HTTP/2.0 @@ -3843,35 +3509,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2304 + content_length: 51183 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"},"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"}}}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - nl-ams-1", "description":"POP2-2C-8G - nl-ams-1 (0.0735€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020151848, "m3_water_usage":0.000002740882}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - nl-ams-1", "description":"POP2-4C-16G - nl-ams-1 (0.147€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028653652, "m3_water_usage":0.000004010094}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - nl-ams-1", "description":"POP2-48C-192G - nl-ams-1 (1.77€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021569334, "m3_water_usage":0.00003193276}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - nl-ams-1", "description":"POP2-8C-32G - nl-ams-1 (0.29€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004565726, "m3_water_usage":0.0000065485183}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - nl-ams-1", "description":"POP2-16C-64G - nl-ams-1 (0.59€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007966448, "m3_water_usage":0.000011625366}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - nl-ams-1", "description":"POP2-32C-128G - nl-ams-1 (1.18€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014767891, "m3_water_usage":0.000021779062}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - nl-ams-1", "description":"POP2-64C-256G - nl-ams-1 (2.35€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.028370777, "m3_water_usage":0.000042086453}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - nl-ams-1", "description":"PRO2-XXS - nl-ams-1 (0.055€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001947254, "m3_water_usage":0.0000026120629}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - nl-ams-1", "description":"PRO2-XS - nl-ams-1 (0.11€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0027295032, "m3_water_usage":0.0000037524558}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - nl-ams-1", "description":"PRO2-S - nl-ams-1 (0.219€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004294002, "m3_water_usage":0.0000060332413}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - nl-ams-1", "description":"PRO2-M - nl-ams-1 (0.438€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0074229995, "m3_water_usage":0.000010594813}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - nl-ams-1", "description":"PRO2-L - nl-ams-1 (0.877€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0136809945, "m3_water_usage":0.000019717956}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - nl-ams-1", "description":"GP1-XS Instance - nl-ams-1 (0.091€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029339422, "m3_water_usage":0.0000043015316}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - nl-ams-1", "description":"GP1-S Instance - nl-ams-1 (0.187€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00496177, "m3_water_usage":0.000007458431}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - nl-ams-1", "description":"GP1-M Instance - nl-ams-1 (0.376€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.009017426, "m3_water_usage":0.000013772229}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - nl-ams-1", "description":"GP1-L Instance - nl-ams-1 (0.759€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.017128736, "m3_water_usage":0.000026399826}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - nl-ams-1", "description":"GP1-XL Instance - nl-ams-1 (1.641€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03281864, "m3_water_usage":0.000050825696}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - nl-ams-1", "description":"COPARM1-2C-8G - nl-ams-1 (0.0426€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019178725, "m3_water_usage":0.0000024682754}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - nl-ams-1", "description":"COPARM1-4C-16G - nl-ams-1 (0.0857€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0026161827, "m3_water_usage":0.0000033959616}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - nl-ams-1", "description":"COPARM1-8C-32G - nl-ams-1 (0.1724€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004012803, "m3_water_usage":0.000005251334}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - nl-ams-1", "description":"COPARM1-16C-64G - nl-ams-1 (0.3454€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006806044, "m3_water_usage":0.000008962079}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - nl-ams-1", "description":"COPARM1-32C-128G - nl-ams-1 (0.6935€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012392526, "m3_water_usage":0.000016383568}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - nl-ams-1", "description":"STARDUST1-S - nl-ams-1 (0.00015€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00093354017, "m3_water_usage":0.000001236451}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - nl-ams-1", "description":"DEV1-S Instance - nl-ams-1 (0.0088€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011162997, "m3_water_usage":0.0000015244923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - nl-ams-1", "description":"DEV1-M Instance - nl-ams-1 (0.0198€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0014340627, "m3_water_usage":0.0000020253174}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - nl-ams-1", "description":"DEV1-L Instance - nl-ams-1 (0.042€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.002021833, "m3_water_usage":0.0000029517096}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - nl-ams-1", "description":"DEV1-XL Instance - nl-ams-1 (0.063799999€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025618474, "m3_water_usage":0.000003802844}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - nl-ams-1", "description":"PLAY2-PICO - nl-ams-1 (0.014€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013371811, "m3_water_usage":0.0000016947124}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - nl-ams-1", "description":"PLAY2-NANO - nl-ams-1 (0.027€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015093576, "m3_water_usage":0.0000019177546}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - nl-ams-1", "description":"PLAY2-MICRO - nl-ams-1 (0.054€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018537106, "m3_water_usage":0.0000023638393}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - nl-ams-1", "description":"POP2-HM-2C-16G - nl-ams-1 (0.103€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0024776487, "m3_water_usage":0.0000031721063}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - nl-ams-1", "description":"POP2-HM-4C-32G - nl-ams-1 (0.206€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0037902927, "m3_water_usage":0.0000048725424}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - nl-ams-1", "description":"POP2-HM-8C-64G - nl-ams-1 (0.412€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006415581, "m3_water_usage":0.000008273415}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - nl-ams-1", "description":"POP2-HM-16C-128G - nl-ams-1 (0.824€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011666157, "m3_water_usage":0.000015075159}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - nl-ams-1", "description":"POP2-HM-32C-256G - nl-ams-1 (1.648€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02216731, "m3_water_usage":0.000028678649}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - nl-ams-1", "description":"POP2-HM-48C-384G - nl-ams-1 (2.47€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.032668464, "m3_water_usage":0.00004228214}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - nl-ams-1", "description":"POP2-HM-64C-512G - nl-ams-1 (3.296€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.043169614, "m3_water_usage":0.00005588563}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - nl-ams-1", "description":"POP2-HC-2C-4G - nl-ams-1 (0.0532€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016038516, "m3_water_usage":0.0000021268133}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - nl-ams-1", "description":"POP2-HC-4C-8G - nl-ams-1 (0.1064€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020426987, "m3_water_usage":0.0000027819565}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - nl-ams-1", "description":"POP2-HC-8C-16G - nl-ams-1 (0.2128€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029203927, "m3_water_usage":0.0000040922428}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - nl-ams-1", "description":"POP2-HC-16C-32G - nl-ams-1 (0.4256€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0046757804, "m3_water_usage":0.000006712816}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - nl-ams-1", "description":"POP2-HC-32C-64G - nl-ams-1 (0.8512€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008186556, "m3_water_usage":0.000011953961}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - nl-ams-1", "description":"POP2-HC-48C-96G - nl-ams-1 (1.27€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011697332, "m3_water_usage":0.000017195107}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - nl-ams-1", "description":"POP2-HC-64C-128G - nl-ams-1 (1.7024€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015208108, "m3_water_usage":0.000022436252}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - nl-ams-1", "description":"POP2-HN-10 - nl-ams-1 (0.7264€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020426987, "m3_water_usage":0.0000027819565}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - nl-ams-1", "description":"POP2-HN-3 - nl-ams-1 (0.2554€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016038516, "m3_water_usage":0.0000021268133}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - nl-ams-1", "description":"POP2-HN-5 - nl-ams-1 (0.4524€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020426987, "m3_water_usage":0.0000027819565}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":47}' headers: Content-Length: - - "2304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "51183" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dc6d074d-a84d-410d-a3fa-c8d0e05d335f - X-Total-Count: - - "58" + - 63fb40be-60e9-42d4-9db6-02f51a3b6b27 status: 200 OK code: 200 - duration: 106.756919ms + duration: 30.758773ms - id: 75 request: proto: HTTP/1.1 @@ -3884,11 +3538,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/nl-ams-1/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -3896,35 +3552,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 347 + content_length: 2298 uncompressed: false - 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"}}}' + 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": "scarce"}, "PRO2-M": {"availability": "scarce"}, "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: - - "347" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2298" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 66e978c0-b6c3-43fd-abfe-bd5fc1a01fff + - 6a3b6e5d-02dd-404a-a4ff-edd0c4436b96 X-Total-Count: - "58" status: 200 OK code: 200 - duration: 89.699173ms + duration: 90.501621ms - id: 76 request: proto: HTTP/1.1 @@ -3937,11 +3585,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.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-1/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -3949,35 +3599,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39006 + content_length: 347 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}},"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}}}}' + 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: - - "39006" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "347" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - - ; rel="next",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a191c8c9-d154-4596-9b78-ebad08c05a9e + - de22b7a3-9e21-42b5-ae7e-2e2d9e75ffa7 X-Total-Count: - "58" status: 200 OK code: 200 - duration: 65.312941ms + duration: 93.247526ms - id: 77 request: proto: HTTP/1.1 @@ -3990,11 +3632,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -4002,35 +3646,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 6405 + content_length: 39006 uncompressed: false - 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "6405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39006" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:55 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a84ff0d3-aae6-47a9-8517-fa682b9afaed + - bec1e55c-9527-4eba-a7e9-08a9643fa6a7 X-Total-Count: - "58" status: 200 OK code: 200 - duration: 53.475492ms + duration: 59.402792ms - id: 78 request: proto: HTTP/1.1 @@ -4043,11 +3679,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-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-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -4055,31 +3693,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 52626 + content_length: 6405 uncompressed: false - 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}' + body: '{"servers": {"START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "52626" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "6405" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:55 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a6a191f7-bd9e-45bc-963c-73cb8e22b7b5 + - 4c43476d-c5a9-4121-a16b-f1fc6a0397f5 + X-Total-Count: + - "58" status: 200 OK code: 200 - duration: 23.110121ms + duration: 72.568299ms - id: 79 request: proto: HTTP/1.1 @@ -4092,11 +3726,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - nl-ams-1 headers: User-Agent: - scaleway-sdk-go/v1.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=nl-ams-1 method: GET response: proto: HTTP/2.0 @@ -4104,35 +3744,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2304 + content_length: 51183 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"},"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"}}}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - nl-ams-1", "description":"POP2-2C-8G - nl-ams-1 (0.0735€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020151848, "m3_water_usage":0.000002740882}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - nl-ams-1", "description":"POP2-4C-16G - nl-ams-1 (0.147€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028653652, "m3_water_usage":0.000004010094}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - nl-ams-1", "description":"POP2-48C-192G - nl-ams-1 (1.77€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021569334, "m3_water_usage":0.00003193276}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - nl-ams-1", "description":"POP2-8C-32G - nl-ams-1 (0.29€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004565726, "m3_water_usage":0.0000065485183}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - nl-ams-1", "description":"POP2-16C-64G - nl-ams-1 (0.59€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007966448, "m3_water_usage":0.000011625366}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - nl-ams-1", "description":"POP2-32C-128G - nl-ams-1 (1.18€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014767891, "m3_water_usage":0.000021779062}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - nl-ams-1", "description":"POP2-64C-256G - nl-ams-1 (2.35€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.028370777, "m3_water_usage":0.000042086453}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - nl-ams-1", "description":"PRO2-XXS - nl-ams-1 (0.055€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001947254, "m3_water_usage":0.0000026120629}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - nl-ams-1", "description":"PRO2-XS - nl-ams-1 (0.11€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0027295032, "m3_water_usage":0.0000037524558}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - nl-ams-1", "description":"PRO2-S - nl-ams-1 (0.219€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004294002, "m3_water_usage":0.0000060332413}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - nl-ams-1", "description":"PRO2-M - nl-ams-1 (0.438€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0074229995, "m3_water_usage":0.000010594813}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - nl-ams-1", "description":"PRO2-L - nl-ams-1 (0.877€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0136809945, "m3_water_usage":0.000019717956}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - nl-ams-1", "description":"GP1-XS Instance - nl-ams-1 (0.091€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029339422, "m3_water_usage":0.0000043015316}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - nl-ams-1", "description":"GP1-S Instance - nl-ams-1 (0.187€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00496177, "m3_water_usage":0.000007458431}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - nl-ams-1", "description":"GP1-M Instance - nl-ams-1 (0.376€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.009017426, "m3_water_usage":0.000013772229}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - nl-ams-1", "description":"GP1-L Instance - nl-ams-1 (0.759€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.017128736, "m3_water_usage":0.000026399826}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - nl-ams-1", "description":"GP1-XL Instance - nl-ams-1 (1.641€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03281864, "m3_water_usage":0.000050825696}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - nl-ams-1", "description":"COPARM1-2C-8G - nl-ams-1 (0.0426€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019178725, "m3_water_usage":0.0000024682754}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - nl-ams-1", "description":"COPARM1-4C-16G - nl-ams-1 (0.0857€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0026161827, "m3_water_usage":0.0000033959616}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - nl-ams-1", "description":"COPARM1-8C-32G - nl-ams-1 (0.1724€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004012803, "m3_water_usage":0.000005251334}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - nl-ams-1", "description":"COPARM1-16C-64G - nl-ams-1 (0.3454€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006806044, "m3_water_usage":0.000008962079}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - nl-ams-1", "description":"COPARM1-32C-128G - nl-ams-1 (0.6935€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012392526, "m3_water_usage":0.000016383568}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - nl-ams-1", "description":"STARDUST1-S - nl-ams-1 (0.00015€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00093354017, "m3_water_usage":0.000001236451}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - nl-ams-1", "description":"DEV1-S Instance - nl-ams-1 (0.0088€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011162997, "m3_water_usage":0.0000015244923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - nl-ams-1", "description":"DEV1-M Instance - nl-ams-1 (0.0198€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0014340627, "m3_water_usage":0.0000020253174}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - nl-ams-1", "description":"DEV1-L Instance - nl-ams-1 (0.042€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.002021833, "m3_water_usage":0.0000029517096}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - nl-ams-1", "description":"DEV1-XL Instance - nl-ams-1 (0.063799999€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025618474, "m3_water_usage":0.000003802844}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - nl-ams-1", "description":"PLAY2-PICO - nl-ams-1 (0.014€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013371811, "m3_water_usage":0.0000016947124}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - nl-ams-1", "description":"PLAY2-NANO - nl-ams-1 (0.027€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015093576, "m3_water_usage":0.0000019177546}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - nl-ams-1", "description":"PLAY2-MICRO - nl-ams-1 (0.054€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018537106, "m3_water_usage":0.0000023638393}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - nl-ams-1", "description":"POP2-HM-2C-16G - nl-ams-1 (0.103€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0024776487, "m3_water_usage":0.0000031721063}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - nl-ams-1", "description":"POP2-HM-4C-32G - nl-ams-1 (0.206€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0037902927, "m3_water_usage":0.0000048725424}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - nl-ams-1", "description":"POP2-HM-8C-64G - nl-ams-1 (0.412€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006415581, "m3_water_usage":0.000008273415}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - nl-ams-1", "description":"POP2-HM-16C-128G - nl-ams-1 (0.824€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011666157, "m3_water_usage":0.000015075159}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - nl-ams-1", "description":"POP2-HM-32C-256G - nl-ams-1 (1.648€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02216731, "m3_water_usage":0.000028678649}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - nl-ams-1", "description":"POP2-HM-48C-384G - nl-ams-1 (2.47€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.032668464, "m3_water_usage":0.00004228214}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - nl-ams-1", "description":"POP2-HM-64C-512G - nl-ams-1 (3.296€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.043169614, "m3_water_usage":0.00005588563}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - nl-ams-1", "description":"POP2-HC-2C-4G - nl-ams-1 (0.0532€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016038516, "m3_water_usage":0.0000021268133}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - nl-ams-1", "description":"POP2-HC-4C-8G - nl-ams-1 (0.1064€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020426987, "m3_water_usage":0.0000027819565}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - nl-ams-1", "description":"POP2-HC-8C-16G - nl-ams-1 (0.2128€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029203927, "m3_water_usage":0.0000040922428}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - nl-ams-1", "description":"POP2-HC-16C-32G - nl-ams-1 (0.4256€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0046757804, "m3_water_usage":0.000006712816}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - nl-ams-1", "description":"POP2-HC-32C-64G - nl-ams-1 (0.8512€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008186556, "m3_water_usage":0.000011953961}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - nl-ams-1", "description":"POP2-HC-48C-96G - nl-ams-1 (1.27€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011697332, "m3_water_usage":0.000017195107}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - nl-ams-1", "description":"POP2-HC-64C-128G - nl-ams-1 (1.7024€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015208108, "m3_water_usage":0.000022436252}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - nl-ams-1", "description":"POP2-HN-10 - nl-ams-1 (0.7264€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020426987, "m3_water_usage":0.0000027819565}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - nl-ams-1", "description":"POP2-HN-3 - nl-ams-1 (0.2554€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016038516, "m3_water_usage":0.0000021268133}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - nl-ams-1", "description":"POP2-HN-5 - nl-ams-1 (0.4524€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020426987, "m3_water_usage":0.0000027819565}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":47}' headers: Content-Length: - - "2304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "51183" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 58f0983a-1d14-4fa9-846e-097d1c1a6683 - X-Total-Count: - - "58" + - 0897d03e-5f89-4ffe-8912-78c05719bc21 status: 200 OK code: 200 - duration: 93.636554ms + duration: 25.203706ms - id: 80 request: proto: HTTP/1.1 @@ -4145,11 +3773,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/nl-ams-1/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -4157,35 +3787,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 347 + content_length: 2298 uncompressed: false - 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"}}}' + 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": "scarce"}, "PRO2-M": {"availability": "scarce"}, "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: - - "347" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2298" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:55 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fa887bfe-6145-48d6-8bcf-014f768be87d + - 704969b4-d929-4242-9907-86b3bd038721 X-Total-Count: - "58" status: 200 OK code: 200 - duration: 68.240669ms + duration: 90.449253ms - id: 81 request: proto: HTTP/1.1 @@ -4198,11 +3820,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.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=2 method: GET response: proto: HTTP/2.0 @@ -4210,35 +3834,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 24777 + content_length: 347 uncompressed: false - 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}}}}' + 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: - - "24777" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "347" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:55 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e1b72913-2cd5-407b-96b2-2366bf97c355 + - 631bd6d6-9c01-4bcd-a18b-d658dbee85af X-Total-Count: - - "32" + - "58" status: 200 OK code: 200 - duration: 94.703855ms + duration: 96.690503ms - id: 82 request: proto: HTTP/1.1 @@ -4251,11 +3867,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-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=1 method: GET response: proto: HTTP/2.0 @@ -4263,31 +3881,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34584 + content_length: 39006 uncompressed: false - 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}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "34584" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39006" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:55 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9acf64df-7d7a-4cc4-be48-52781e06018a + - 0ae10e6c-dfda-45d4-9c0f-0cbc9a35df00 + X-Total-Count: + - "58" status: 200 OK code: 200 - duration: 21.182136ms + duration: 79.265432ms - id: 83 request: proto: HTTP/1.1 @@ -4300,11 +3914,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.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=2 method: GET response: proto: HTTP/2.0 @@ -4312,35 +3928,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1509 + content_length: 6405 uncompressed: false - 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"}}}' + body: '{"servers": {"START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "1509" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "6405" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:53:55 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e966e4e4-5416-49e7-ad96-944db17c8987 + - 81ce5df4-0bcf-4d06-b51d-6d0cfe95b94d X-Total-Count: - - "32" + - "58" status: 200 OK code: 200 - duration: 81.083163ms + duration: 69.902235ms - id: 84 request: proto: HTTP/1.1 @@ -4353,11 +3961,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - nl-ams-1 headers: User-Agent: - scaleway-sdk-go/v1.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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 method: GET response: proto: HTTP/2.0 @@ -4365,35 +3979,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 24777 + content_length: 51183 uncompressed: false - 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}}}}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - nl-ams-1", "description":"POP2-2C-8G - nl-ams-1 (0.0735€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020151848, "m3_water_usage":0.000002740882}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - nl-ams-1", "description":"POP2-4C-16G - nl-ams-1 (0.147€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028653652, "m3_water_usage":0.000004010094}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - nl-ams-1", "description":"POP2-48C-192G - nl-ams-1 (1.77€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021569334, "m3_water_usage":0.00003193276}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - nl-ams-1", "description":"POP2-8C-32G - nl-ams-1 (0.29€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004565726, "m3_water_usage":0.0000065485183}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - nl-ams-1", "description":"POP2-16C-64G - nl-ams-1 (0.59€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007966448, "m3_water_usage":0.000011625366}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - nl-ams-1", "description":"POP2-32C-128G - nl-ams-1 (1.18€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014767891, "m3_water_usage":0.000021779062}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - nl-ams-1", "description":"POP2-64C-256G - nl-ams-1 (2.35€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.028370777, "m3_water_usage":0.000042086453}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - nl-ams-1", "description":"PRO2-XXS - nl-ams-1 (0.055€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001947254, "m3_water_usage":0.0000026120629}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - nl-ams-1", "description":"PRO2-XS - nl-ams-1 (0.11€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0027295032, "m3_water_usage":0.0000037524558}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - nl-ams-1", "description":"PRO2-S - nl-ams-1 (0.219€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004294002, "m3_water_usage":0.0000060332413}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - nl-ams-1", "description":"PRO2-M - nl-ams-1 (0.438€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0074229995, "m3_water_usage":0.000010594813}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - nl-ams-1", "description":"PRO2-L - nl-ams-1 (0.877€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0136809945, "m3_water_usage":0.000019717956}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - nl-ams-1", "description":"GP1-XS Instance - nl-ams-1 (0.091€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029339422, "m3_water_usage":0.0000043015316}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - nl-ams-1", "description":"GP1-S Instance - nl-ams-1 (0.187€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00496177, "m3_water_usage":0.000007458431}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - nl-ams-1", "description":"GP1-M Instance - nl-ams-1 (0.376€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.009017426, "m3_water_usage":0.000013772229}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - nl-ams-1", "description":"GP1-L Instance - nl-ams-1 (0.759€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.017128736, "m3_water_usage":0.000026399826}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - nl-ams-1", "description":"GP1-XL Instance - nl-ams-1 (1.641€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03281864, "m3_water_usage":0.000050825696}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_2c_8g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-2C-8G", "variant":"COPARM1-2C-8G - nl-ams-1", "description":"COPARM1-2C-8G - nl-ams-1 (0.0426€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42600000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019178725, "m3_water_usage":0.0000024682754}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_4c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-4C-16G", "variant":"COPARM1-4C-16G - nl-ams-1", "description":"COPARM1-4C-16G - nl-ams-1 (0.0857€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":85700000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0026161827, "m3_water_usage":0.0000033959616}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_8c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-8C-32G", "variant":"COPARM1-8C-32G - nl-ams-1", "description":"COPARM1-8C-32G - nl-ams-1 (0.1724€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":172400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004012803, "m3_water_usage":0.000005251334}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_16c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-16C-64G", "variant":"COPARM1-16C-64G - nl-ams-1", "description":"COPARM1-16C-64G - nl-ams-1 (0.3454€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":345400000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006806044, "m3_water_usage":0.000008962079}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/coparm1_32c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"COPARM1-32C-128G", "variant":"COPARM1-32C-128G - nl-ams-1", "description":"COPARM1-32C-128G - nl-ams-1 (0.6935€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":693500000}}, "properties":{"hardware":{"cpu":{"description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32", "arch":"arm64", "type":"AMPERE ALTRA MAX (3 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"COPARM1-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.012392526, "m3_water_usage":0.000016383568}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/stardust1_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"STARDUST1-S", "variant":"STARDUST1-S - nl-ams-1", "description":"STARDUST1-S - nl-ams-1 (0.00015€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":150000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":1}, "threads":1}, "ram":{"description":"1 GiB", "size":1073741824, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"STARDUST1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.00093354017, "m3_water_usage":0.000001236451}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - nl-ams-1", "description":"DEV1-S Instance - nl-ams-1 (0.0088€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0011162997, "m3_water_usage":0.0000015244923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - nl-ams-1", "description":"DEV1-M Instance - nl-ams-1 (0.0198€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0014340627, "m3_water_usage":0.0000020253174}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - nl-ams-1", "description":"DEV1-L Instance - nl-ams-1 (0.042€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.002021833, "m3_water_usage":0.0000029517096}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - nl-ams-1", "description":"DEV1-XL Instance - nl-ams-1 (0.063799999€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0025618474, "m3_water_usage":0.000003802844}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - nl-ams-1", "description":"PLAY2-PICO - nl-ams-1 (0.014€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0013371811, "m3_water_usage":0.0000016947124}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - nl-ams-1", "description":"PLAY2-NANO - nl-ams-1 (0.027€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015093576, "m3_water_usage":0.0000019177546}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - nl-ams-1", "description":"PLAY2-MICRO - nl-ams-1 (0.054€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0018537106, "m3_water_usage":0.0000023638393}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - nl-ams-1", "description":"POP2-HM-2C-16G - nl-ams-1 (0.103€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0024776487, "m3_water_usage":0.0000031721063}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - nl-ams-1", "description":"POP2-HM-4C-32G - nl-ams-1 (0.206€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0037902927, "m3_water_usage":0.0000048725424}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - nl-ams-1", "description":"POP2-HM-8C-64G - nl-ams-1 (0.412€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006415581, "m3_water_usage":0.000008273415}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - nl-ams-1", "description":"POP2-HM-16C-128G - nl-ams-1 (0.824€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011666157, "m3_water_usage":0.000015075159}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - nl-ams-1", "description":"POP2-HM-32C-256G - nl-ams-1 (1.648€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02216731, "m3_water_usage":0.000028678649}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - nl-ams-1", "description":"POP2-HM-48C-384G - nl-ams-1 (2.47€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.032668464, "m3_water_usage":0.00004228214}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - nl-ams-1", "description":"POP2-HM-64C-512G - nl-ams-1 (3.296€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.043169614, "m3_water_usage":0.00005588563}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - nl-ams-1", "description":"POP2-HC-2C-4G - nl-ams-1 (0.0532€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016038516, "m3_water_usage":0.0000021268133}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - nl-ams-1", "description":"POP2-HC-4C-8G - nl-ams-1 (0.1064€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020426987, "m3_water_usage":0.0000027819565}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - nl-ams-1", "description":"POP2-HC-8C-16G - nl-ams-1 (0.2128€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029203927, "m3_water_usage":0.0000040922428}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - nl-ams-1", "description":"POP2-HC-16C-32G - nl-ams-1 (0.4256€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0046757804, "m3_water_usage":0.000006712816}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - nl-ams-1", "description":"POP2-HC-32C-64G - nl-ams-1 (0.8512€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008186556, "m3_water_usage":0.000011953961}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - nl-ams-1", "description":"POP2-HC-48C-96G - nl-ams-1 (1.27€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011697332, "m3_water_usage":0.000017195107}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - nl-ams-1", "description":"POP2-HC-64C-128G - nl-ams-1 (1.7024€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015208108, "m3_water_usage":0.000022436252}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - nl-ams-1", "description":"POP2-HN-10 - nl-ams-1 (0.7264€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020426987, "m3_water_usage":0.0000027819565}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - nl-ams-1", "description":"POP2-HN-3 - nl-ams-1 (0.2554€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016038516, "m3_water_usage":0.0000021268133}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_ams1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - nl-ams-1", "description":"POP2-HN-5 - nl-ams-1 (0.4524€ per hour)", "locality":{"zone":"nl-ams-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020426987, "m3_water_usage":0.0000027819565}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":47}' headers: Content-Length: - - "24777" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "51183" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c7b54f38-9fe8-4818-9123-3531acdf6d01 - X-Total-Count: - - "32" + - 916a79ee-89c8-4b28-8560-1c78f6361db8 status: 200 OK code: 200 - duration: 59.43327ms + duration: 22.090435ms - id: 85 request: proto: HTTP/1.1 @@ -4406,11 +4008,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-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=1 method: GET response: proto: HTTP/2.0 @@ -4418,31 +4022,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34584 + content_length: 2298 uncompressed: false - 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}' + 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": "scarce"}, "PRO2-M": {"availability": "scarce"}, "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: - - "34584" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2298" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53:55 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5c11b78a-1220-4e52-afe9-5fb3e0bd8eb0 + - 87237683-1bb3-4885-bb5a-213dc98a376d + X-Total-Count: + - "58" status: 200 OK code: 200 - duration: 19.89268ms + duration: 105.746196ms - id: 86 request: proto: HTTP/1.1 @@ -4455,11 +4055,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.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=2 method: GET response: proto: HTTP/2.0 @@ -4467,35 +4069,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1509 + content_length: 347 uncompressed: false - 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"}}}' + 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: - - "1509" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "347" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53:55 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fa767142-7e7b-47d2-ab39-063d7e0fd59f + - fe793e0b-a5bd-44a7-bb5e-8ca1af3366d8 X-Total-Count: - - "32" + - "58" status: 200 OK code: 200 - duration: 107.837766ms + duration: 89.674254ms - id: 87 request: proto: HTTP/1.1 @@ -4508,11 +4102,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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-2/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -4520,35 +4116,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 24777 + content_length: 31954 uncompressed: false - 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}}}}' + body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": null, "hourly_price": null, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": null, "hourly_price": null, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": null, "hourly_price": null, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}' headers: Content-Length: - - "24777" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "31954" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cc3a26b7-1bf6-4b3d-93e9-e7218aac9e1b + - 92b5d320-676b-40e1-a000-7df31793e23c X-Total-Count: - - "32" + - "41" status: 200 OK code: 200 - duration: 71.658977ms + duration: 62.661205ms - id: 88 request: proto: HTTP/1.1 @@ -4561,11 +4149,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - nl-ams-2 headers: User-Agent: - scaleway-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-2 method: GET response: proto: HTTP/2.0 @@ -4573,31 +4167,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34584 + content_length: 43383 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - nl-ams-2", "description":"POP2-2C-8G - nl-ams-2 (0.0735€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020856473}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - nl-ams-2", "description":"POP2-4C-16G - nl-ams-2 (0.147€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029433833}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - nl-ams-2", "description":"POP2-48C-192G - nl-ams-2 (1.77€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021813573}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - nl-ams-2", "description":"POP2-8C-32G - nl-ams-2 (0.29€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004658855}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - nl-ams-2", "description":"POP2-16C-64G - nl-ams-2 (0.59€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0080897985}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - nl-ams-2", "description":"POP2-32C-128G - nl-ams-2 (1.18€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014951686}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - nl-ams-2", "description":"POP2-64C-256G - nl-ams-2 (2.35€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.028675461}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - nl-ams-2", "description":"PRO2-XXS - nl-ams-2 (0.055€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020169495}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - nl-ams-2", "description":"PRO2-XS - nl-ams-2 (0.11€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028059874}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - nl-ams-2", "description":"PRO2-S - nl-ams-2 (0.219€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0043840636}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - nl-ams-2", "description":"PRO2-M - nl-ams-2 (0.438€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0075402157}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - nl-ams-2", "description":"PRO2-L - nl-ams-2 (0.877€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01385252}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - nl-ams-2", "description":"GP1-XS Instance - nl-ams-2 (0.091€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0030016627}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - nl-ams-2", "description":"GP1-S Instance - nl-ams-2 (0.187€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005048283}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - nl-ams-2", "description":"GP1-M Instance - nl-ams-2 (0.376€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.009141524}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - nl-ams-2", "description":"GP1-L Instance - nl-ams-2 (0.759€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.017328005}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - nl-ams-2", "description":"GP1-XL Instance - nl-ams-2 (1.641€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.033163317}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - nl-ams-2", "description":"DEV1-S Instance - nl-ams-2 (0.0088€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001160269}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - nl-ams-2", "description":"DEV1-M Instance - nl-ams-2 (0.0198€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0014810135}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - nl-ams-2", "description":"DEV1-L Instance - nl-ams-2 (0.042€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020742984}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - nl-ams-2", "description":"DEV1-XL Instance - nl-ams-2 (0.063799999€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0026193797}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - nl-ams-2", "description":"PLAY2-PICO - nl-ams-2 (0.014€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0014014157}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - nl-ams-2", "description":"PLAY2-NANO - nl-ams-2 (0.027€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015749199}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - nl-ams-2", "description":"PLAY2-MICRO - nl-ams-2 (0.054€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019219284}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - nl-ams-2", "description":"POP2-HM-2C-16G - nl-ams-2 (0.103€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.002550678}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - nl-ams-2", "description":"POP2-HM-4C-32G - nl-ams-2 (0.206€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038734446}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - nl-ams-2", "description":"POP2-HM-8C-64G - nl-ams-2 (0.412€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006518978}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - nl-ams-2", "description":"POP2-HM-16C-128G - nl-ams-2 (0.824€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011810045}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - nl-ams-2", "description":"POP2-HM-32C-256G - nl-ams-2 (1.648€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.022392178}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - nl-ams-2", "description":"POP2-HM-48C-384G - nl-ams-2 (2.47€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03297431}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - nl-ams-2", "description":"POP2-HM-64C-512G - nl-ams-2 (3.296€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.043556444}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - nl-ams-2", "description":"POP2-HC-2C-4G - nl-ams-2 (0.0532€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016706584}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - nl-ams-2", "description":"POP2-HC-4C-8G - nl-ams-2 (0.1064€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021134054}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - nl-ams-2", "description":"POP2-HC-8C-16G - nl-ams-2 (0.2128€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029988994}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - nl-ams-2", "description":"POP2-HC-16C-32G - nl-ams-2 (0.4256€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004769888}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - nl-ams-2", "description":"POP2-HC-32C-64G - nl-ams-2 (0.8512€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008311864}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - nl-ams-2", "description":"POP2-HC-48C-96G - nl-ams-2 (1.27€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01185384}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - nl-ams-2", "description":"POP2-HC-64C-128G - nl-ams-2 (1.7024€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015395816}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - nl-ams-2", "description":"POP2-HN-10 - nl-ams-2 (0.7264€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021134054}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - nl-ams-2", "description":"POP2-HN-3 - nl-ams-2 (0.2554€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016706584}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - nl-ams-2", "description":"POP2-HN-5 - nl-ams-2 (0.4524€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021134054}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":41}' headers: Content-Length: - - "34584" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "43383" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cc832dc9-dbf6-4352-b358-69b0b9c8a55c + - 8acc3018-9a03-4b6f-b48b-f5384c9e1924 status: 200 OK code: 200 - duration: 27.371299ms + duration: 25.953608ms - id: 89 request: proto: HTTP/1.1 @@ -4610,11 +4196,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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-2/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -4622,35 +4210,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1509 + content_length: 1882 uncompressed: false - 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"}}}' + 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: - - "1509" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1882" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9a8fe6c7-80d0-4c65-acd3-f4da76525f53 + - afa92b56-15a3-41f7-932e-ed812381134f X-Total-Count: - - "32" + - "41" status: 200 OK code: 200 - duration: 65.730594ms + duration: 68.935497ms - id: 90 request: proto: HTTP/1.1 @@ -4663,11 +4243,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/nl-ams-2/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -4675,35 +4257,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 26508 + content_length: 31954 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}},"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": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": null, "hourly_price": null, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": null, "hourly_price": null, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": null, "hourly_price": null, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}' headers: Content-Length: - - "26508" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "31954" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 443cd53d-04f2-4231-ae6b-7ebf9d0920db + - c35a9d4c-35ee-4cce-8288-b9c42cc83f4f X-Total-Count: - - "34" + - "41" status: 200 OK code: 200 - duration: 112.79623ms + duration: 65.941478ms - id: 91 request: proto: HTTP/1.1 @@ -4716,11 +4290,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - nl-ams-2 headers: User-Agent: - scaleway-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=nl-ams-2 method: GET response: proto: HTTP/2.0 @@ -4728,31 +4308,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44600 + content_length: 43383 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - nl-ams-2", "description":"POP2-2C-8G - nl-ams-2 (0.0735€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020856473}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - nl-ams-2", "description":"POP2-4C-16G - nl-ams-2 (0.147€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029433833}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - nl-ams-2", "description":"POP2-48C-192G - nl-ams-2 (1.77€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021813573}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - nl-ams-2", "description":"POP2-8C-32G - nl-ams-2 (0.29€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004658855}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - nl-ams-2", "description":"POP2-16C-64G - nl-ams-2 (0.59€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0080897985}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - nl-ams-2", "description":"POP2-32C-128G - nl-ams-2 (1.18€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014951686}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - nl-ams-2", "description":"POP2-64C-256G - nl-ams-2 (2.35€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.028675461}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - nl-ams-2", "description":"PRO2-XXS - nl-ams-2 (0.055€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020169495}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - nl-ams-2", "description":"PRO2-XS - nl-ams-2 (0.11€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028059874}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - nl-ams-2", "description":"PRO2-S - nl-ams-2 (0.219€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0043840636}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - nl-ams-2", "description":"PRO2-M - nl-ams-2 (0.438€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0075402157}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - nl-ams-2", "description":"PRO2-L - nl-ams-2 (0.877€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01385252}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - nl-ams-2", "description":"GP1-XS Instance - nl-ams-2 (0.091€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0030016627}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - nl-ams-2", "description":"GP1-S Instance - nl-ams-2 (0.187€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005048283}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - nl-ams-2", "description":"GP1-M Instance - nl-ams-2 (0.376€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.009141524}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - nl-ams-2", "description":"GP1-L Instance - nl-ams-2 (0.759€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.017328005}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - nl-ams-2", "description":"GP1-XL Instance - nl-ams-2 (1.641€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.033163317}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - nl-ams-2", "description":"DEV1-S Instance - nl-ams-2 (0.0088€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001160269}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - nl-ams-2", "description":"DEV1-M Instance - nl-ams-2 (0.0198€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0014810135}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - nl-ams-2", "description":"DEV1-L Instance - nl-ams-2 (0.042€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020742984}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - nl-ams-2", "description":"DEV1-XL Instance - nl-ams-2 (0.063799999€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0026193797}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - nl-ams-2", "description":"PLAY2-PICO - nl-ams-2 (0.014€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0014014157}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - nl-ams-2", "description":"PLAY2-NANO - nl-ams-2 (0.027€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015749199}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - nl-ams-2", "description":"PLAY2-MICRO - nl-ams-2 (0.054€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019219284}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - nl-ams-2", "description":"POP2-HM-2C-16G - nl-ams-2 (0.103€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.002550678}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - nl-ams-2", "description":"POP2-HM-4C-32G - nl-ams-2 (0.206€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038734446}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - nl-ams-2", "description":"POP2-HM-8C-64G - nl-ams-2 (0.412€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006518978}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - nl-ams-2", "description":"POP2-HM-16C-128G - nl-ams-2 (0.824€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011810045}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - nl-ams-2", "description":"POP2-HM-32C-256G - nl-ams-2 (1.648€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.022392178}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - nl-ams-2", "description":"POP2-HM-48C-384G - nl-ams-2 (2.47€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03297431}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - nl-ams-2", "description":"POP2-HM-64C-512G - nl-ams-2 (3.296€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.043556444}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - nl-ams-2", "description":"POP2-HC-2C-4G - nl-ams-2 (0.0532€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016706584}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - nl-ams-2", "description":"POP2-HC-4C-8G - nl-ams-2 (0.1064€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021134054}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - nl-ams-2", "description":"POP2-HC-8C-16G - nl-ams-2 (0.2128€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029988994}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - nl-ams-2", "description":"POP2-HC-16C-32G - nl-ams-2 (0.4256€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004769888}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - nl-ams-2", "description":"POP2-HC-32C-64G - nl-ams-2 (0.8512€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008311864}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - nl-ams-2", "description":"POP2-HC-48C-96G - nl-ams-2 (1.27€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01185384}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - nl-ams-2", "description":"POP2-HC-64C-128G - nl-ams-2 (1.7024€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015395816}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - nl-ams-2", "description":"POP2-HN-10 - nl-ams-2 (0.7264€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021134054}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - nl-ams-2", "description":"POP2-HN-3 - nl-ams-2 (0.2554€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016706584}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - nl-ams-2", "description":"POP2-HN-5 - nl-ams-2 (0.4524€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021134054}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":41}' headers: Content-Length: - - "44600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "43383" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e248eb4e-0fb7-48b8-aaf8-29304d87152d + - 9dbc98cb-b20a-4285-82e2-43927ad81a00 status: 200 OK code: 200 - duration: 24.391483ms + duration: 26.027326ms - id: 92 request: proto: HTTP/1.1 @@ -4765,11 +4337,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/nl-ams-2/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -4777,35 +4351,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1531 + content_length: 1882 uncompressed: false - 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"}}}' + 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: - - "1531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1882" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c2ed9ef6-534b-480d-ab81-ed047804d66c + - 1f3cfd4b-428a-4611-879a-07c8a6952bef X-Total-Count: - - "34" + - "41" status: 200 OK code: 200 - duration: 97.763361ms + duration: 73.769105ms - id: 93 request: proto: HTTP/1.1 @@ -4818,11 +4384,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/nl-ams-2/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -4830,35 +4398,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 26508 + content_length: 31954 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}},"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": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": null, "hourly_price": null, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": null, "hourly_price": null, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": null, "hourly_price": null, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}' headers: Content-Length: - - "26508" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "31954" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a71952c1-329e-4bca-8d8c-16fc3bd80072 + - 9ac50c2e-b0d9-45e6-a2f7-0b82b3cf81bf X-Total-Count: - - "34" + - "41" status: 200 OK code: 200 - duration: 114.096899ms + duration: 61.395198ms - id: 94 request: proto: HTTP/1.1 @@ -4871,11 +4431,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - nl-ams-2 headers: User-Agent: - scaleway-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=nl-ams-2 method: GET response: proto: HTTP/2.0 @@ -4883,31 +4449,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44600 + content_length: 43383 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - nl-ams-2", "description":"POP2-2C-8G - nl-ams-2 (0.0735€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020856473}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - nl-ams-2", "description":"POP2-4C-16G - nl-ams-2 (0.147€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029433833}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - nl-ams-2", "description":"POP2-48C-192G - nl-ams-2 (1.77€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021813573}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - nl-ams-2", "description":"POP2-8C-32G - nl-ams-2 (0.29€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004658855}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - nl-ams-2", "description":"POP2-16C-64G - nl-ams-2 (0.59€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0080897985}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - nl-ams-2", "description":"POP2-32C-128G - nl-ams-2 (1.18€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014951686}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - nl-ams-2", "description":"POP2-64C-256G - nl-ams-2 (2.35€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.028675461}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - nl-ams-2", "description":"PRO2-XXS - nl-ams-2 (0.055€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020169495}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - nl-ams-2", "description":"PRO2-XS - nl-ams-2 (0.11€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0028059874}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - nl-ams-2", "description":"PRO2-S - nl-ams-2 (0.219€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0043840636}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - nl-ams-2", "description":"PRO2-M - nl-ams-2 (0.438€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0075402157}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - nl-ams-2", "description":"PRO2-L - nl-ams-2 (0.877€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01385252}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - nl-ams-2", "description":"GP1-XS Instance - nl-ams-2 (0.091€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0030016627}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - nl-ams-2", "description":"GP1-S Instance - nl-ams-2 (0.187€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005048283}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - nl-ams-2", "description":"GP1-M Instance - nl-ams-2 (0.376€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.009141524}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - nl-ams-2", "description":"GP1-L Instance - nl-ams-2 (0.759€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.017328005}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - nl-ams-2", "description":"GP1-XL Instance - nl-ams-2 (1.641€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.033163317}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - nl-ams-2", "description":"DEV1-S Instance - nl-ams-2 (0.0088€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.001160269}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - nl-ams-2", "description":"DEV1-M Instance - nl-ams-2 (0.0198€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0014810135}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - nl-ams-2", "description":"DEV1-L Instance - nl-ams-2 (0.042€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020742984}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - nl-ams-2", "description":"DEV1-XL Instance - nl-ams-2 (0.063799999€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0026193797}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - nl-ams-2", "description":"PLAY2-PICO - nl-ams-2 (0.014€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0014014157}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - nl-ams-2", "description":"PLAY2-NANO - nl-ams-2 (0.027€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0015749199}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - nl-ams-2", "description":"PLAY2-MICRO - nl-ams-2 (0.054€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0019219284}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - nl-ams-2", "description":"POP2-HM-2C-16G - nl-ams-2 (0.103€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.002550678}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - nl-ams-2", "description":"POP2-HM-4C-32G - nl-ams-2 (0.206€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0038734446}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - nl-ams-2", "description":"POP2-HM-8C-64G - nl-ams-2 (0.412€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006518978}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - nl-ams-2", "description":"POP2-HM-16C-128G - nl-ams-2 (0.824€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011810045}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - nl-ams-2", "description":"POP2-HM-32C-256G - nl-ams-2 (1.648€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.022392178}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - nl-ams-2", "description":"POP2-HM-48C-384G - nl-ams-2 (2.47€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03297431}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - nl-ams-2", "description":"POP2-HM-64C-512G - nl-ams-2 (3.296€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.043556444}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - nl-ams-2", "description":"POP2-HC-2C-4G - nl-ams-2 (0.0532€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016706584}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - nl-ams-2", "description":"POP2-HC-4C-8G - nl-ams-2 (0.1064€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021134054}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - nl-ams-2", "description":"POP2-HC-8C-16G - nl-ams-2 (0.2128€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029988994}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - nl-ams-2", "description":"POP2-HC-16C-32G - nl-ams-2 (0.4256€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004769888}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - nl-ams-2", "description":"POP2-HC-32C-64G - nl-ams-2 (0.8512€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008311864}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - nl-ams-2", "description":"POP2-HC-48C-96G - nl-ams-2 (1.27€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01185384}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - nl-ams-2", "description":"POP2-HC-64C-128G - nl-ams-2 (1.7024€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015395816}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - nl-ams-2", "description":"POP2-HN-10 - nl-ams-2 (0.7264€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021134054}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - nl-ams-2", "description":"POP2-HN-3 - nl-ams-2 (0.2554€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0016706584}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_nl-ams-2", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - nl-ams-2", "description":"POP2-HN-5 - nl-ams-2 (0.4524€ per hour)", "locality":{"zone":"nl-ams-2"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0021134054}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":41}' headers: Content-Length: - - "44600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "43383" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bd13363c-3331-428b-acb5-206791068d28 + - 952b15e1-cc9b-48f9-80ff-aeac3e3550f8 status: 200 OK code: 200 - duration: 22.364142ms + duration: 20.802597ms - id: 95 request: proto: HTTP/1.1 @@ -4920,11 +4478,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/nl-ams-2/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -4932,35 +4492,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1531 + content_length: 1882 uncompressed: false - 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"}}}' + 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: - - "1531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1882" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9f9d3cc3-ee4d-4232-b104-6921459c2d8a + - 340a0570-2fdc-4b86-804d-ae7408cca634 X-Total-Count: - - "34" + - "41" status: 200 OK code: 200 - duration: 88.139622ms + duration: 84.937047ms - id: 96 request: proto: HTTP/1.1 @@ -4973,7 +4525,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -4987,33 +4541,25 @@ interactions: trailer: {} content_length: 26508 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}},"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": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}' headers: Content-Length: - "26508" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53:57 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2dcc0944-392e-4de5-b33d-f07340adf346 + - 69a4ffbb-4a9e-4794-9d3e-c11bcbf09f8b X-Total-Count: - "34" status: 200 OK code: 200 - duration: 73.798478ms + duration: 123.334493ms - id: 97 request: proto: HTTP/1.1 @@ -5026,7 +4572,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - pl-waw-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -5038,31 +4590,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44600 + content_length: 43368 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - pl-waw-1", "description":"POP2-2C-8G - pl-waw-1 (0.0735€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0061734696}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - pl-waw-1", "description":"POP2-4C-16G - pl-waw-1 (0.147€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007879786}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - pl-waw-1", "description":"POP2-48C-192G - pl-waw-1 (1.77€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.04541874}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - pl-waw-1", "description":"POP2-8C-32G - pl-waw-1 (0.29€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011292418}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - pl-waw-1", "description":"POP2-16C-64G - pl-waw-1 (0.59€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018117683}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - pl-waw-1", "description":"POP2-32C-128G - pl-waw-1 (1.18€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03176821}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - pl-waw-1", "description":"POP2-64C-256G - pl-waw-1 (2.35€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.05906927}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - pl-waw-1", "description":"PRO2-XXS - pl-waw-1 (0.055€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0060186447}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - pl-waw-1", "description":"PRO2-XS - pl-waw-1 (0.11€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007570136}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - pl-waw-1", "description":"PRO2-S - pl-waw-1 (0.219€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010673119}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - pl-waw-1", "description":"PRO2-M - pl-waw-1 (0.438€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.016879084}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - pl-waw-1", "description":"PRO2-L - pl-waw-1 (0.877€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.029291015}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - pl-waw-1", "description":"GP1-XS Instance - pl-waw-1 (0.091€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0076317387}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - pl-waw-1", "description":"GP1-S Instance - pl-waw-1 (0.187€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011789025}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - pl-waw-1", "description":"GP1-M Instance - pl-waw-1 (0.376€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.020103598}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - pl-waw-1", "description":"GP1-L Instance - pl-waw-1 (0.759€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03673274}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - pl-waw-1", "description":"GP1-XL Instance - pl-waw-1 (1.641€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0688989}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - pl-waw-1", "description":"DEV1-S Instance - pl-waw-1 (0.0088€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036329427}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - pl-waw-1", "description":"DEV1-M Instance - pl-waw-1 (0.0198€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004288533}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - pl-waw-1", "description":"DEV1-L Instance - pl-waw-1 (0.042€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005501193}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - pl-waw-1", "description":"DEV1-XL Instance - pl-waw-1 (0.063799999€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066153323}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - pl-waw-1", "description":"PLAY2-PICO - pl-waw-1 (0.014€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0047897813}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - pl-waw-1", "description":"PLAY2-NANO - pl-waw-1 (0.027€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005112409}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - pl-waw-1", "description":"PLAY2-MICRO - pl-waw-1 (0.054€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0057576643}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - pl-waw-1", "description":"POP2-HM-2C-16G - pl-waw-1 (0.103€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0069268118}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - pl-waw-1", "description":"POP2-HM-4C-32G - pl-waw-1 (0.206€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.009386471}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - pl-waw-1", "description":"POP2-HM-8C-64G - pl-waw-1 (0.412€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014305787}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - pl-waw-1", "description":"POP2-HM-16C-128G - pl-waw-1 (0.824€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02414442}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - pl-waw-1", "description":"POP2-HM-32C-256G - pl-waw-1 (1.648€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.043821685}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - pl-waw-1", "description":"POP2-HM-48C-384G - pl-waw-1 (2.47€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.06349895}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - pl-waw-1", "description":"POP2-HM-64C-512G - pl-waw-1 (3.296€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.08317622}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - pl-waw-1", "description":"POP2-HC-2C-4G - pl-waw-1 (0.0532€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0053479215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - pl-waw-1", "description":"POP2-HC-4C-8G - pl-waw-1 (0.1064€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062286896}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - pl-waw-1", "description":"POP2-HC-8C-16G - pl-waw-1 (0.2128€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007990226}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - pl-waw-1", "description":"POP2-HC-16C-32G - pl-waw-1 (0.4256€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011513298}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - pl-waw-1", "description":"POP2-HC-32C-64G - pl-waw-1 (0.8512€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018559443}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - pl-waw-1", "description":"POP2-HC-48C-96G - pl-waw-1 (1.27€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.025605587}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - pl-waw-1", "description":"POP2-HC-64C-128G - pl-waw-1 (1.7024€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03265173}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - pl-waw-1", "description":"POP2-HN-10 - pl-waw-1 (0.7264€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062286896}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - pl-waw-1", "description":"POP2-HN-3 - pl-waw-1 (0.2554€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0053479215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - pl-waw-1", "description":"POP2-HN-5 - pl-waw-1 (0.4524€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062286896}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":41}' headers: Content-Length: - - "44600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "43368" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 42914081-98a1-4f68-8c26-c65c1face2e8 + - 43091a99-839a-4de6-aa5e-92ecd511015e status: 200 OK code: 200 - duration: 22.966422ms + duration: 19.739349ms - id: 98 request: proto: HTTP/1.1 @@ -5075,7 +4619,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -5089,33 +4635,25 @@ interactions: trailer: {} content_length: 1531 uncompressed: false - 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"}}}' + 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: - "1531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53:57 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a82c2899-6b5f-40b5-b2b1-0cd91b21bb83 + - a13b3990-c69a-49a8-92aa-ff5bf492754f X-Total-Count: - "34" status: 200 OK code: 200 - duration: 94.088152ms + duration: 91.098628ms - id: 99 request: proto: HTTP/1.1 @@ -5128,11 +4666,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/pl-waw-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -5140,35 +4680,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39728 + content_length: 26508 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}},"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}}}}' + body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}' headers: Content-Length: - - "39728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "26508" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:53:57 GMT Link: - - ; rel="next",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3776186c-160b-4c9b-9ef7-1eca529bd9f2 + - 1c7ecdea-ea62-4427-92ec-eedfdea67cf6 X-Total-Count: - - "52" + - "34" status: 200 OK code: 200 - duration: 76.928315ms + duration: 110.776091ms - id: 100 request: proto: HTTP/1.1 @@ -5181,11 +4713,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - pl-waw-1 headers: User-Agent: - scaleway-sdk-go/v1.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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 method: GET response: proto: HTTP/2.0 @@ -5193,35 +4731,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1575 + content_length: 43368 uncompressed: false - 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}}}}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - pl-waw-1", "description":"POP2-2C-8G - pl-waw-1 (0.0735€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0061734696}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - pl-waw-1", "description":"POP2-4C-16G - pl-waw-1 (0.147€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007879786}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - pl-waw-1", "description":"POP2-48C-192G - pl-waw-1 (1.77€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.04541874}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - pl-waw-1", "description":"POP2-8C-32G - pl-waw-1 (0.29€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011292418}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - pl-waw-1", "description":"POP2-16C-64G - pl-waw-1 (0.59€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018117683}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - pl-waw-1", "description":"POP2-32C-128G - pl-waw-1 (1.18€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03176821}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - pl-waw-1", "description":"POP2-64C-256G - pl-waw-1 (2.35€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.05906927}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - pl-waw-1", "description":"PRO2-XXS - pl-waw-1 (0.055€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0060186447}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - pl-waw-1", "description":"PRO2-XS - pl-waw-1 (0.11€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007570136}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - pl-waw-1", "description":"PRO2-S - pl-waw-1 (0.219€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010673119}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - pl-waw-1", "description":"PRO2-M - pl-waw-1 (0.438€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.016879084}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - pl-waw-1", "description":"PRO2-L - pl-waw-1 (0.877€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.029291015}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - pl-waw-1", "description":"GP1-XS Instance - pl-waw-1 (0.091€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0076317387}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - pl-waw-1", "description":"GP1-S Instance - pl-waw-1 (0.187€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011789025}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - pl-waw-1", "description":"GP1-M Instance - pl-waw-1 (0.376€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.020103598}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - pl-waw-1", "description":"GP1-L Instance - pl-waw-1 (0.759€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03673274}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - pl-waw-1", "description":"GP1-XL Instance - pl-waw-1 (1.641€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0688989}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - pl-waw-1", "description":"DEV1-S Instance - pl-waw-1 (0.0088€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036329427}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - pl-waw-1", "description":"DEV1-M Instance - pl-waw-1 (0.0198€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004288533}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - pl-waw-1", "description":"DEV1-L Instance - pl-waw-1 (0.042€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005501193}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - pl-waw-1", "description":"DEV1-XL Instance - pl-waw-1 (0.063799999€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066153323}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - pl-waw-1", "description":"PLAY2-PICO - pl-waw-1 (0.014€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0047897813}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - pl-waw-1", "description":"PLAY2-NANO - pl-waw-1 (0.027€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005112409}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - pl-waw-1", "description":"PLAY2-MICRO - pl-waw-1 (0.054€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0057576643}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - pl-waw-1", "description":"POP2-HM-2C-16G - pl-waw-1 (0.103€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0069268118}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - pl-waw-1", "description":"POP2-HM-4C-32G - pl-waw-1 (0.206€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.009386471}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - pl-waw-1", "description":"POP2-HM-8C-64G - pl-waw-1 (0.412€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014305787}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - pl-waw-1", "description":"POP2-HM-16C-128G - pl-waw-1 (0.824€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02414442}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - pl-waw-1", "description":"POP2-HM-32C-256G - pl-waw-1 (1.648€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.043821685}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - pl-waw-1", "description":"POP2-HM-48C-384G - pl-waw-1 (2.47€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.06349895}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - pl-waw-1", "description":"POP2-HM-64C-512G - pl-waw-1 (3.296€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.08317622}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - pl-waw-1", "description":"POP2-HC-2C-4G - pl-waw-1 (0.0532€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0053479215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - pl-waw-1", "description":"POP2-HC-4C-8G - pl-waw-1 (0.1064€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062286896}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - pl-waw-1", "description":"POP2-HC-8C-16G - pl-waw-1 (0.2128€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007990226}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - pl-waw-1", "description":"POP2-HC-16C-32G - pl-waw-1 (0.4256€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011513298}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - pl-waw-1", "description":"POP2-HC-32C-64G - pl-waw-1 (0.8512€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018559443}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - pl-waw-1", "description":"POP2-HC-48C-96G - pl-waw-1 (1.27€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.025605587}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - pl-waw-1", "description":"POP2-HC-64C-128G - pl-waw-1 (1.7024€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03265173}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - pl-waw-1", "description":"POP2-HN-10 - pl-waw-1 (0.7264€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062286896}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - pl-waw-1", "description":"POP2-HN-3 - pl-waw-1 (0.2554€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0053479215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - pl-waw-1", "description":"POP2-HN-5 - pl-waw-1 (0.4524€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062286896}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":41}' headers: Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "43368" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0b05a3b0-8477-47d2-9f09-bb34c93966f8 - X-Total-Count: - - "52" + - 533617ad-5085-44e2-8f62-152a4dd1e4b5 status: 200 OK code: 200 - duration: 80.146699ms + duration: 18.783702ms - id: 101 request: proto: HTTP/1.1 @@ -5234,11 +4760,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-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/pl-waw-1/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -5246,31 +4774,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 56175 + content_length: 1531 uncompressed: false - 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}' + 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: - - "56175" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1531" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53:57 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5a7a910e-1031-486c-9b66-d79eabd05f2e + - d9ba4367-e558-4803-8bad-e3ae94bfb7d7 + X-Total-Count: + - "34" status: 200 OK code: 200 - duration: 27.114628ms + duration: 87.25437ms - id: 102 request: proto: HTTP/1.1 @@ -5283,11 +4807,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/pl-waw-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -5295,35 +4821,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2275 + content_length: 26508 uncompressed: false - 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"}}}' + body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}' headers: Content-Length: - - "2275" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "26508" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53:57 GMT Link: - - ; rel="next",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 713eea90-7c5b-4df4-8437-545665d9e274 + - 359921a9-7bde-46d0-bef3-b4d373b9373f X-Total-Count: - - "52" + - "34" status: 200 OK code: 200 - duration: 109.983921ms + duration: 89.299584ms - id: 103 request: proto: HTTP/1.1 @@ -5336,11 +4854,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - pl-waw-1 headers: User-Agent: - scaleway-sdk-go/v1.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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 method: GET response: proto: HTTP/2.0 @@ -5348,35 +4872,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 102 + content_length: 43368 uncompressed: false - body: '{"servers":{"PRO2-XXS":{"availability":"available"},"STARDUST1-S":{"availability":"available"}}}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - pl-waw-1", "description":"POP2-2C-8G - pl-waw-1 (0.0735€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0061734696}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - pl-waw-1", "description":"POP2-4C-16G - pl-waw-1 (0.147€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007879786}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - pl-waw-1", "description":"POP2-48C-192G - pl-waw-1 (1.77€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.04541874}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - pl-waw-1", "description":"POP2-8C-32G - pl-waw-1 (0.29€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011292418}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - pl-waw-1", "description":"POP2-16C-64G - pl-waw-1 (0.59€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018117683}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - pl-waw-1", "description":"POP2-32C-128G - pl-waw-1 (1.18€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03176821}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - pl-waw-1", "description":"POP2-64C-256G - pl-waw-1 (2.35€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.05906927}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - pl-waw-1", "description":"PRO2-XXS - pl-waw-1 (0.055€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0060186447}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - pl-waw-1", "description":"PRO2-XS - pl-waw-1 (0.11€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007570136}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - pl-waw-1", "description":"PRO2-S - pl-waw-1 (0.219€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.010673119}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - pl-waw-1", "description":"PRO2-M - pl-waw-1 (0.438€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.016879084}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - pl-waw-1", "description":"PRO2-L - pl-waw-1 (0.877€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.029291015}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xs/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XS Instance", "variant":"GP1-XS Instance - pl-waw-1", "description":"GP1-XS Instance - pl-waw-1 (0.091€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":91000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0076317387}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_s/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-S Instance", "variant":"GP1-S Instance - pl-waw-1", "description":"GP1-S Instance - pl-waw-1 (0.187€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":187000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011789025}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_m/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-M Instance", "variant":"GP1-M Instance - pl-waw-1", "description":"GP1-M Instance - pl-waw-1 (0.376€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":376000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.020103598}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_l/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-L Instance", "variant":"GP1-L Instance - pl-waw-1", "description":"GP1-L Instance - pl-waw-1 (0.759€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":759000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03673274}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/gp1_xl/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"GP1-XL Instance", "variant":"GP1-XL Instance - pl-waw-1", "description":"GP1-XL Instance - pl-waw-1 (1.641€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":641000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":48}, "threads":48}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"General Purpose", "offer_id":"GP1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0688989}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_s/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-S Instance", "variant":"DEV1-S Instance - pl-waw-1", "description":"DEV1-S Instance - pl-waw-1 (0.0088€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":8800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":2}, "threads":2}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"DEV1-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0036329427}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_m/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-M Instance", "variant":"DEV1-M Instance - pl-waw-1", "description":"DEV1-M Instance - pl-waw-1 (0.0198€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":19800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":3}, "threads":3}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s", "internal_bandwidth":300000000, "public_bandwidth":300000000, "max_public_bandwidth":300000000}}, "instance":{"range":"Development", "offer_id":"DEV1-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.004288533}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_l/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-L Instance", "variant":"DEV1-L Instance - pl-waw-1", "description":"DEV1-L Instance - pl-waw-1 (0.042€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":42000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"DEV1-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005501193}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/dev1_xl/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"DEV1-XL Instance", "variant":"DEV1-XL Instance - pl-waw-1", "description":"DEV1-XL Instance - pl-waw-1 (0.063799999€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":63799999}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent", "virtual":{"count":4}, "threads":4}, "ram":{"description":"12 GiB", "size":12884901888, "type":""}, "storage":{"description":"Dynamic local: 1 x SSD, Block", "total":0}, "network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s", "internal_bandwidth":500000000, "public_bandwidth":500000000, "max_public_bandwidth":500000000}}, "instance":{"range":"Development", "offer_id":"DEV1-XL", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0066153323}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - pl-waw-1", "description":"PLAY2-PICO - pl-waw-1 (0.014€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0047897813}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - pl-waw-1", "description":"PLAY2-NANO - pl-waw-1 (0.027€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.005112409}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - pl-waw-1", "description":"PLAY2-MICRO - pl-waw-1 (0.054€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0057576643}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - pl-waw-1", "description":"POP2-HM-2C-16G - pl-waw-1 (0.103€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0069268118}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - pl-waw-1", "description":"POP2-HM-4C-32G - pl-waw-1 (0.206€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.009386471}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - pl-waw-1", "description":"POP2-HM-8C-64G - pl-waw-1 (0.412€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.014305787}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - pl-waw-1", "description":"POP2-HM-16C-128G - pl-waw-1 (0.824€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02414442}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - pl-waw-1", "description":"POP2-HM-32C-256G - pl-waw-1 (1.648€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.043821685}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - pl-waw-1", "description":"POP2-HM-48C-384G - pl-waw-1 (2.47€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.06349895}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - pl-waw-1", "description":"POP2-HM-64C-512G - pl-waw-1 (3.296€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.08317622}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - pl-waw-1", "description":"POP2-HC-2C-4G - pl-waw-1 (0.0532€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0053479215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - pl-waw-1", "description":"POP2-HC-4C-8G - pl-waw-1 (0.1064€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062286896}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - pl-waw-1", "description":"POP2-HC-8C-16G - pl-waw-1 (0.2128€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.007990226}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - pl-waw-1", "description":"POP2-HC-16C-32G - pl-waw-1 (0.4256€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.011513298}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - pl-waw-1", "description":"POP2-HC-32C-64G - pl-waw-1 (0.8512€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.018559443}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - pl-waw-1", "description":"POP2-HC-48C-96G - pl-waw-1 (1.27€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.025605587}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - pl-waw-1", "description":"POP2-HC-64C-128G - pl-waw-1 (1.7024€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.03265173}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - pl-waw-1", "description":"POP2-HN-10 - pl-waw-1 (0.7264€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062286896}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - pl-waw-1", "description":"POP2-HN-3 - pl-waw-1 (0.2554€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0053479215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_pl-waw-1", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - pl-waw-1", "description":"POP2-HN-5 - pl-waw-1 (0.4524€ per hour)", "locality":{"zone":"pl-waw-1"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0062286896}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":41}' headers: Content-Length: - - "102" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "43368" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bd554b46-ac14-4847-ad39-6bc9dfcab75a - X-Total-Count: - - "52" + - 61d36677-0005-4f4b-a889-b0d87d14fff9 status: 200 OK code: 200 - duration: 108.011944ms + duration: 23.156889ms - id: 104 request: proto: HTTP/1.1 @@ -5389,11 +4901,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/pl-waw-1/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -5401,35 +4915,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39728 + content_length: 1531 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}},"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}}}}' + 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: - - "39728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1531" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53:58 GMT Link: - - ; rel="next",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b2cf2831-a871-4442-9d63-9cddf20301b5 + - 04de6f01-9f4d-4129-b21d-433ee3136f0f X-Total-Count: - - "52" + - "34" status: 200 OK code: 200 - duration: 81.76874ms + duration: 100.256361ms - id: 105 request: proto: HTTP/1.1 @@ -5442,11 +4948,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/pl-waw-3/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -5454,35 +4962,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1575 + content_length: 24777 uncompressed: false - 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}}}}' + body: '{"servers": {"PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}' headers: Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "24777" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53:58 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ad64ed3b-939a-4321-9254-7bfbff3a487c + - 368b76db-f610-408c-abf4-926a253404f7 X-Total-Count: - - "52" + - "32" status: 200 OK code: 200 - duration: 101.515757ms + duration: 83.711174ms - id: 106 request: proto: HTTP/1.1 @@ -5495,11 +4995,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - pl-waw-3 headers: User-Agent: - scaleway-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=pl-waw-3 method: GET response: proto: HTTP/2.0 @@ -5507,31 +5013,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 56175 + content_length: 33495 uncompressed: false - 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}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - pl-waw-3", "description":"POP2-2C-8G - pl-waw-3 (0.0735€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031511723}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - pl-waw-3", "description":"POP2-4C-16G - pl-waw-3 (0.147€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0048574884}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - pl-waw-3", "description":"POP2-48C-192G - pl-waw-3 (1.77€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.042396445}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - pl-waw-3", "description":"POP2-8C-32G - pl-waw-3 (0.29€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008270121}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - pl-waw-3", "description":"POP2-16C-64G - pl-waw-3 (0.59€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015095386}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - pl-waw-3", "description":"POP2-32C-128G - pl-waw-3 (1.18€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.028745914}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - pl-waw-3", "description":"POP2-64C-256G - pl-waw-3 (2.35€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.056046974}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - pl-waw-3", "description":"PRO2-XXS - pl-waw-3 (0.055€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029963476}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - pl-waw-3", "description":"PRO2-XS - pl-waw-3 (0.11€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0045478386}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - pl-waw-3", "description":"PRO2-S - pl-waw-3 (0.219€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0076508215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - pl-waw-3", "description":"PRO2-M - pl-waw-3 (0.438€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013856786}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - pl-waw-3", "description":"PRO2-L - pl-waw-3 (0.877€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.026268717}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - pl-waw-3", "description":"PLAY2-PICO - pl-waw-3 (0.014€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017674839}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - pl-waw-3", "description":"PLAY2-NANO - pl-waw-3 (0.027€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020901116}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - pl-waw-3", "description":"PLAY2-MICRO - pl-waw-3 (0.054€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.002735367}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - pl-waw-3", "description":"POP2-HM-2C-16G - pl-waw-3 (0.103€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0039045145}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - pl-waw-3", "description":"POP2-HM-4C-32G - pl-waw-3 (0.206€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006364173}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - pl-waw-3", "description":"POP2-HM-8C-64G - pl-waw-3 (0.412€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01128349}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - pl-waw-3", "description":"POP2-HM-16C-128G - pl-waw-3 (0.824€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021122122}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - pl-waw-3", "description":"POP2-HM-32C-256G - pl-waw-3 (1.648€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.04079939}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - pl-waw-3", "description":"POP2-HM-48C-384G - pl-waw-3 (2.47€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.060476657}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - pl-waw-3", "description":"POP2-HM-64C-512G - pl-waw-3 (3.296€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.08015392}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - pl-waw-3", "description":"POP2-HC-2C-4G - pl-waw-3 (0.0532€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023256242}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - pl-waw-3", "description":"POP2-HC-4C-8G - pl-waw-3 (0.1064€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032063923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - pl-waw-3", "description":"POP2-HC-8C-16G - pl-waw-3 (0.2128€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0049679284}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - pl-waw-3", "description":"POP2-HC-16C-32G - pl-waw-3 (0.4256€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008491001}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - pl-waw-3", "description":"POP2-HC-32C-64G - pl-waw-3 (0.8512€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015537146}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - pl-waw-3", "description":"POP2-HC-48C-96G - pl-waw-3 (1.27€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02258329}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - pl-waw-3", "description":"POP2-HC-64C-128G - pl-waw-3 (1.7024€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.029629434}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - pl-waw-3", "description":"POP2-HN-10 - pl-waw-3 (0.7264€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032063923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - pl-waw-3", "description":"POP2-HN-3 - pl-waw-3 (0.2554€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023256242}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - pl-waw-3", "description":"POP2-HN-5 - pl-waw-3 (0.4524€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032063923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":32}' headers: Content-Length: - - "56175" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "33495" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c34f0bce-7193-4d64-a33e-b27e6a43acc0 + - 14fb5a7e-91da-4d0e-a8e4-be62fa5a5da8 status: 200 OK code: 200 - duration: 18.374504ms + duration: 30.33996ms - id: 107 request: proto: HTTP/1.1 @@ -5544,11 +5042,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/pl-waw-3/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -5556,35 +5056,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2275 + content_length: 1515 uncompressed: false - 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"}}}' + 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: - - "2275" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1515" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53:58 GMT Link: - - ; rel="next",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c9dae60a-d5e8-4983-b84b-2f9c361102ba + - ee0f2ca2-b55d-4bf2-bbd9-60365949e04e X-Total-Count: - - "52" + - "32" status: 200 OK code: 200 - duration: 107.496829ms + duration: 106.32591ms - id: 108 request: proto: HTTP/1.1 @@ -5597,11 +5089,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/pl-waw-3/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -5609,35 +5103,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 102 + content_length: 24777 uncompressed: false - body: '{"servers":{"PRO2-XXS":{"availability":"available"},"STARDUST1-S":{"availability":"available"}}}' + body: '{"servers": {"PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}' headers: Content-Length: - - "102" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "24777" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:53:58 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 664c4d68-312c-4f1e-8f8e-8598fbe524c8 + - e855aae8-694f-4d13-903b-b57243e8d588 X-Total-Count: - - "52" + - "32" status: 200 OK code: 200 - duration: 104.644852ms + duration: 114.397683ms - id: 109 request: proto: HTTP/1.1 @@ -5650,11 +5136,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - pl-waw-3 headers: User-Agent: - scaleway-sdk-go/v1.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=pl-waw-3 method: GET response: proto: HTTP/2.0 @@ -5662,35 +5154,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39728 + content_length: 33495 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}},"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}}}}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - pl-waw-3", "description":"POP2-2C-8G - pl-waw-3 (0.0735€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031511723}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - pl-waw-3", "description":"POP2-4C-16G - pl-waw-3 (0.147€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0048574884}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - pl-waw-3", "description":"POP2-48C-192G - pl-waw-3 (1.77€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.042396445}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - pl-waw-3", "description":"POP2-8C-32G - pl-waw-3 (0.29€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008270121}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - pl-waw-3", "description":"POP2-16C-64G - pl-waw-3 (0.59€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015095386}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - pl-waw-3", "description":"POP2-32C-128G - pl-waw-3 (1.18€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.028745914}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - pl-waw-3", "description":"POP2-64C-256G - pl-waw-3 (2.35€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.056046974}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - pl-waw-3", "description":"PRO2-XXS - pl-waw-3 (0.055€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029963476}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - pl-waw-3", "description":"PRO2-XS - pl-waw-3 (0.11€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0045478386}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - pl-waw-3", "description":"PRO2-S - pl-waw-3 (0.219€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0076508215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - pl-waw-3", "description":"PRO2-M - pl-waw-3 (0.438€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013856786}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - pl-waw-3", "description":"PRO2-L - pl-waw-3 (0.877€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.026268717}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - pl-waw-3", "description":"PLAY2-PICO - pl-waw-3 (0.014€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017674839}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - pl-waw-3", "description":"PLAY2-NANO - pl-waw-3 (0.027€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020901116}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - pl-waw-3", "description":"PLAY2-MICRO - pl-waw-3 (0.054€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.002735367}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - pl-waw-3", "description":"POP2-HM-2C-16G - pl-waw-3 (0.103€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0039045145}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - pl-waw-3", "description":"POP2-HM-4C-32G - pl-waw-3 (0.206€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006364173}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - pl-waw-3", "description":"POP2-HM-8C-64G - pl-waw-3 (0.412€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01128349}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - pl-waw-3", "description":"POP2-HM-16C-128G - pl-waw-3 (0.824€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021122122}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - pl-waw-3", "description":"POP2-HM-32C-256G - pl-waw-3 (1.648€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.04079939}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - pl-waw-3", "description":"POP2-HM-48C-384G - pl-waw-3 (2.47€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.060476657}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - pl-waw-3", "description":"POP2-HM-64C-512G - pl-waw-3 (3.296€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.08015392}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - pl-waw-3", "description":"POP2-HC-2C-4G - pl-waw-3 (0.0532€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023256242}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - pl-waw-3", "description":"POP2-HC-4C-8G - pl-waw-3 (0.1064€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032063923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - pl-waw-3", "description":"POP2-HC-8C-16G - pl-waw-3 (0.2128€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0049679284}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - pl-waw-3", "description":"POP2-HC-16C-32G - pl-waw-3 (0.4256€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008491001}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - pl-waw-3", "description":"POP2-HC-32C-64G - pl-waw-3 (0.8512€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015537146}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - pl-waw-3", "description":"POP2-HC-48C-96G - pl-waw-3 (1.27€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02258329}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - pl-waw-3", "description":"POP2-HC-64C-128G - pl-waw-3 (1.7024€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.029629434}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - pl-waw-3", "description":"POP2-HN-10 - pl-waw-3 (0.7264€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032063923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - pl-waw-3", "description":"POP2-HN-3 - pl-waw-3 (0.2554€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023256242}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - pl-waw-3", "description":"POP2-HN-5 - pl-waw-3 (0.4524€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032063923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":32}' headers: Content-Length: - - "39728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "33495" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7255d12a-d028-464e-a23f-4a52f72350b6 - X-Total-Count: - - "52" + - 46a68f75-65ea-4722-b010-a59d2d30af1f status: 200 OK code: 200 - duration: 76.685181ms + duration: 25.193567ms - id: 110 request: proto: HTTP/1.1 @@ -5703,11 +5183,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/pl-waw-3/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -5715,35 +5197,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1575 + content_length: 1515 uncompressed: false - 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}}}}' + 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: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1515" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:53:58 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 50fac3ca-c5c2-4028-a356-8ca32052c48a + - 117243a7-d6ba-4e5c-91da-1f47e5e5e083 X-Total-Count: - - "52" + - "32" status: 200 OK code: 200 - duration: 144.973ms + duration: 89.452701ms - id: 111 request: proto: HTTP/1.1 @@ -5756,11 +5230,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-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/pl-waw-3/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -5768,31 +5244,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 56175 + 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.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}' + body: '{"servers": {"PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}' headers: Content-Length: - - "56175" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "24777" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:53:59 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9dd40a2-b7a6-48d9-b757-a0b9d02efb1e + - 8390fb13-7284-4f7c-9679-b54b69ad9ee8 + X-Total-Count: + - "32" status: 200 OK code: 200 - duration: 26.122348ms + duration: 113.49728ms - id: 112 request: proto: HTTP/1.1 @@ -5805,11 +5277,17 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" + product_types: + - instance + zone: + - pl-waw-3 headers: User-Agent: - scaleway-sdk-go/v1.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=pl-waw-3 method: GET response: proto: HTTP/2.0 @@ -5817,35 +5295,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2275 + content_length: 33495 uncompressed: false - 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"}}}' + body: '{"products":[{"sku":"/compute/pop2_2c_8g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-2C-8G", "variant":"POP2-2C-8G - pl-waw-3", "description":"POP2-2C-8G - pl-waw-3 (0.0735€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":73500000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-2C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0031511723}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_4c_16g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-4C-16G", "variant":"POP2-4C-16G - pl-waw-3", "description":"POP2-4C-16G - pl-waw-3 (0.147€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":147000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-4C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0048574884}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_48c_192g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-48C-192G", "variant":"POP2-48C-192G - pl-waw-3", "description":"POP2-48C-192G - pl-waw-3 (1.77€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":770000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"192 GiB", "size":206158430208, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-48C-192G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.042396445}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_8c_32g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-8C-32G", "variant":"POP2-8C-32G - pl-waw-3", "description":"POP2-8C-32G - pl-waw-3 (0.29€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":290000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-8C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008270121}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_16c_64g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-16C-64G", "variant":"POP2-16C-64G - pl-waw-3", "description":"POP2-16C-64G - pl-waw-3 (0.59€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":590000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-16C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015095386}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_32c_128g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-32C-128G", "variant":"POP2-32C-128G - pl-waw-3", "description":"POP2-32C-128G - pl-waw-3 (1.18€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":180000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-32C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.028745914}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_64c_256g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-64C-256G", "variant":"POP2-64C-256G - pl-waw-3", "description":"POP2-64C-256G - pl-waw-3 (2.35€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":350000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"General Purpose", "offer_id":"POP2-64C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.056046974}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xxs/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XXS", "variant":"PRO2-XXS - pl-waw-3", "description":"PRO2-XXS - pl-waw-3 (0.055€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":55000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s", "internal_bandwidth":350000000, "public_bandwidth":350000000, "max_public_bandwidth":350000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XXS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0029963476}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_xs/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-XS", "variant":"PRO2-XS - pl-waw-3", "description":"PRO2-XS - pl-waw-3 (0.11€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":110000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s", "internal_bandwidth":700000000, "public_bandwidth":700000000, "max_public_bandwidth":700000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-XS", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0045478386}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_s/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-S", "variant":"PRO2-S - pl-waw-3", "description":"PRO2-S - pl-waw-3 (0.219€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":219000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s", "internal_bandwidth":1500000000, "public_bandwidth":1500000000, "max_public_bandwidth":1500000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-S", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0076508215}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_m/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-M", "variant":"PRO2-M - pl-waw-3", "description":"PRO2-M - pl-waw-3 (0.438€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":438000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-M", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.013856786}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pro2_l/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PRO2-L", "variant":"PRO2-L - pl-waw-3", "description":"PRO2-L - pl-waw-3 (0.877€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":877000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s", "internal_bandwidth":6000000000, "public_bandwidth":6000000000, "max_public_bandwidth":6000000000}}, "instance":{"range":"General Purpose", "offer_id":"PRO2-L", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.026268717}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_pico/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-PICO", "variant":"PLAY2-PICO - pl-waw-3", "description":"PLAY2-PICO - pl-waw-3 (0.014€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":14000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":1}, "threads":1}, "ram":{"description":"2 GiB", "size":2147483648, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s", "internal_bandwidth":100000000, "public_bandwidth":100000000, "max_public_bandwidth":100000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-PICO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0017674839}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_nano/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-NANO", "variant":"PLAY2-NANO - pl-waw-3", "description":"PLAY2-NANO - pl-waw-3 (0.027€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":27000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s", "internal_bandwidth":200000000, "public_bandwidth":200000000, "max_public_bandwidth":200000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-NANO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0020901116}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/play2_micro/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"PLAY2-MICRO", "variant":"PLAY2-MICRO - pl-waw-3", "description":"PLAY2-MICRO - pl-waw-3 (0.054€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":54000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Development", "offer_id":"PLAY2-MICRO", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.002735367}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_2c_16g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-2C-16G", "variant":"POP2-HM-2C-16G - pl-waw-3", "description":"POP2-HM-2C-16G - pl-waw-3 (0.103€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":103000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-2C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0039045145}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_4c_32g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-4C-32G", "variant":"POP2-HM-4C-32G - pl-waw-3", "description":"POP2-HM-4C-32G - pl-waw-3 (0.206€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":206000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-4C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.006364173}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_8c_64g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-8C-64G", "variant":"POP2-HM-8C-64G - pl-waw-3", "description":"POP2-HM-8C-64G - pl-waw-3 (0.412€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":412000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-8C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.01128349}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_16c_128g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-16C-128G", "variant":"POP2-HM-16C-128G - pl-waw-3", "description":"POP2-HM-16C-128G - pl-waw-3 (0.824€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":824000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-16C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.021122122}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_32c_256g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-32C-256G", "variant":"POP2-HM-32C-256G - pl-waw-3", "description":"POP2-HM-32C-256G - pl-waw-3 (1.648€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":648000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"256 GiB", "size":274877906944, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-32C-256G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.04079939}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_48c_384g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-48C-384G", "variant":"POP2-HM-48C-384G - pl-waw-3", "description":"POP2-HM-48C-384G - pl-waw-3 (2.47€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":2, "nanos":470000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"384 GiB", "size":412316860416, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-48C-384G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.060476657}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hm_64c_512g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HM-64C-512G", "variant":"POP2-HM-64C-512G - pl-waw-3", "description":"POP2-HM-64C-512G - pl-waw-3 (3.296€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":3, "nanos":296000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"512 GiB", "size":549755813888, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HM-64C-512G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.08015392}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_2c_4g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-2C-4G", "variant":"POP2-HC-2C-4G - pl-waw-3", "description":"POP2-HC-2C-4G - pl-waw-3 (0.0532€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":53200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s", "internal_bandwidth":400000000, "public_bandwidth":400000000, "max_public_bandwidth":400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-2C-4G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023256242}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_4c_8g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-4C-8G", "variant":"POP2-HC-4C-8G - pl-waw-3", "description":"POP2-HC-4C-8G - pl-waw-3 (0.1064€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":106400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s", "internal_bandwidth":800000000, "public_bandwidth":800000000, "max_public_bandwidth":800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-4C-8G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032063923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_8c_16g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-8C-16G", "variant":"POP2-HC-8C-16G - pl-waw-3", "description":"POP2-HC-8C-16G - pl-waw-3 (0.2128€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":212800000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":8}, "threads":8}, "ram":{"description":"16 GiB", "size":17179869184, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s", "internal_bandwidth":1600000000, "public_bandwidth":1600000000, "max_public_bandwidth":1600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-8C-16G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0049679284}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_16c_32g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-16C-32G", "variant":"POP2-HC-16C-32G - pl-waw-3", "description":"POP2-HC-16C-32G - pl-waw-3 (0.4256€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":425600000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":16}, "threads":16}, "ram":{"description":"32 GiB", "size":34359738368, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s", "internal_bandwidth":3200000000, "public_bandwidth":3200000000, "max_public_bandwidth":3200000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-16C-32G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.008491001}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_32c_64g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-32C-64G", "variant":"POP2-HC-32C-64G - pl-waw-3", "description":"POP2-HC-32C-64G - pl-waw-3 (0.8512€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":851200000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":32}, "threads":32}, "ram":{"description":"64 GiB", "size":68719476736, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s", "internal_bandwidth":6400000000, "public_bandwidth":6400000000, "max_public_bandwidth":6400000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-32C-64G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.015537146}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_48c_96g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-48C-96G", "variant":"POP2-HC-48C-96G - pl-waw-3", "description":"POP2-HC-48C-96G - pl-waw-3 (1.27€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":270000000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":48}, "threads":48}, "ram":{"description":"96 GiB", "size":103079215104, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s", "internal_bandwidth":9600000000, "public_bandwidth":9600000000, "max_public_bandwidth":9600000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-48C-96G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.02258329}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hc_64c_128g/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HC-64C-128G", "variant":"POP2-HC-64C-128G - pl-waw-3", "description":"POP2-HC-64C-128G - pl-waw-3 (1.7024€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":1, "nanos":702400000}}, "properties":{"hardware":{"cpu":{"description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64", "arch":"x64", "type":"AMD EPYC™ 7543 (2.8 GHz)", "virtual":{"count":64}, "threads":64}, "ram":{"description":"128 GiB", "size":137438953472, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s", "internal_bandwidth":12800000000, "public_bandwidth":12800000000, "max_public_bandwidth":12800000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HC-64C-128G", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.029629434}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_10/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-10", "variant":"POP2-HN-10 - pl-waw-3", "description":"POP2-HN-10 - pl-waw-3 (0.7264€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":726400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s", "internal_bandwidth":10000000000, "public_bandwidth":10000000000, "max_public_bandwidth":10000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-10", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032063923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_3/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-3", "variant":"POP2-HN-3 - pl-waw-3", "description":"POP2-HN-3 - pl-waw-3 (0.2554€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":255400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 2", "arch":"x64", "type":"", "virtual":{"count":2}, "threads":2}, "ram":{"description":"4 GiB", "size":4294967296, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s", "internal_bandwidth":3000000000, "public_bandwidth":3000000000, "max_public_bandwidth":3000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-3", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0023256242}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}, {"sku":"/compute/pop2_hn_5/run_pl-waw-3", "service_category":"Compute", "product_category":"Instance", "product":"POP2-HN-5", "variant":"POP2-HN-5 - pl-waw-3", "description":"POP2-HN-5 - pl-waw-3 (0.4524€ per hour)", "locality":{"zone":"pl-waw-3"}, "price":{"retail_price":{"currency_code":"EUR", "units":0, "nanos":452400000}}, "properties":{"hardware":{"cpu":{"description":", x64, vCPUs: 4", "arch":"x64", "type":"", "virtual":{"count":4}, "threads":4}, "ram":{"description":"8 GiB", "size":8589934592, "type":""}, "storage":{"description":"Block", "total":0}, "network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s", "internal_bandwidth":5000000000, "public_bandwidth":5000000000, "max_public_bandwidth":5000000000}}, "instance":{"range":"Specialized", "offer_id":"POP2-HN-5", "recommended_replacement_offer_ids":[]}}, "environmental_impact_estimation":{"kg_co2_equivalent":0.0032063923}, "unit_of_measure":{"unit":"hour", "size":1}, "status":"general_availability"}], "total_count":32}' headers: Content-Length: - - "2275" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "33495" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 849e53fd-6a5a-4606-9a49-d5fdc9c1fa6a - X-Total-Count: - - "52" + - 82edcc6d-032f-458d-a005-df95f1679b0c status: 200 OK code: 200 - duration: 111.511064ms + duration: 20.916911ms - id: 113 request: proto: HTTP/1.1 @@ -5858,11 +5324,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.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/pl-waw-3/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -5870,32 +5338,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 102 + content_length: 1515 uncompressed: false - body: '{"servers":{"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": "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: - - "102" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1515" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:53:59 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3f364a43-ce03-4da6-ace6-608396429133 + - d5be47a4-e2f8-4651-a456-5945d26a4b18 X-Total-Count: - - "52" + - "32" status: 200 OK code: 200 - duration: 115.763766ms + duration: 109.28338ms 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 6ae5905e3..14746d583 100644 --- a/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:16 GMT + - Wed, 29 Oct 2025 22:53:46 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2989da85-ac21-4fd2-8978-e39baeffe821 + - fddeae8c-68d6-45f4-8099-8e3fa0b28c33 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 73.100678ms + duration: 54.869995ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:16 GMT + - Wed, 29 Oct 2025 22:53:46 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b7ba2020-340e-4173-b11f-f38212d08ee3 + - 53bbd1fb-93a4-43fe-8100-094e26914e70 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 68.559458ms + duration: 43.355806ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,31 +127,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:16 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d2687d2a-27a4-4f96-b18e-e8c043abc2e5 + - cad6d76f-e1d1-470c-ae8a-1639d8fbfa8a status: 200 OK code: 200 - duration: 50.09751ms + duration: 46.017653ms - id: 3 request: proto: HTTP/1.1 @@ -182,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 1843 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"}}' + body: '{"server": {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1843" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:18 GMT + - Wed, 29 Oct 2025 22:53:47 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 75ef70e5-a2ae-462d-8014-a09ca99c86ab + - 0fe97832-8b31-4790-ab36-1910cb4577b9 status: 201 Created code: 201 - duration: 1.185729003s + duration: 1.042278179s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 1843 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"}}' + body: '{"server": {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1843" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:18 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9cd5d5e6-de07-4ed9-abed-67254312da2e + - ab38e7ea-47fc-4731-95ba-9a85fcf13433 status: 200 OK code: 200 - duration: 167.450259ms + duration: 174.054806ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a method: GET response: proto: HTTP/2.0 @@ -284,29 +256,21 @@ 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-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"}}' + body: '{"server": {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:18 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - da71e881-4701-48dc-87ec-c22b914afacd + - c6a4c812-36a8-4353-8b34-27ea52acf7f6 status: 200 OK code: 200 - duration: 140.639369ms + duration: 139.027593ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a method: GET response: proto: HTTP/2.0 @@ -331,31 +295,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 1843 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"}}' + body: '{"server": {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1843" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:18 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 01daca00-f608-4a4a-9e3a-f0d626b52440 + - 6e651907-1369-4aee-8088-5b086a2c6aeb status: 200 OK code: 200 - duration: 136.784097ms + duration: 131.512391ms - id: 7 request: proto: HTTP/1.1 @@ -372,7 +328,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f method: GET response: proto: HTTP/2.0 @@ -382,29 +338,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4ade4ab0-de81-45b6-889c-5afed15bf99f"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:18 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 588f6450-05cd-4616-8684-2b3270a41056 + - f77833b0-5edc-475c-87d4-72ed28767767 status: 404 Not Found code: 404 - duration: 24.808709ms + duration: 27.085825ms - id: 8 request: proto: HTTP/1.1 @@ -421,7 +369,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f method: GET response: proto: HTTP/2.0 @@ -431,29 +379,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"4ade4ab0-de81-45b6-889c-5afed15bf99f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.632261Z", "updated_at":"2025-10-29T22:53:47.632261Z", "references":[{"id":"d0aeff75-c713-4d75-9ad6-0bef92b10a76", "product_resource_type":"instance_server", "product_resource_id":"f35109e4-cdf2-44d3-aede-1f09b9318b2a", "created_at":"2025-10-29T22:53:47.632261Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:22:18 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45584e7b-eefc-4d05-83b7-3c271700daf6 + - 65b56113-7c10-4f11-af0d-e4d205a2e551 status: 200 OK code: 200 - duration: 79.211566ms + duration: 122.930464ms - id: 9 request: proto: HTTP/1.1 @@ -470,7 +410,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/user_data method: GET response: proto: HTTP/2.0 @@ -480,29 +420,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:22:18 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dd6bc459-abd4-43ea-a376-b7a0491c7372 + - a7f00a17-2715-4849-969f-1f2068bf70f8 status: 200 OK code: 200 - duration: 95.608135ms + duration: 91.813663ms - id: 10 request: proto: HTTP/1.1 @@ -519,7 +451,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/private_nics method: GET response: proto: HTTP/2.0 @@ -529,33 +461,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:22:18 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c7da2164-f22f-4878-9fd1-2971caaca407 + - 3b8d36af-0308-47ea-9f3e-6b4eedb8ffd2 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 95.089711ms + duration: 90.060034ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a method: GET response: proto: HTTP/2.0 @@ -582,29 +506,21 @@ 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-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"}}' + body: '{"server": {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e3cd40f8-fea4-427e-a477-52a21665d4cb + - dcf4ec4a-2f5d-43b2-bf6d-88a3bcf1d53b status: 200 OK code: 200 - duration: 148.362005ms + duration: 147.975564ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f method: GET response: proto: HTTP/2.0 @@ -631,29 +547,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4ade4ab0-de81-45b6-889c-5afed15bf99f"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6ce757a3-dcdd-4a7c-b817-9e6e8bf57bfd + - f5053220-6432-4cb4-8b8e-d77faf1794f0 status: 404 Not Found code: 404 - duration: 26.380702ms + duration: 31.266391ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f method: GET response: proto: HTTP/2.0 @@ -680,29 +588,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"4ade4ab0-de81-45b6-889c-5afed15bf99f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.632261Z", "updated_at":"2025-10-29T22:53:47.632261Z", "references":[{"id":"d0aeff75-c713-4d75-9ad6-0bef92b10a76", "product_resource_type":"instance_server", "product_resource_id":"f35109e4-cdf2-44d3-aede-1f09b9318b2a", "created_at":"2025-10-29T22:53:47.632261Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:22:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6e710015-270a-431e-85c7-9947b39ab3ca + - 84e1d3af-4eb6-4e49-a9aa-aa3a8ab5146f status: 200 OK code: 200 - duration: 83.453614ms + duration: 93.301545ms - id: 14 request: proto: HTTP/1.1 @@ -719,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/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/user_data method: GET response: proto: HTTP/2.0 @@ -729,29 +629,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:22:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8c5959ec-6bdf-4a75-b074-a34eb0099459 + - c3fe2399-780e-4a4b-a5a1-df2390fc9368 status: 200 OK code: 200 - duration: 103.217287ms + duration: 107.49828ms - id: 15 request: proto: HTTP/1.1 @@ -768,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/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/private_nics method: GET response: proto: HTTP/2.0 @@ -778,33 +670,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:22:19 GMT + - Wed, 29 Oct 2025 22:53:49 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d4292cf9-0186-44d8-ac9a-ddb6e538bec5 + - 168d4e04-c36e-4549-8c15-50e091e19f30 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 100.48236ms + duration: 105.416757ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a method: GET response: proto: HTTP/2.0 @@ -831,29 +715,21 @@ 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-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"}}' + body: '{"server": {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bf49d502-0507-4bb0-aefc-bd802e16cc8f + - 1c6c45e7-de38-4c49-a3de-91494260efca status: 200 OK code: 200 - duration: 135.244716ms + duration: 145.222165ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f method: GET response: proto: HTTP/2.0 @@ -880,29 +756,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4ade4ab0-de81-45b6-889c-5afed15bf99f"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 875190d8-7bb9-4f5b-8c76-adb7d3c4fafa + - a312eb4f-2ebd-4947-967b-9deda26f317b status: 404 Not Found code: 404 - duration: 27.871432ms + duration: 35.276ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f method: GET response: proto: HTTP/2.0 @@ -929,29 +797,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"4ade4ab0-de81-45b6-889c-5afed15bf99f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.632261Z", "updated_at":"2025-10-29T22:53:47.632261Z", "references":[{"id":"d0aeff75-c713-4d75-9ad6-0bef92b10a76", "product_resource_type":"instance_server", "product_resource_id":"f35109e4-cdf2-44d3-aede-1f09b9318b2a", "created_at":"2025-10-29T22:53:47.632261Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:22:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 02140f0e-c5a3-4284-ade9-26102d2a5cea + - 6cad4d3e-ed8b-4142-867b-cda23310b5c7 status: 200 OK code: 200 - duration: 86.663644ms + duration: 80.55932ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +828,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/user_data method: GET response: proto: HTTP/2.0 @@ -978,29 +838,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:22:19 GMT + - Wed, 29 Oct 2025 22:53:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eff0c6bd-b750-4dd0-aece-14a9721ee87f + - 545baeba-ca24-4ddd-b82a-edd1e46d9064 status: 200 OK code: 200 - duration: 85.716736ms + duration: 83.65109ms - id: 20 request: proto: HTTP/1.1 @@ -1017,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/bc70c806-5370-4c18-9970-3fa871114605/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/private_nics method: GET response: proto: HTTP/2.0 @@ -1027,33 +879,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:22:20 GMT + - Wed, 29 Oct 2025 22:53:50 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a4c63f2e-413c-4b4d-9db3-0b007cc06385 + - 9c6b8b04-1e86-4450-a925-4f9176f0664f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 108.500281ms + duration: 104.180607ms - id: 21 request: proto: HTTP/1.1 @@ -1066,7 +910,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1078,35 +924,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:20 GMT + - Wed, 29 Oct 2025 22:53:50 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 88859355-cd4c-4593-b629-9d25fe5eb828 + - e0ec690d-b0c3-4a36-ad02-fe8c74930253 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 44.511979ms + duration: 43.764561ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +957,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1133,33 +973,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:20 GMT + - Wed, 29 Oct 2025 22:53:50 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1b9def4a-d005-4612-a73a-02a5436d209b + - 6d3c6dbf-1c92-4351-85c2-8075136bc47c X-Total-Count: - "68" status: 200 OK code: 200 - duration: 130.582239ms + duration: 41.756927ms - id: 23 request: proto: HTTP/1.1 @@ -1172,7 +1004,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1184,31 +1024,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:20 GMT + - Wed, 29 Oct 2025 22:53:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9254ab0-58b5-4377-bd4d-07084cc697f0 + - 653eca5e-b45f-49cb-946a-a821d9998710 status: 200 OK code: 200 - duration: 49.727064ms + duration: 70.688073ms - id: 24 request: proto: HTTP/1.1 @@ -1237,31 +1069,23 @@ 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-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"}}' + body: '{"server": {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:51.062022+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:21 GMT + - Wed, 29 Oct 2025 22:53:51 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ded93174-1cc8-48d1-9856-7f958b50ac05 + - b6a04f65-e477-4b38-9ff8-bb904a2f2d20 status: 201 Created code: 201 - duration: 1.12061457s + duration: 1.14132059s - id: 25 request: proto: HTTP/1.1 @@ -1278,7 +1102,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 method: GET response: proto: HTTP/2.0 @@ -1288,29 +1112,21 @@ 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-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"}}' + body: '{"server": {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:51.062022+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a1a41934-8e51-4e18-a04c-f59bfd91217f + - 28bbdc2a-813d-41a6-9ad5-299b6a79d01b status: 200 OK code: 200 - duration: 134.145681ms + duration: 143.690152ms - id: 26 request: proto: HTTP/1.1 @@ -1327,7 +1143,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 method: GET response: proto: HTTP/2.0 @@ -1335,31 +1151,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 1843 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"}}' + body: '{"server": {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:51.062022+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1843" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fd9fbcbe-fa65-40b8-96ca-54b22d18bbd2 + - ed26d6df-2e8e-4ef8-8c24-4dda195ee019 status: 200 OK code: 200 - duration: 145.651945ms + duration: 136.741149ms - id: 27 request: proto: HTTP/1.1 @@ -1376,7 +1184,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 method: GET response: proto: HTTP/2.0 @@ -1384,31 +1192,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 1843 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"}}' + body: '{"server": {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:51.062022+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1843" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae445d60-72d3-41d3-a88e-6d40c764fdb3 + - 3c6a14e5-33c1-4427-ba80-825c05e22539 status: 200 OK code: 200 - duration: 144.173598ms + duration: 121.400595ms - id: 28 request: proto: HTTP/1.1 @@ -1425,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/29923df1-2b67-4d29-82bf-99beafe37b15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 method: GET response: proto: HTTP/2.0 @@ -1435,29 +1235,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"29923df1-2b67-4d29-82bf-99beafe37b15","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b569175f-a2e6-4869-8817-083af7ab4c77"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d35c3f9b-d519-4dfb-8308-92ea25961314 + - 28d696b0-206d-4c6e-b9d3-f3cdd83fb006 status: 404 Not Found code: 404 - duration: 35.045438ms + duration: 28.700565ms - id: 29 request: proto: HTTP/1.1 @@ -1474,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/29923df1-2b67-4d29-82bf-99beafe37b15 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 method: GET response: proto: HTTP/2.0 @@ -1482,31 +1274,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 702 uncompressed: false - 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"}' + body: '{"id":"b569175f-a2e6-4869-8817-083af7ab4c77", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:51.214074Z", "updated_at":"2025-10-29T22:53:51.214074Z", "references":[{"id":"ee01932e-065f-4599-9163-61fbd52d7669", "product_resource_type":"instance_server", "product_resource_id":"0817874c-7a02-45ba-871b-5853554aa022", "created_at":"2025-10-29T22:53:51.214074Z", "type":"exclusive", "status":"attaching"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "702" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 70ab96e5-0154-4689-bfb9-eac2586434bf + - d48cadc1-093a-4d86-b2e3-09b836a9cbc1 status: 200 OK code: 200 - duration: 85.108102ms + duration: 90.104217ms - id: 30 request: proto: HTTP/1.1 @@ -1523,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/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022/user_data method: GET response: proto: HTTP/2.0 @@ -1533,29 +1317,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:22:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 828aca4c-61b9-49df-a74a-b8bfd6ad8128 + - 7f66f930-933e-4692-b5df-f1dc07a13518 status: 200 OK code: 200 - duration: 118.789788ms + duration: 111.24677ms - id: 31 request: proto: HTTP/1.1 @@ -1572,7 +1348,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022/private_nics method: GET response: proto: HTTP/2.0 @@ -1582,33 +1358,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:22:22 GMT + - Wed, 29 Oct 2025 22:53:52 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 79033d9a-dbd3-4d7b-8b5e-e8ed8732183e + - 410d5df9-ed7f-44a9-93ae-61f02a172fae X-Total-Count: - "0" status: 200 OK code: 200 - duration: 109.736403ms + duration: 97.22375ms - id: 32 request: proto: HTTP/1.1 @@ -1625,7 +1393,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 method: GET response: proto: HTTP/2.0 @@ -1635,29 +1403,21 @@ 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-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"}}' + body: '{"server": {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:51.062022+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 353b16df-23de-48b9-8fbc-4d85a1958429 + - 0cfb6a57-ae2d-4abb-ba39-15913656ad4c status: 200 OK code: 200 - duration: 135.249976ms + duration: 136.717195ms - id: 33 request: proto: HTTP/1.1 @@ -1674,7 +1434,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a method: GET response: proto: HTTP/2.0 @@ -1682,31 +1442,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 1843 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"}}' + body: '{"server": {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1843" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e3aa5f1-f1aa-480b-bb16-8cd03970fdd7 + - 8f788b32-4947-46e8-92bb-27f3b30f3533 status: 200 OK code: 200 - duration: 155.732048ms + duration: 147.72089ms - id: 34 request: proto: HTTP/1.1 @@ -1723,7 +1475,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 method: GET response: proto: HTTP/2.0 @@ -1733,29 +1485,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"29923df1-2b67-4d29-82bf-99beafe37b15","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b569175f-a2e6-4869-8817-083af7ab4c77"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4f88fa22-2944-4f48-9705-22de3e2a4b80 + - ece99898-7471-43bb-80c8-8372091ee77f status: 404 Not Found code: 404 - duration: 29.250132ms + duration: 35.630422ms - id: 35 request: proto: HTTP/1.1 @@ -1772,7 +1516,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f method: GET response: proto: HTTP/2.0 @@ -1782,29 +1526,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4ade4ab0-de81-45b6-889c-5afed15bf99f"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d5b87afa-28eb-4dff-acf8-0165bcf29ba2 + - 9821aa06-6b5c-4787-a3f3-f95ebf571dcb status: 404 Not Found code: 404 - duration: 30.970283ms + duration: 43.852025ms - id: 36 request: proto: HTTP/1.1 @@ -1821,7 +1557,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 method: GET response: proto: HTTP/2.0 @@ -1831,29 +1567,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"b569175f-a2e6-4869-8817-083af7ab4c77", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:51.214074Z", "updated_at":"2025-10-29T22:53:51.214074Z", "references":[{"id":"ee01932e-065f-4599-9163-61fbd52d7669", "product_resource_type":"instance_server", "product_resource_id":"0817874c-7a02-45ba-871b-5853554aa022", "created_at":"2025-10-29T22:53:51.214074Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:22:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - be939623-461d-456d-bd56-e20ac7468866 + - b76ef269-ded9-4a9a-98d2-b641370df3bf status: 200 OK code: 200 - duration: 82.335234ms + duration: 87.786093ms - id: 37 request: proto: HTTP/1.1 @@ -1870,7 +1598,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f method: GET response: proto: HTTP/2.0 @@ -1880,29 +1608,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"4ade4ab0-de81-45b6-889c-5afed15bf99f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.632261Z", "updated_at":"2025-10-29T22:53:47.632261Z", "references":[{"id":"d0aeff75-c713-4d75-9ad6-0bef92b10a76", "product_resource_type":"instance_server", "product_resource_id":"f35109e4-cdf2-44d3-aede-1f09b9318b2a", "created_at":"2025-10-29T22:53:47.632261Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:22:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f2514e8f-d42a-4e56-97c7-81f247a39189 + - f77e29b2-d17e-46fa-ba7c-4c9a5d524bb1 status: 200 OK code: 200 - duration: 80.094355ms + duration: 88.443051ms - id: 38 request: proto: HTTP/1.1 @@ -1919,7 +1639,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022/user_data method: GET response: proto: HTTP/2.0 @@ -1929,29 +1649,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:22:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d258f029-b50f-4e41-9a07-e0a6f49de0ce + - cfa0303b-f9e1-4f99-b33b-66b0d091ebcd status: 200 OK code: 200 - duration: 88.60987ms + duration: 104.716158ms - id: 39 request: proto: HTTP/1.1 @@ -1968,7 +1680,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/user_data method: GET response: proto: HTTP/2.0 @@ -1978,29 +1690,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:22:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 67b20630-d57e-430d-9562-a6cf3619a6d2 + - 8346d762-740e-48bf-8614-788c7d4101d8 status: 200 OK code: 200 - duration: 110.524172ms + duration: 120.143605ms - id: 40 request: proto: HTTP/1.1 @@ -2017,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/83e198b8-3546-4459-9871-8a7fd9ed70b2/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022/private_nics method: GET response: proto: HTTP/2.0 @@ -2027,33 +1731,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:22:22 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a157f5b0-9b84-48eb-a2cc-f92116713177 + - 55d4cfc8-dd52-4049-8ebf-3c433dcc4aa4 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 98.321392ms + duration: 90.083469ms - id: 41 request: proto: HTTP/1.1 @@ -2070,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/bc70c806-5370-4c18-9970-3fa871114605/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/private_nics method: GET response: proto: HTTP/2.0 @@ -2080,33 +1776,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:22:23 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0ba77eee-d7aa-4391-90d8-1cd8a852185f + - 012f4638-34e8-4b72-b594-01767ec65341 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 131.208295ms + duration: 111.723271ms - id: 42 request: proto: HTTP/1.1 @@ -2119,7 +1807,11 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-server-datasource + order: + - creation_date_desc headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2133,33 +1825,25 @@ interactions: trailer: {} content_length: 15 uncompressed: false - body: '{"servers":[]}' + body: '{"servers": []}' headers: Content-Length: - "15" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:23 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 33233bfd-9dc9-492f-9ca0-b79fb6de10ac + - b8fd23ea-159b-45ba-8674-e426eb1ce0a4 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 121.812376ms + duration: 125.008613ms - id: 43 request: proto: HTTP/1.1 @@ -2176,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/83e198b8-3546-4459-9871-8a7fd9ed70b2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 method: GET response: proto: HTTP/2.0 @@ -2186,29 +1870,21 @@ 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-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"}}' + body: '{"server": {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:51.062022+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:23 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9fa60814-d777-461f-b544-fabe035ecb5a + - 113b8b2a-c824-465c-ae27-fa4a89258aeb status: 200 OK code: 200 - duration: 172.22099ms + duration: 140.365968ms - id: 44 request: proto: HTTP/1.1 @@ -2225,7 +1901,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/f35109e4-cdf2-44d3-aede-1f09b9318b2a method: GET response: proto: HTTP/2.0 @@ -2233,35 +1909,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3587 + 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-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"}]}' + body: '{"server": {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "3587" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1797" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:23 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7519f542-936b-4c09-af4c-77fa95b011cf - X-Total-Count: - - "2" + - bf4ce986-ac82-42eb-88e7-0e524aeebd6d status: 200 OK code: 200 - duration: 175.813399ms + duration: 149.110519ms - id: 45 request: proto: HTTP/1.1 @@ -2278,7 +1942,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 method: GET response: proto: HTTP/2.0 @@ -2286,31 +1950,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + 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-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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b569175f-a2e6-4869-8817-083af7ab4c77"}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:23 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6136ece3-324f-438b-bf0e-7041d13300fb - status: 200 OK - code: 200 - duration: 175.013536ms + - 83e609bc-31e0-4dfc-8085-93105b2694a8 + status: 404 Not Found + code: 404 + duration: 24.245324ms - id: 46 request: proto: HTTP/1.1 @@ -2327,7 +1983,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/4ade4ab0-de81-45b6-889c-5afed15bf99f method: GET response: proto: HTTP/2.0 @@ -2335,35 +1991,23 @@ 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-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"}]}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4ade4ab0-de81-45b6-889c-5afed15bf99f"}' headers: Content-Length: - - "3587" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:23 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2cb5e530-3bd7-4055-b2e1-71c307e2b229 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 186.18467ms + - 039a1ee0-b9a5-4fe1-b5a4-50a6c548e145 + status: 404 Not Found + code: 404 + duration: 30.075044ms - id: 47 request: proto: HTTP/1.1 @@ -2376,11 +2020,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-server-datasource + order: + - creation_date_desc headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 + 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 @@ -2388,31 +2036,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 7867 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"29923df1-2b67-4d29-82bf-99beafe37b15","type":"not_found"}' + body: '{"servers": [{"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:51.062022+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}]}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "7867" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:23 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9934638f-a48d-4fef-a507-b1c5cb025dcd - status: 404 Not Found - code: 404 - duration: 29.370338ms + - 6ca31aa8-220e-4119-b999-694ae6338a3b + X-Total-Count: + - "4" + status: 200 OK + code: 200 + duration: 207.289001ms - id: 48 request: proto: HTTP/1.1 @@ -2425,11 +2069,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order: + - creation_date_desc + tags: + - data_scaleway_instance_servers,terraform-test headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 + 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 @@ -2437,31 +2085,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 7683 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","type":"not_found"}' + body: '{"servers": [{"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}, {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:51.062022+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}, {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}, {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}]}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "7683" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:23 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 95ca757c-a9a6-4ec7-9d1f-d5752a4293e5 - status: 404 Not Found - code: 404 - duration: 34.752978ms + - b52112e5-59d7-4be0-91d8-4e061d921bc5 + X-Total-Count: + - "4" + status: 200 OK + code: 200 + duration: 226.230258ms - id: 49 request: proto: HTTP/1.1 @@ -2478,7 +2122,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 method: GET response: proto: HTTP/2.0 @@ -2486,35 +2130,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 701 uncompressed: false - body: '{"private_nics":[]}' + body: '{"id":"b569175f-a2e6-4869-8817-083af7ab4c77", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:51.214074Z", "updated_at":"2025-10-29T22:53:51.214074Z", "references":[{"id":"ee01932e-065f-4599-9163-61fbd52d7669", "product_resource_type":"instance_server", "product_resource_id":"0817874c-7a02-45ba-871b-5853554aa022", "created_at":"2025-10-29T22:53:51.214074Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:23 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4b69dcf3-fcd2-47e8-a121-b578aa732c3a - X-Total-Count: - - "0" + - b592e2e1-ff5d-4a93-aec1-1456075e3bb9 status: 200 OK code: 200 - duration: 93.902792ms + duration: 91.981378ms - id: 50 request: proto: HTTP/1.1 @@ -2531,7 +2163,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f method: GET response: proto: HTTP/2.0 @@ -2541,29 +2173,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"4ade4ab0-de81-45b6-889c-5afed15bf99f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.632261Z", "updated_at":"2025-10-29T22:53:47.632261Z", "references":[{"id":"d0aeff75-c713-4d75-9ad6-0bef92b10a76", "product_resource_type":"instance_server", "product_resource_id":"f35109e4-cdf2-44d3-aede-1f09b9318b2a", "created_at":"2025-10-29T22:53:47.632261Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:22:23 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1705624b-38b2-48ab-ad9f-bff54c05b416 + - ebf227db-1141-4491-a4f7-a3219236d398 status: 200 OK code: 200 - duration: 81.706433ms + duration: 82.647805ms - id: 51 request: proto: HTTP/1.1 @@ -2580,7 +2204,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -2590,33 +2214,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:22:23 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fe14c2e7-2035-4193-8415-c12e253d9795 + - 33baba05-eb95-4f14-b90e-0e68fbf0240e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 116.424385ms + duration: 92.033514ms - id: 52 request: proto: HTTP/1.1 @@ -2633,7 +2249,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -2641,31 +2257,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - 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"}' + body: '{"private_nics": []}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:23 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 101fef04-5d5d-4ad8-9173-12419d5cdc45 + - 9d628958-2982-42f5-b870-9a4dbec1c9a5 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 104.095518ms + duration: 121.314435ms - id: 53 request: proto: HTTP/1.1 @@ -2682,7 +2294,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022/user_data method: GET response: proto: HTTP/2.0 @@ -2690,35 +2302,23 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:23 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 97c191af-fd2a-4340-9eeb-632ae85b074c - X-Total-Count: - - "0" + - 9b355aa6-4a1e-4039-bef0-a067c75fdc70 status: 200 OK code: 200 - duration: 110.846619ms + duration: 83.550163ms - id: 54 request: proto: HTTP/1.1 @@ -2735,7 +2335,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/user_data method: GET response: proto: HTTP/2.0 @@ -2745,29 +2345,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:22:23 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 401311b4-9631-47d6-a778-90e8be6eb10e + - 744dfa77-6c9e-40cc-a58f-337eb3f836e5 status: 200 OK code: 200 - duration: 99.844263ms + duration: 110.088574ms - id: 55 request: proto: HTTP/1.1 @@ -2784,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/83e198b8-3546-4459-9871-8a7fd9ed70b2/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022/private_nics method: GET response: proto: HTTP/2.0 @@ -2792,31 +2384,27 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:23 GMT + - Wed, 29 Oct 2025 22:53:53 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 16b6fe6b-e538-4864-aeb0-3620075c4225 + - 4310d860-d7c0-43c6-8307-7b8f524595a6 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 100.465679ms + duration: 87.936224ms - id: 56 request: proto: HTTP/1.1 @@ -2833,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/bc70c806-5370-4c18-9970-3fa871114605/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022/private_nics method: GET response: proto: HTTP/2.0 @@ -2843,33 +2431,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:22:23 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae534cab-cbb9-49a0-a1f2-f15183780997 + - f8243fdb-683c-4521-a566-cda830972348 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 107.253038ms + duration: 95.608439ms - id: 57 request: proto: HTTP/1.1 @@ -2886,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/bc70c806-5370-4c18-9970-3fa871114605/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022/private_nics method: GET response: proto: HTTP/2.0 @@ -2896,33 +2476,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:22:23 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae1d98f2-973c-4829-a4a2-acbd3d2673ea + - 79245f23-6807-40b2-9c40-857f6dcb6bea X-Total-Count: - "0" status: 200 OK code: 200 - duration: 93.76369ms + duration: 131.576292ms - id: 58 request: proto: HTTP/1.1 @@ -2939,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/83e198b8-3546-4459-9871-8a7fd9ed70b2/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/private_nics method: GET response: proto: HTTP/2.0 @@ -2949,33 +2521,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:22:23 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e97e82de-2c32-4c5f-a4c0-39a91eae9cb8 + - a2c9ef40-9ff0-4219-9c41-f667ab45d481 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 112.164444ms + duration: 112.127166ms - id: 59 request: proto: HTTP/1.1 @@ -2992,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-2/servers?name=tf-server-datasource&order=creation_date_desc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -3000,35 +2564,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 478 uncompressed: false - body: '{"servers":[]}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - - "15" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "478" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 816e6a8f-872d-4596-a328-425bd10861a6 + - 3b5e08a4-8794-4294-b9c4-0a3294c9b046 X-Total-Count: - - "0" + - "1" status: 200 OK code: 200 - duration: 129.516567ms + duration: 101.837957ms - id: 60 request: proto: HTTP/1.1 @@ -3045,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?name=tf-server-datasource&order=creation_date_desc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -3053,35 +2609,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3587 + 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-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"}]}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - - "3587" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "478" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3924be30-9484-4217-845e-c0da90655ae2 + - fdbab17e-a759-49ef-ba1e-2d15b0cad6e0 X-Total-Count: - - "2" + - "1" status: 200 OK code: 200 - duration: 174.080133ms + duration: 94.963463ms - id: 61 request: proto: HTTP/1.1 @@ -3094,11 +2642,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3106,35 +2662,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3587 + content_length: 1098 uncompressed: false - 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"}]}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "3587" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c2220117-c049-4519-b9de-217bffca52a8 - X-Total-Count: - - "2" + - 4abdc305-d530-41da-9972-10e85b88d772 status: 200 OK code: 200 - duration: 194.92158ms + duration: 30.284917ms - id: 62 request: proto: HTTP/1.1 @@ -3147,11 +2691,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3159,35 +2711,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1098 uncompressed: false - body: '{"private_nics":[]}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f435723b-18a4-4761-9aae-5e15c963ee9c - X-Total-Count: - - "0" + - a73139c4-9d15-4a0c-8e48-5b3f1175bfc6 status: 200 OK code: 200 - duration: 104.76221ms + duration: 27.590849ms - id: 63 request: proto: HTTP/1.1 @@ -3204,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/83e198b8-3546-4459-9871-8a7fd9ed70b2/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/private_nics method: GET response: proto: HTTP/2.0 @@ -3214,33 +2754,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:22:24 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aed8ca69-f217-46c3-a90c-c92905b5fa58 + - a43882d6-eb01-47a8-bac1-ad1a446fe7dc X-Total-Count: - "0" status: 200 OK code: 200 - duration: 103.215575ms + duration: 105.222787ms - id: 64 request: proto: HTTP/1.1 @@ -3257,7 +2789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/private_nics method: GET response: proto: HTTP/2.0 @@ -3267,33 +2799,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:22:24 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e3c95246-262b-466f-bddf-944bdcc77556 + - 3373f86b-b7f4-4759-865b-0918051c6d35 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 87.125102ms + duration: 109.375982ms - id: 65 request: proto: HTTP/1.1 @@ -3306,11 +2830,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-server-datasource + order: + - creation_date_desc headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics + 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 @@ -3318,35 +2846,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 15 uncompressed: false - body: '{"private_nics":[]}' + body: '{"servers": []}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "15" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3423babf-90c2-43ee-a777-0f482201c2b0 + - 4cb034b5-31d2-48eb-8d19-73010cc294e3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 116.164487ms + duration: 122.67024ms - id: 66 request: proto: HTTP/1.1 @@ -3359,11 +2879,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-server-datasource + order: + - creation_date_desc headers: User-Agent: - scaleway-sdk-go/v1.0.0-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?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -3371,35 +2895,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 8325 uncompressed: false - body: '{"servers":[]}' + body: '{"servers": [{"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:51.062022+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}]}' headers: Content-Length: - - "15" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "8325" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7544b510-1958-443c-9d0d-f62bfe7f0f81 + - 6574c1a9-9b8b-4b87-ac25-3350ac634b2f X-Total-Count: - - "0" + - "4" status: 200 OK code: 200 - duration: 136.034329ms + duration: 205.618247ms - id: 67 request: proto: HTTP/1.1 @@ -3412,11 +2928,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order: + - creation_date_desc + tags: + - data_scaleway_instance_servers,terraform-test headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 + 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 @@ -3424,31 +2944,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 8141 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"}}' + body: '{"servers": [{"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}, {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:51.062022+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}, {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}, {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}]}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "8141" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT + - Wed, 29 Oct 2025 22:53:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b2a6af9b-59a8-4e44-b770-ae1ad3167ac1 + - d47c30d6-0425-43b9-b299-d92901e8ae86 + X-Total-Count: + - "4" status: 200 OK code: 200 - duration: 147.75754ms + duration: 227.150608ms - id: 68 request: proto: HTTP/1.1 @@ -3465,7 +2981,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -3473,31 +2989,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + 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-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"}}' + body: '{"private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}]}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "478" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT + - Wed, 29 Oct 2025 22:53:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c0a92ae3-b2fc-4c22-960f-dbd71c9201fe + - 6a5f1629-638c-4e1e-a74b-adb17a88d62f + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 168.160604ms + duration: 91.010302ms - id: 69 request: proto: HTTP/1.1 @@ -3510,11 +3022,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 + 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=91d96552-e6e6-4eaa-b3e2-e0e51f6fd085&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3522,31 +3042,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1098 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","type":"not_found"}' + body: '{"total_count":2, "ips":[{"id":"4c1fc422-3a32-4177-80d1-5c03906e3953", "address":"fd5f:519c:6d46:8e32:d74e:abb8:d1fc:b987/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:53.907982Z", "updated_at":"2025-10-29T22:53:53.907982Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"ae83b184-60dd-4496-bcaf-aaab415e14fc", "address":"172.18.20.3/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:53.797747Z", "updated_at":"2025-10-29T22:53:53.797747Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 82cf534b-1698-457a-ba3e-960f3c5eeee5 - status: 404 Not Found - code: 404 - duration: 29.821746ms + - 44b903a4-ed7c-4e5a-a4c0-0e474a85b848 + status: 200 OK + code: 200 + duration: 29.491413ms - id: 70 request: proto: HTTP/1.1 @@ -3563,7 +3075,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -3571,35 +3083,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3587 + 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-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"}]}' + body: '{"private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}]}' headers: Content-Length: - - "3587" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "478" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 887ceea3-f1f0-451d-9c04-b35bd8cf37b5 + - 9c877c32-a55f-443f-9c76-31b03caa356c X-Total-Count: - - "2" + - "1" status: 200 OK code: 200 - duration: 183.355395ms + duration: 104.310341ms - id: 71 request: proto: HTTP/1.1 @@ -3612,11 +3116,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=91d96552-e6e6-4eaa-b3e2-e0e51f6fd085&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3624,35 +3136,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3587 + content_length: 1098 uncompressed: false - 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"}]}' + body: '{"total_count":2, "ips":[{"id":"4c1fc422-3a32-4177-80d1-5c03906e3953", "address":"fd5f:519c:6d46:8e32:d74e:abb8:d1fc:b987/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:53.907982Z", "updated_at":"2025-10-29T22:53:53.907982Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"ae83b184-60dd-4496-bcaf-aaab415e14fc", "address":"172.18.20.3/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:53.797747Z", "updated_at":"2025-10-29T22:53:53.797747Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "3587" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - af0343c7-4d6b-4668-a35d-bce96a9ea84d - X-Total-Count: - - "2" + - fc54f19f-c018-4a18-b437-051668d134e9 status: 200 OK code: 200 - duration: 186.497367ms + duration: 29.15755ms - id: 72 request: proto: HTTP/1.1 @@ -3669,7 +3169,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022/private_nics method: GET response: proto: HTTP/2.0 @@ -3677,31 +3177,27 @@ 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":"29923df1-2b67-4d29-82bf-99beafe37b15","type":"not_found"}' + body: '{"private_nics": []}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT + - Wed, 29 Oct 2025 22:53:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1146cca3-dcb8-457b-b22e-b6b96eabf6d4 - status: 404 Not Found - code: 404 - duration: 31.316784ms + - 35d9e39c-2194-41bf-a60f-b61788440e2f + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 110.119242ms - id: 73 request: proto: HTTP/1.1 @@ -3718,7 +3214,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022/private_nics method: GET response: proto: HTTP/2.0 @@ -3726,31 +3222,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - 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"}' + body: '{"private_nics": []}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT + - Wed, 29 Oct 2025 22:53:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4a0fa9aa-1123-46fb-b478-685e8fd56b9e + - d13b6220-13ac-4334-9318-0aeb50bef379 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 79.933102ms + duration: 110.585133ms - id: 74 request: proto: HTTP/1.1 @@ -3767,7 +3259,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -3775,35 +3267,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 478 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "478" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6b977481-0257-4f74-b630-7f812f7d8b78 + - 243e16da-a087-4a61-a24f-cbd340732dd3 X-Total-Count: - - "0" + - "1" status: 200 OK code: 200 - duration: 94.819754ms + duration: 94.681246ms - id: 75 request: proto: HTTP/1.1 @@ -3816,11 +3300,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3828,35 +3320,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1098 uncompressed: false - body: '{"private_nics":[]}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2f06aeaa-ccba-40c3-abb4-8acacae8f5d7 - X-Total-Count: - - "0" + - 29da3900-94d8-4b35-a456-f70a1ff7dcd6 status: 200 OK code: 200 - duration: 91.56433ms + duration: 27.732394ms - id: 76 request: proto: HTTP/1.1 @@ -3873,7 +3353,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -3881,31 +3361,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 478 uncompressed: false - 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"}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "478" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT + - Wed, 29 Oct 2025 22:53:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1ed51320-1fdb-4654-aab3-6bd6199f18eb + - d2acfab5-d184-4993-b19d-893fca7ec99b + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 95.337086ms + duration: 100.626653ms - id: 77 request: proto: HTTP/1.1 @@ -3918,11 +3394,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/user_data + 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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3930,31 +3414,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1098 uncompressed: false - body: '{"user_data":[]}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 135a0f30-167c-49ef-a25f-d79b8a903111 + - f3c30873-af8a-413c-8d03-4438d3a77f6f status: 200 OK code: 200 - duration: 92.28883ms + duration: 19.698773ms - id: 78 request: proto: HTTP/1.1 @@ -3971,7 +3447,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/private_nics method: GET response: proto: HTTP/2.0 @@ -3981,33 +3457,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:22:24 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 475858ac-d3ae-4ed0-ba85-c2601d64cbdf + - f86421a5-3458-4c70-9bdf-d5618ce7b9bb X-Total-Count: - "0" status: 200 OK code: 200 - duration: 90.104578ms + duration: 98.963042ms - id: 79 request: proto: HTTP/1.1 @@ -4024,7 +3492,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/private_nics method: GET response: proto: HTTP/2.0 @@ -4034,33 +3502,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:22:24 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 17579a0e-ad9e-4128-baac-8b9a4b1de5a3 + - ea2eb2ea-bd7d-43e7-bd94-856649ff3d0f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 104.382196ms + duration: 109.275434ms - id: 80 request: proto: HTTP/1.1 @@ -4073,11 +3533,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-server-datasource + order: + - creation_date_desc headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + 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 @@ -4085,31 +3549,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 15 uncompressed: false - body: '{"user_data":[]}' + body: '{"servers": []}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "15" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT + - Wed, 29 Oct 2025 22:53:55 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 08c9d529-a1e8-4974-877d-c6a0bfdba8f1 + - 5d1692b7-e025-453d-94f6-754e157c13e3 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 101.793143ms + duration: 147.716432ms - id: 81 request: proto: HTTP/1.1 @@ -4126,7 +3586,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a method: GET response: proto: HTTP/2.0 @@ -4134,35 +3594,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1797 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server": {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1797" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a375e91e-d8a7-4946-b6c8-ac03686d27b1 - X-Total-Count: - - "0" + - 3e75cab2-8e8f-4a40-b173-31dfd34d255a status: 200 OK code: 200 - duration: 97.922162ms + duration: 155.280916ms - id: 82 request: proto: HTTP/1.1 @@ -4179,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/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 method: GET response: proto: HTTP/2.0 @@ -4187,35 +3635,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1843 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server": {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:51.062022+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1843" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:24 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 09f84208-685e-461d-b8d6-7880fe6b0b65 - X-Total-Count: - - "0" + - 32c83eba-725e-437b-95d4-aa5248bf9600 status: 200 OK code: 200 - duration: 99.411409ms + duration: 160.781792ms - id: 83 request: proto: HTTP/1.1 @@ -4232,7 +3668,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 method: GET response: proto: HTTP/2.0 @@ -4240,31 +3676,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + 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-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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b569175f-a2e6-4869-8817-083af7ab4c77"}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:25 GMT + - Wed, 29 Oct 2025 22:53:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 95cf289c-1edc-4495-8e4d-390cecfd66f6 - status: 200 OK - code: 200 - duration: 134.8364ms + - 12bd9590-d4db-4966-ba5a-062a8b615f8f + status: 404 Not Found + code: 404 + duration: 21.482518ms - id: 84 request: proto: HTTP/1.1 @@ -4281,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/83e198b8-3546-4459-9871-8a7fd9ed70b2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f method: GET response: proto: HTTP/2.0 @@ -4289,31 +3717,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + 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-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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4ade4ab0-de81-45b6-889c-5afed15bf99f"}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:25 GMT + - Wed, 29 Oct 2025 22:53:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a72cc3d3-d419-45f8-853f-3ebebd6365ec - status: 200 OK - code: 200 - duration: 138.502757ms + - 921131b8-fa90-428e-9bf8-4feaa8c13a07 + status: 404 Not Found + code: 404 + duration: 26.5219ms - id: 85 request: proto: HTTP/1.1 @@ -4326,11 +3746,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-server-datasource + order: + - creation_date_desc headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 + 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 @@ -4338,31 +3762,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 8325 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"}}' + body: '{"servers": [{"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:51.062022+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}]}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "8325" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:25 GMT + - Wed, 29 Oct 2025 22:53:55 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 83ed442d-46df-4bfa-b5fd-2b5426a67e02 + - e5c400f7-1fbd-4714-9dc2-c4751b90f5e0 + X-Total-Count: + - "4" status: 200 OK code: 200 - duration: 137.527014ms + duration: 200.148119ms - id: 86 request: proto: HTTP/1.1 @@ -4375,11 +3795,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order: + - creation_date_desc + tags: + - data_scaleway_instance_servers,terraform-test headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + 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 @@ -4387,31 +3811,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 8325 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"}}' + body: '{"servers": [{"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:51.062022+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}]}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "8325" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:25 GMT + - Wed, 29 Oct 2025 22:53:55 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 15629e26-429f-42ca-bc24-b6b2bb645dd7 + - 8517adfd-a578-4034-9a7f-231a19864da0 + X-Total-Count: + - "4" status: 200 OK code: 200 - duration: 145.811905ms + duration: 209.936231ms - id: 87 request: proto: HTTP/1.1 @@ -4428,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/block/v1alpha1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 method: GET response: proto: HTTP/2.0 @@ -4438,29 +3858,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"b569175f-a2e6-4869-8817-083af7ab4c77", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:51.214074Z", "updated_at":"2025-10-29T22:53:51.214074Z", "references":[{"id":"ee01932e-065f-4599-9163-61fbd52d7669", "product_resource_type":"instance_server", "product_resource_id":"0817874c-7a02-45ba-871b-5853554aa022", "created_at":"2025-10-29T22:53:51.214074Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:22:25 GMT + - Wed, 29 Oct 2025 22:53:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ec9dc231-8199-4210-9ab4-17e6a76fe2c0 + - e0e8976d-7ac1-4546-92d6-b9a74386d392 status: 200 OK code: 200 - duration: 85.389391ms + duration: 79.96517ms - id: 88 request: proto: HTTP/1.1 @@ -4477,7 +3889,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f method: GET response: proto: HTTP/2.0 @@ -4487,83 +3899,1041 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"4ade4ab0-de81-45b6-889c-5afed15bf99f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.632261Z", "updated_at":"2025-10-29T22:53:47.632261Z", "references":[{"id":"d0aeff75-c713-4d75-9ad6-0bef92b10a76", "product_resource_type":"instance_server", "product_resource_id":"f35109e4-cdf2-44d3-aede-1f09b9318b2a", "created_at":"2025-10-29T22:53:47.632261Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:22:25 GMT + - Wed, 29 Oct 2025 22:53:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e32fcd1-31a6-4e81-a844-58a08667a6df + - b1ad0238-405c-4292-a1a7-3072212ec436 status: 200 OK code: 200 - duration: 100.883394ms + duration: 80.017307ms - id: 89 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/bc70c806-5370-4c18-9970-3fa871114605/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 478 uncompressed: false - 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"}}' + body: '{"private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}]}' + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 75cbdb67-db30-4910-be84-54ed4d24a0ae + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 95.51269ms + - 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: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 + resource_type: + - instance_private_nic + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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=91d96552-e6e6-4eaa-b3e2-e0e51f6fd085&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: '{"total_count":2, "ips":[{"id":"4c1fc422-3a32-4177-80d1-5c03906e3953", "address":"fd5f:519c:6d46:8e32:d74e:abb8:d1fc:b987/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:53.907982Z", "updated_at":"2025-10-29T22:53:53.907982Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"ae83b184-60dd-4496-bcaf-aaab415e14fc", "address":"172.18.20.3/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:53.797747Z", "updated_at":"2025-10-29T22:53:53.797747Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 0c87ec11-cccd-4275-853f-4084794cfd1c + status: 200 OK + code: 200 + duration: 24.689455ms + - 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/93f8a173-3d05-474c-a527-0258fb1ad785/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": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}]}' + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 46be725a-5895-493d-8406-572f7bfe6e9d + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 124.629805ms + - 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/f35109e4-cdf2-44d3-aede-1f09b9318b2a/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-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - e4873bf5-f0d8-4042-a0f7-037d987207b8 + status: 200 OK + code: 200 + duration: 93.37315ms + - 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/0817874c-7a02-45ba-871b-5853554aa022/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-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 9d0357e1-b561-4d2a-afa4-7193fabc207b + status: 200 OK + code: 200 + duration: 94.935531ms + - 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: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 + resource_type: + - instance_private_nic + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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=91d96552-e6e6-4eaa-b3e2-e0e51f6fd085&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: '{"total_count":2, "ips":[{"id":"4c1fc422-3a32-4177-80d1-5c03906e3953", "address":"fd5f:519c:6d46:8e32:d74e:abb8:d1fc:b987/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:53.907982Z", "updated_at":"2025-10-29T22:53:53.907982Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"ae83b184-60dd-4496-bcaf-aaab415e14fc", "address":"172.18.20.3/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:53.797747Z", "updated_at":"2025-10-29T22:53:53.797747Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 78a962ec-f080-45a2-9f59-39af311adb03 + status: 200 OK + code: 200 + duration: 24.821051ms + - 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/0817874c-7a02-45ba-871b-5853554aa022/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-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 2b6c1744-fa90-4ad9-b806-64d09f59e717 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 84.814366ms + - 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/0817874c-7a02-45ba-871b-5853554aa022/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-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 6956a52f-2162-4143-9a39-4a24dcb2000d + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 93.006796ms + - 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/f35109e4-cdf2-44d3-aede-1f09b9318b2a/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-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 6e455b10-bd54-4c1d-95ba-a11bec5c639f + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 109.863293ms + - 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/0817874c-7a02-45ba-871b-5853554aa022/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-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 699104fb-a488-4819-ab89-e9404497d395 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 110.137737ms + - 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/49c30c05-0a5d-449f-b309-eb84bc089f00/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": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 57a8e223-8137-46ff-a769-0ba27404fdaa + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 89.881121ms + - 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: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&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: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - eae5de1f-0378-4712-8324-973be17790b3 + status: 200 OK + code: 200 + duration: 24.367513ms + - 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/49c30c05-0a5d-449f-b309-eb84bc089f00/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": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 38087c04-d2de-4fc2-9427-62db8087497b + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 94.876441ms + - 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: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&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: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - ffa806cc-35e5-4759-90e4-bdf680a37c6e + status: 200 OK + code: 200 + duration: 22.895741ms + - 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/f35109e4-cdf2-44d3-aede-1f09b9318b2a/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-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 233f8f13-0b3c-4203-9752-39050f7a5fc7 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 90.573425ms + - 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/f35109e4-cdf2-44d3-aede-1f09b9318b2a/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-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 1e4bf8ea-7610-4c8b-80f1-f3c867b6b75a + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 97.459881ms + - 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/f35109e4-cdf2-44d3-aede-1f09b9318b2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1843 + uncompressed: false + body: '{"server": {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1843" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 1139579f-915d-4b1e-9c9e-f640a4423aab + status: 200 OK + code: 200 + duration: 146.093829ms + - 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/0817874c-7a02-45ba-871b-5853554aa022 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1797 + uncompressed: false + body: '{"server": {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:51.062022+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "1797" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - ecdf53a8-0d3e-43f7-9362-c5b80d858d85 + status: 200 OK + code: 200 + duration: 152.679412ms + - 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/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1797 + uncompressed: false + body: '{"server": {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:51.062022+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "1797" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 48ed845e-56fb-4944-ab0f-0cbf16a2a17d + status: 200 OK + code: 200 + duration: 122.476588ms + - 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/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1883 + uncompressed: false + body: '{"server": {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:47.508770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' + headers: + Content-Length: + - "1883" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 11d89430-e3b3-4e05-b6c7-a0006e37778e + status: 200 OK + code: 200 + duration: 137.808086ms + - 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/b569175f-a2e6-4869-8817-083af7ab4c77 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"id":"b569175f-a2e6-4869-8817-083af7ab4c77", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:51.214074Z", "updated_at":"2025-10-29T22:53:51.214074Z", "references":[{"id":"ee01932e-065f-4599-9163-61fbd52d7669", "product_resource_type":"instance_server", "product_resource_id":"0817874c-7a02-45ba-871b-5853554aa022", "created_at":"2025-10-29T22:53:51.214074Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - e8048fe4-c8c2-4d23-8482-c2986a9650a3 + status: 200 OK + code: 200 + duration: 89.020532ms + - 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/4ade4ab0-de81-45b6-889c-5afed15bf99f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"id":"4ade4ab0-de81-45b6-889c-5afed15bf99f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.632261Z", "updated_at":"2025-10-29T22:53:47.632261Z", "references":[{"id":"d0aeff75-c713-4d75-9ad6-0bef92b10a76", "product_resource_type":"instance_server", "product_resource_id":"f35109e4-cdf2-44d3-aede-1f09b9318b2a", "created_at":"2025-10-29T22:53:47.632261Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:53:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 6bf9b226-6e1c-4c9c-8c22-3b9897ce5984 + status: 200 OK + code: 200 + duration: 82.319793ms + - id: 111 + 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/0817874c-7a02-45ba-871b-5853554aa022/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 357 + uncompressed: false + body: '{"task": {"id": "db0b3443-ff5b-4d16-987d-457f7bfa66dd", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/0817874c-7a02-45ba-871b-5853554aa022/action", "href_result": "/servers/0817874c-7a02-45ba-871b-5853554aa022", "started_at": "2025-10-29T22:53:56.500945+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:25 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/20bcf587-09ce-46bf-a802-3d7881a20b22 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/db0b3443-ff5b-4d16-987d-457f7bfa66dd Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1ef996f5-aea2-408b-92de-78ed9b2517d7 + - 790930d8-a5c7-4a67-95b1-5f65f7354d1d status: 202 Accepted code: 202 - duration: 252.510413ms - - id: 90 + duration: 226.195123ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -4581,7 +4951,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/83e198b8-3546-4459-9871-8a7fd9ed70b2/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/action method: POST response: proto: HTTP/2.0 @@ -4591,32 +4961,24 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "6aeb08cd-2d1c-401c-b86b-6556ce7f8020", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/action", "href_result": "/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a", "started_at": "2025-10-29T22:53:56.531729+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:25 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/87a79f39-4ec5-4ed9-83ec-121d9a545bf4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6aeb08cd-2d1c-401c-b86b-6556ce7f8020 Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 26391ae8-ede5-4dc9-b6e2-56b0049b0167 + - c874767e-af50-4f07-9436-565c02d9463d status: 202 Accepted code: 202 - duration: 231.629391ms - - id: 91 + duration: 261.328667ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -4632,7 +4994,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 method: GET response: proto: HTTP/2.0 @@ -4642,30 +5004,22 @@ 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-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"}}' + body: '{"server": {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:56.323353+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1819" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 75d68580-3a35-4492-8123-5812dd1a48ac + - aa264b84-d2b6-4b9e-958d-b7d42b49b3c1 status: 200 OK code: 200 - duration: 157.113574ms - - id: 92 + duration: 139.188306ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -4681,7 +5035,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a method: GET response: proto: HTTP/2.0 @@ -4691,30 +5045,22 @@ 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-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"}}' + body: '{"server": {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:56.333252+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1819" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2f0b3306-29d7-426c-8c80-c76ccb0dd7bb + - cc3d5c80-2ffb-49dd-8c6f-8367d69d9536 status: 200 OK code: 200 - duration: 159.939984ms - - id: 93 + duration: 144.077679ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -4730,7 +5076,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 method: GET response: proto: HTTP/2.0 @@ -4738,32 +5084,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1952 + 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-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"}}' + body: '{"server": {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:53:58.686098+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "801", "node_id": "36"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1952" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1953" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 875ad6d4-da0f-425c-a983-c3c668eae3b2 + - 2b3248e5-4780-4e77-9bef-48487844db69 status: 200 OK code: 200 - duration: 150.166897ms - - id: 94 + duration: 132.465317ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -4779,7 +5117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a method: GET response: proto: HTTP/2.0 @@ -4789,30 +5127,22 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:53:59.380460+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1701", "node_id": "14"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1954" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5ce985a7-5c2d-4dee-ad15-fbfaa2e8ddb6 + - 23515c27-1adf-40a8-b140-b2599a19fed7 status: 200 OK code: 200 - duration: 153.337823ms - - id: 95 + duration: 152.68794ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -4830,7 +5160,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/bc70c806-5370-4c18-9970-3fa871114605/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022/action method: POST response: proto: HTTP/2.0 @@ -4840,32 +5170,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "b00c2a21-46ce-4562-b5bc-048f03b7cd4e", "description": "server_terminate", "status": "pending", "href_from": "/servers/0817874c-7a02-45ba-871b-5853554aa022/action", "href_result": "/servers/0817874c-7a02-45ba-871b-5853554aa022", "started_at": "2025-10-29T22:54:02.031406+00:00", "terminated_at": null, "progress": 0, "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:22:31 GMT + - Wed, 29 Oct 2025 22:54:02 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/32ddaa59-7904-4a9e-986b-f33421f082c2 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b00c2a21-46ce-4562-b5bc-048f03b7cd4e Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e00bd6c8-4757-47f1-98fb-b90dd131ac25 + - c79cea15-6ae0-4525-a6dd-fbfb20ccff70 status: 202 Accepted code: 202 - duration: 283.203507ms - - id: 96 + duration: 291.294551ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -4883,7 +5205,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/83e198b8-3546-4459-9871-8a7fd9ed70b2/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/action method: POST response: proto: HTTP/2.0 @@ -4893,32 +5215,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "823c8225-ee36-4404-9bf3-9791f133dfaf", "description": "server_terminate", "status": "pending", "href_from": "/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a/action", "href_result": "/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a", "started_at": "2025-10-29T22:54:02.111199+00:00", "terminated_at": null, "progress": 0, "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:22:31 GMT + - Wed, 29 Oct 2025 22:54:02 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1d813114-891e-4731-a2fa-4d07760a5c2b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/823c8225-ee36-4404-9bf3-9791f133dfaf Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d98e0bdb-2130-4401-b271-84e332dc6a0f + - 2444e44d-0b03-44b8-947f-2a7eecffb95c status: 202 Accepted code: 202 - duration: 286.22936ms - - id: 97 + duration: 285.354034ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -4934,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/bc70c806-5370-4c18-9970-3fa871114605 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 method: GET response: proto: HTTP/2.0 @@ -4942,32 +5256,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1915 + content_length: 1962 uncompressed: 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: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"}}' + body: '{"server": {"id": "0817874c-7a02-45ba-871b-5853554aa022", "name": "tf-server-datasource1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b569175f-a2e6-4869-8817-083af7ab4c77", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:51.062022+00:00", "modification_date": "2025-10-29T22:54:01.825494+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "801", "node_id": "36"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1915" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1962" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b13b8f72-cdf4-4c65-ad3a-e82f075732b5 + - 56222a1a-1cea-44cb-97c7-acee5672eb53 status: 200 OK code: 200 - duration: 138.074063ms - - id: 98 + duration: 125.346557ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -4983,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/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a method: GET response: proto: HTTP/2.0 @@ -4991,32 +5297,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1917 + content_length: 1963 uncompressed: 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: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"}}' + body: '{"server": {"id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a", "name": "tf-server-datasource0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4ade4ab0-de81-45b6-889c-5afed15bf99f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "basic"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.508770+00:00", "modification_date": "2025-10-29T22:54:01.888949+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1701", "node_id": "14"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1917" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1963" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e50aff9-7462-4ff2-9401-1ab04f2a3f8e + - caa74537-1a6f-4b36-bab2-089f8bef644f status: 200 OK code: 200 - duration: 162.238722ms - - id: 99 + duration: 145.542991ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -5032,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/83e198b8-3546-4459-9871-8a7fd9ed70b2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 method: GET response: proto: HTTP/2.0 @@ -5042,30 +5340,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "0817874c-7a02-45ba-871b-5853554aa022"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ed869de9-a6a2-41ab-89a7-3f9e81a81e67 + - d58e7e55-a0fa-4212-b52c-ec2933e31f78 status: 404 Not Found code: 404 - duration: 67.657024ms - - id: 100 + duration: 57.104496ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -5081,7 +5371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 method: GET response: proto: HTTP/2.0 @@ -5091,30 +5381,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"bc70c806-5370-4c18-9970-3fa871114605","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b569175f-a2e6-4869-8817-083af7ab4c77"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ce0b8295-0be8-4ea6-addb-c7c96d8e07f2 + - 7c0d4b05-6bae-4bf5-baf4-2d50f25ac3ee status: 404 Not Found code: 404 - duration: 105.162072ms - - id: 101 + duration: 25.244914ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -5130,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/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a method: GET response: proto: HTTP/2.0 @@ -5140,30 +5422,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0d672692-c8c9-40bf-bd51-512d0181aa9b + - 45468e60-3916-472d-86f2-8f543f82dcbd status: 404 Not Found code: 404 - duration: 26.995116ms - - id: 102 + duration: 58.293381ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -5179,7 +5453,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f method: GET response: proto: HTTP/2.0 @@ -5189,30 +5463,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"29923df1-2b67-4d29-82bf-99beafe37b15","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4ade4ab0-de81-45b6-889c-5afed15bf99f"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fb04050f-a5ce-4875-9727-960ffc386b78 + - d4ee2aa7-2d03-4d88-8f5b-db25110a7776 status: 404 Not Found code: 404 - duration: 30.246674ms - - id: 103 + duration: 27.185602ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -5228,7 +5494,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 method: GET response: proto: HTTP/2.0 @@ -5238,30 +5504,22 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"b569175f-a2e6-4869-8817-083af7ab4c77", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:51.214074Z", "updated_at":"2025-10-29T22:54:03.453467Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:54:03.453467Z", "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:22:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6ec48ea6-d9f6-45c0-897b-8515aede383c + - 848d3a6a-9512-47c7-b93f-3eedcc65b414 status: 200 OK code: 200 - duration: 188.056287ms - - id: 104 + duration: 89.170715ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -5277,7 +5535,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f method: GET response: proto: HTTP/2.0 @@ -5287,30 +5545,22 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"4ade4ab0-de81-45b6-889c-5afed15bf99f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.632261Z", "updated_at":"2025-10-29T22:54:03.763658Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:54:03.763658Z", "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:22:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 10634a0e-08fd-4cdd-a99a-a2587c849b2e + - cd1e8b19-16d3-4c08-a43c-2ec89b763cdb status: 200 OK code: 200 - duration: 189.826853ms - - id: 105 + duration: 89.257778ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -5326,7 +5576,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 method: DELETE response: proto: HTTP/2.0 @@ -5338,26 +5588,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d5a2cffe-480e-4614-afed-0a55ebb727e5 + - c205ee39-0258-4f41-a922-fb5e56e4d1b5 status: 204 No Content code: 204 - duration: 271.706703ms - - id: 106 + duration: 153.223795ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -5373,7 +5615,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f method: DELETE response: proto: HTTP/2.0 @@ -5385,26 +5627,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1b6716b0-7207-474d-b10e-3f9dc93ac0e1 + - 114d573a-1c74-4ceb-89b4-fec47afeb377 status: 204 No Content code: 204 - duration: 271.604962ms - - id: 107 + duration: 141.565766ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -5420,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/servers/bc70c806-5370-4c18-9970-3fa871114605 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 method: GET response: proto: HTTP/2.0 @@ -5430,30 +5664,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"bc70c806-5370-4c18-9970-3fa871114605","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "0817874c-7a02-45ba-871b-5853554aa022"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:37 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 01c0d27f-1ca0-4e7e-8a7a-9e1363c7d7e4 + - 958a3d83-1438-4312-9897-d60ce00fcaf2 status: 404 Not Found code: 404 - duration: 47.74367ms - - id: 108 + duration: 40.668404ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -5469,7 +5695,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a method: GET response: proto: HTTP/2.0 @@ -5479,26 +5705,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "f35109e4-cdf2-44d3-aede-1f09b9318b2a"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:22:37 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 87070ae3-de5c-4afc-a2ec-32d031b1d8ab + - 49d7d05b-12f6-4e38-b5f0-90cb03f8c665 status: 404 Not Found code: 404 - duration: 206.997917ms + duration: 41.237548ms 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 666a448bb..5365d4330 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 @@ -27,31 +27,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 1102 uncompressed: false - 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"}' + body: '{"id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "name":"private_network_instance_servers", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"b37b6794-671e-4da4-a5f6-83811da111cf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"172.18.20.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}, {"id":"a7967db4-d323-4e2e-a950-85ca84267783", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"fd5f:519c:6d46:8e32::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}], "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1101" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1102" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 379e1de4-4e9c-4751-b971-391d88ea9bc0 + - 4f07dd90-f7f6-47c2-b77c-91d2af923df8 status: 200 OK code: 200 - duration: 569.253448ms + duration: 675.010455ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +60,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b method: GET response: proto: HTTP/2.0 @@ -76,31 +68,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 1102 uncompressed: false - 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"}' + body: '{"id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "name":"private_network_instance_servers", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"b37b6794-671e-4da4-a5f6-83811da111cf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"172.18.20.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}, {"id":"a7967db4-d323-4e2e-a950-85ca84267783", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"fd5f:519c:6d46:8e32::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}], "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1101" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1102" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 46916858-4727-4013-852e-501c61370971 + - 5d69d565-c622-42cf-bf29-9a603224657e status: 200 OK code: 200 - duration: 22.698336ms + duration: 24.968626ms - id: 2 request: proto: HTTP/1.1 @@ -113,7 +97,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -125,35 +111,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:53:47 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c5714219-7659-4cac-b1a5-e61f2ba1cc93 + - a351b629-69b7-4b54-b907-8eed6b1e0bee X-Total-Count: - "68" status: 200 OK code: 200 - duration: 37.670921ms + duration: 45.434193ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +144,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -180,33 +160,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:53:47 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e5b2635-cdd5-45d6-b0f6-4fdf6bfafe23 + - d25c5515-af3e-47e1-8f8d-206b9c0d2a09 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 53.17949ms + duration: 65.621419ms - id: 4 request: proto: HTTP/1.1 @@ -219,7 +191,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -231,31 +211,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1058d76e-8583-4ebd-ac66-4049934ffbad + - b358dcb9-e74b-470c-af06-e1c42c04d763 status: 200 OK code: 200 - duration: 46.978146ms + duration: 53.348621ms - id: 5 request: proto: HTTP/1.1 @@ -282,33 +254,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1829 + content_length: 1875 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: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"}}' + body: '{"server": {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1829" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1875" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:56 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 56319397-3b04-48c5-b30a-c4df1d3285c0 + - 8df84e3a-fec3-4651-abe4-9d4332a8056f status: 201 Created code: 201 - duration: 1.618884977s + duration: 1.003987164s - id: 6 request: proto: HTTP/1.1 @@ -325,7 +289,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -335,29 +299,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1829" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7cda5bef-27fd-4b02-ae95-5a026dced2b7 + - cea1a6d3-54fc-4f58-9080-3fa90b96e2a6 status: 200 OK code: 200 - duration: 167.229227ms + duration: 168.739657ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -384,29 +340,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1829" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f82e8861-fa96-4936-9702-2ca8a03d78f1 + - 41ce0653-6d64-4dea-825d-35bb8b237e13 status: 200 OK code: 200 - duration: 173.379707ms + duration: 125.745027ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b method: GET response: proto: HTTP/2.0 @@ -431,31 +379,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 1102 uncompressed: false - 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"}' + body: '{"id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "name":"private_network_instance_servers", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"b37b6794-671e-4da4-a5f6-83811da111cf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"172.18.20.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}, {"id":"a7967db4-d323-4e2e-a950-85ca84267783", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"fd5f:519c:6d46:8e32::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}], "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1101" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1102" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f9dbc9d3-ed54-4f6a-9dc9-ed7336405a66 + - 2c36d1af-70ea-46fb-b983-e60d6046a131 status: 200 OK code: 200 - duration: 31.573463ms + duration: 20.924855ms - id: 9 request: proto: HTTP/1.1 @@ -472,7 +412,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -480,31 +420,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1829 + content_length: 1875 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: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"}}' + body: '{"server": {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1829" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1875" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3eb0e44c-a9d8-402d-9d03-a3894ba061c3 + - 633313ce-9153-4b77-ae32-3fe4fc797a09 status: 200 OK code: 200 - duration: 126.511567ms + duration: 146.994649ms - id: 10 request: proto: HTTP/1.1 @@ -516,14 +448,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49"}' + body: '{"private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b"}' 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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: POST response: proto: HTTP/2.0 @@ -533,29 +465,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 051ff2a9-09bf-42aa-b6b2-328eb25c4c48 + - 9ba63cf5-52fe-4306-bf0a-dbbf83c32862 status: 201 Created code: 201 - duration: 620.694856ms + duration: 509.00842ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/4672ed07-3b74-43d9-9b23-f43d4fb81b91 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics/01e1075c-dd46-4375-81d4-7cbf5cd5f6cd method: GET response: proto: HTTP/2.0 @@ -582,29 +506,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0cfccbcb-2e0d-43cb-a827-f0f411e6b9b1 + - 930d9fc6-0a24-4576-ab84-2672b422d590 status: 200 OK code: 200 - duration: 95.882896ms + duration: 136.074311ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/4672ed07-3b74-43d9-9b23-f43d4fb81b91 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics/01e1075c-dd46-4375-81d4-7cbf5cd5f6cd method: GET response: proto: HTTP/2.0 @@ -631,29 +547,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 23e9c7f8-fda6-44a0-9394-f7c6d065f0a4 + - c2c37c94-630a-473d-a225-70e7819b9caa status: 200 OK code: 200 - duration: 90.150802ms + duration: 108.602965ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -678,31 +586,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 2373 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: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"}}' + body: '{"server": {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "2287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2373" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eff09ba4-eb03-4317-a77c-4fa40c51f707 + - 17af183a-93da-44f1-bb09-b0c3d2296fe5 status: 200 OK code: 200 - duration: 138.091343ms + duration: 147.874705ms - id: 14 request: proto: HTTP/1.1 @@ -719,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/instance/v1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c method: GET response: proto: HTTP/2.0 @@ -729,29 +629,21 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd75f866-a92c-4de9-93ea-485d6356640c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9358b89d-50a6-4bf2-80e3-94af3f8c5163 + - 3779ab5f-4455-47ab-b0cb-91a616307d54 status: 404 Not Found code: 404 - duration: 26.902938ms + duration: 42.868937ms - id: 15 request: proto: HTTP/1.1 @@ -768,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/block/v1alpha1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c method: GET response: proto: HTTP/2.0 @@ -778,29 +670,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"cd75f866-a92c-4de9-93ea-485d6356640c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:48.099347Z", "updated_at":"2025-10-29T22:53:48.099347Z", "references":[{"id":"96032157-a7d3-4cd0-9d97-cfa447e06593", "product_resource_type":"instance_server", "product_resource_id":"49c30c05-0a5d-449f-b309-eb84bc089f00", "created_at":"2025-10-29T22:53:48.099347Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1da3ddd5-98d9-4b5c-b423-c6d08d6cf7cf + - b0b8c4c9-dd63-4cc6-9038-c1f98793e8a9 status: 200 OK code: 200 - duration: 92.210152ms + duration: 98.869727ms - id: 16 request: proto: HTTP/1.1 @@ -817,7 +701,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/user_data method: GET response: proto: HTTP/2.0 @@ -827,29 +711,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6f828a5e-62df-413e-b12c-7c0fff5c204c + - b742aa33-90cf-450a-9197-b945c4815918 status: 200 OK code: 200 - duration: 94.696252ms + duration: 107.809772ms - id: 17 request: proto: HTTP/1.1 @@ -866,7 +742,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -876,33 +752,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:53:50 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 87c6f3f5-e789-44a3-81c5-04e5c3731bea + - 3ad64576-6561-4491-a5ef-cd5082cd3b5e X-Total-Count: - "1" status: 200 OK code: 200 - duration: 93.637077ms + duration: 91.230643ms - id: 18 request: proto: HTTP/1.1 @@ -915,11 +783,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=4672ed07-3b74-43d9-9b23-f43d4fb81b91&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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -927,31 +803,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5d9414ff-2552-4018-9548-444bcd001491 + - 8760f696-f906-49a4-a300-e5263351b001 status: 200 OK code: 200 - duration: 25.542929ms + duration: 30.276281ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +836,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b method: GET response: proto: HTTP/2.0 @@ -976,31 +844,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 1102 uncompressed: false - 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"}' + body: '{"id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "name":"private_network_instance_servers", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"b37b6794-671e-4da4-a5f6-83811da111cf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"172.18.20.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}, {"id":"a7967db4-d323-4e2e-a950-85ca84267783", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"fd5f:519c:6d46:8e32::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}], "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1101" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1102" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 923264c1-77cf-40a7-86f2-7450c5bb8f0e + - 9b55c351-222d-486d-a115-7047b1051091 status: 200 OK code: 200 - duration: 28.38717ms + duration: 30.015212ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +877,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -1025,31 +885,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 2333 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: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"}}' + body: '{"server": {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2333" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 239780a3-bb68-412d-ba74-c50a10fb773c + - 9bde54e9-749e-402e-9135-1e9e4838aeec status: 200 OK code: 200 - duration: 139.841303ms + duration: 142.326151ms - id: 21 request: proto: HTTP/1.1 @@ -1066,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/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c method: GET response: proto: HTTP/2.0 @@ -1076,29 +928,21 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd75f866-a92c-4de9-93ea-485d6356640c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c60c5137-c96b-4cf5-9370-baffcad8b465 + - 51068293-f7ab-41d8-9c94-e46111b788c6 status: 404 Not Found code: 404 - duration: 55.230907ms + duration: 27.784582ms - id: 22 request: proto: HTTP/1.1 @@ -1115,7 +959,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c method: GET response: proto: HTTP/2.0 @@ -1125,29 +969,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"cd75f866-a92c-4de9-93ea-485d6356640c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:48.099347Z", "updated_at":"2025-10-29T22:53:48.099347Z", "references":[{"id":"96032157-a7d3-4cd0-9d97-cfa447e06593", "product_resource_type":"instance_server", "product_resource_id":"49c30c05-0a5d-449f-b309-eb84bc089f00", "created_at":"2025-10-29T22:53:48.099347Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f46f58a8-f224-42ae-8f4e-b14541ebfe25 + - 2a802bcf-4c2a-4be6-834d-79ba4243420a status: 200 OK code: 200 - duration: 118.377702ms + duration: 93.605002ms - id: 23 request: proto: HTTP/1.1 @@ -1164,7 +1000,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/user_data method: GET response: proto: HTTP/2.0 @@ -1174,29 +1010,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 088b0c8b-0ffd-4861-a015-38ddcd193c10 + - ad6ee5d3-d4db-4601-ad15-306ba525908b status: 200 OK code: 200 - duration: 107.20532ms + duration: 94.479367ms - id: 24 request: proto: HTTP/1.1 @@ -1213,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/e73d1139-6883-42d1-8328-94b01d23e660/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -1223,33 +1051,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:53:50 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f868e63f-46c3-4fe0-920e-22768b605522 + - 3327b019-a973-4951-bc2c-56f7358855aa X-Total-Count: - "1" status: 200 OK code: 200 - duration: 92.06451ms + duration: 112.307692ms - id: 25 request: proto: HTTP/1.1 @@ -1262,11 +1082,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=4672ed07-3b74-43d9-9b23-f43d4fb81b91&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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1274,31 +1102,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a4084558-23d9-4fce-975e-e78cb3f42325 + - ddc21bff-4158-4a43-a973-8f4b987e86c0 status: 200 OK code: 200 - duration: 23.631727ms + duration: 28.871995ms - id: 26 request: proto: HTTP/1.1 @@ -1315,7 +1135,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b method: GET response: proto: HTTP/2.0 @@ -1323,31 +1143,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 1102 uncompressed: false - 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"}' + body: '{"id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "name":"private_network_instance_servers", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"b37b6794-671e-4da4-a5f6-83811da111cf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"172.18.20.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}, {"id":"a7967db4-d323-4e2e-a950-85ca84267783", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"fd5f:519c:6d46:8e32::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}], "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1101" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1102" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e2eb01d0-2986-42ce-a51f-b83476abb44f + - 1e997e19-256f-4180-8a71-45989467a646 status: 200 OK code: 200 - duration: 33.844329ms + duration: 18.675289ms - id: 27 request: proto: HTTP/1.1 @@ -1364,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/e73d1139-6883-42d1-8328-94b01d23e660 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -1372,31 +1184,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 2333 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: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"}}' + body: '{"server": {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2333" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c8dfce6c-a0a7-4be7-a272-a8bd06bf7b16 + - 36891955-448f-46a6-80a3-3121842c1a4c status: 200 OK code: 200 - duration: 150.78639ms + duration: 146.535983ms - id: 28 request: proto: HTTP/1.1 @@ -1413,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/bd840e6d-9bfe-4a70-87a7-0b333936d63f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c method: GET response: proto: HTTP/2.0 @@ -1423,29 +1227,21 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd75f866-a92c-4de9-93ea-485d6356640c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 41249e97-6fbd-413b-b352-7b98d27c38d6 + - 4acc46bd-62b7-4bc6-902e-c0dc5db8a8c3 status: 404 Not Found code: 404 - duration: 35.774417ms + duration: 27.143143ms - id: 29 request: proto: HTTP/1.1 @@ -1462,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/bd840e6d-9bfe-4a70-87a7-0b333936d63f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c method: GET response: proto: HTTP/2.0 @@ -1472,29 +1268,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"cd75f866-a92c-4de9-93ea-485d6356640c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:48.099347Z", "updated_at":"2025-10-29T22:53:48.099347Z", "references":[{"id":"96032157-a7d3-4cd0-9d97-cfa447e06593", "product_resource_type":"instance_server", "product_resource_id":"49c30c05-0a5d-449f-b309-eb84bc089f00", "created_at":"2025-10-29T22:53:48.099347Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f5826dec-b610-4806-9453-c30407ea0e3b + - e80ab2b4-f781-4aef-8cbc-529934715b58 status: 200 OK code: 200 - duration: 91.806476ms + duration: 86.262103ms - id: 30 request: proto: HTTP/1.1 @@ -1511,7 +1299,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/user_data method: GET response: proto: HTTP/2.0 @@ -1521,29 +1309,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 74fbec7a-042f-416f-ac68-ea8c3e10a2c7 + - c233ae13-edb1-4296-8b9a-9265896ecefd status: 200 OK code: 200 - duration: 109.39744ms + duration: 84.373773ms - id: 31 request: proto: HTTP/1.1 @@ -1560,7 +1340,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -1570,33 +1350,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:53:51 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 16d89d2e-c28e-46d8-93ce-a88e6d518f83 + - dbca6085-c184-4254-a484-edaea5c10c19 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 155.030446ms + duration: 102.792402ms - id: 32 request: proto: HTTP/1.1 @@ -1609,11 +1381,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=4672ed07-3b74-43d9-9b23-f43d4fb81b91&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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1621,31 +1401,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 84c2e08c-b869-475b-8974-979b418c146c + - d27dd19f-e179-4cc4-bce0-d417bd24f911 status: 200 OK code: 200 - duration: 23.514286ms + duration: 24.975419ms - id: 33 request: proto: HTTP/1.1 @@ -1658,7 +1430,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1670,35 +1444,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ce334c28-3682-4532-bb64-29adede1b09f + - 7622db61-6dc6-4b7b-bccd-12b8c1452a5b X-Total-Count: - "68" status: 200 OK code: 200 - duration: 45.935594ms + duration: 48.067417ms - id: 34 request: proto: HTTP/1.1 @@ -1711,7 +1477,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1725,33 +1493,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:53:51 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 72e8a4ee-a19c-4058-ae22-8b57dd8e8ff9 + - a88c0fc8-e563-4019-a31b-3ef9f731807d X-Total-Count: - "68" status: 200 OK code: 200 - duration: 48.068652ms + duration: 43.890957ms - id: 35 request: proto: HTTP/1.1 @@ -1764,7 +1524,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1776,31 +1544,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 451926ce-2e7f-4567-aaca-bdfd2f3b4137 + - b2e05558-d7a7-45e1-93e1-eea853692d22 status: 200 OK code: 200 - duration: 47.514062ms + duration: 46.688529ms - id: 36 request: proto: HTTP/1.1 @@ -1829,31 +1589,23 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1829" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f3b60c9c-4eca-4b82-8440-5f160ef56671 + - f8f6a152-94d2-4201-841a-c5c2e6f3a30c status: 201 Created code: 201 - duration: 1.352040992s + duration: 1.062198183s - id: 37 request: proto: HTTP/1.1 @@ -1870,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/71897cdd-9b95-4e65-924c-ad9fc188ee04 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 method: GET response: proto: HTTP/2.0 @@ -1880,29 +1632,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1829" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5c1af1e5-7830-45c2-975c-e102759b5859 + - 1960fdd0-5303-4c8f-bf5d-ac2e6da6dca8 status: 200 OK code: 200 - duration: 155.644469ms + duration: 134.476034ms - id: 38 request: proto: HTTP/1.1 @@ -1919,7 +1663,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 method: GET response: proto: HTTP/2.0 @@ -1929,29 +1673,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1829" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a0ffe5b8-5e93-41a7-b30b-f09d2c2eadd4 + - dff8fc2b-ee81-43be-a53f-3c02f5dfa76b status: 200 OK code: 200 - duration: 138.650395ms + duration: 151.738322ms - id: 39 request: proto: HTTP/1.1 @@ -1968,7 +1704,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b method: GET response: proto: HTTP/2.0 @@ -1976,31 +1712,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 1102 uncompressed: false - 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"}' + body: '{"id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "name":"private_network_instance_servers", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"b37b6794-671e-4da4-a5f6-83811da111cf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"172.18.20.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}, {"id":"a7967db4-d323-4e2e-a950-85ca84267783", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"fd5f:519c:6d46:8e32::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}], "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1101" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1102" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 76b63cb9-dd84-4467-bafe-6bbda966cd01 + - 5e9af82a-b68b-4b26-89ea-2c1ea3ba8fdf status: 200 OK code: 200 - duration: 25.789081ms + duration: 22.75077ms - id: 40 request: proto: HTTP/1.1 @@ -2017,7 +1745,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 method: GET response: proto: HTTP/2.0 @@ -2025,31 +1753,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1829 + content_length: 1915 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: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"}}' + body: '{"server": {"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "1829" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1915" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8140cb3e-b738-4ffb-8980-f96785e9c707 + - 1618ec00-a1a5-4c02-bff6-b5cb0eea2c2a status: 200 OK code: 200 - duration: 167.998528ms + duration: 154.805827ms - id: 41 request: proto: HTTP/1.1 @@ -2061,14 +1781,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49"}' + body: '{"private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b"}' 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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: POST response: proto: HTTP/2.0 @@ -2078,29 +1798,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b48a105b-f758-40ef-81fb-9de03cf5975f + - 6c0dde0d-5140-4769-8e6d-4e1a4442144d status: 201 Created code: 201 - duration: 566.034053ms + duration: 509.789658ms - id: 42 request: proto: HTTP/1.1 @@ -2117,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/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics/91774c41-5131-42c5-abf5-1480eaef9533 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics/91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 method: GET response: proto: HTTP/2.0 @@ -2127,29 +1839,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0edf6268-e52a-42d8-98c3-f69dbf6531a4 + - 947b9320-5070-4c9e-8f25-b529dd6ba2e3 status: 200 OK code: 200 - duration: 94.757259ms + duration: 109.13946ms - id: 43 request: proto: HTTP/1.1 @@ -2166,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/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics/91774c41-5131-42c5-abf5-1480eaef9533 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics/91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 method: GET response: proto: HTTP/2.0 @@ -2176,29 +1880,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 43f84776-5f8e-4056-9a6f-1af33b77e29b + - 5ed63fda-2de2-4fc7-8afc-7d14c4cc213c status: 200 OK code: 200 - duration: 94.416471ms + duration: 92.960338ms - id: 44 request: proto: HTTP/1.1 @@ -2215,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/71897cdd-9b95-4e65-924c-ad9fc188ee04 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 method: GET response: proto: HTTP/2.0 @@ -2223,31 +1919,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 2333 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: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"}}' + body: '{"server": {"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2333" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bb5ab5a1-dd04-47ee-a4e7-4f3e87c4330d + - 98a51a45-16fc-48eb-8930-04a08f1701c2 status: 200 OK code: 200 - duration: 152.105789ms + duration: 135.897021ms - id: 45 request: proto: HTTP/1.1 @@ -2264,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/instance/v1/zones/fr-par-1/volumes/17f4470a-8d69-48ca-b14c-f549b474b513 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 method: GET response: proto: HTTP/2.0 @@ -2274,29 +1962,21 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0c51a0a1-6b45-478b-8333-ea778ec14699 + - 4d1b5b0e-91dd-4ae8-bfdb-d610d44c2653 status: 404 Not Found code: 404 - duration: 28.714966ms + duration: 29.11537ms - id: 46 request: proto: HTTP/1.1 @@ -2313,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/block/v1alpha1/zones/fr-par-1/volumes/17f4470a-8d69-48ca-b14c-f549b474b513 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 method: GET response: proto: HTTP/2.0 @@ -2323,29 +2003,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:52.644035Z", "updated_at":"2025-10-29T22:53:52.644035Z", "references":[{"id":"03bc610e-cd8d-49a1-ac9e-4cd9e85711c2", "product_resource_type":"instance_server", "product_resource_id":"93f8a173-3d05-474c-a527-0258fb1ad785", "created_at":"2025-10-29T22:53:52.644035Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f866314d-ebf5-4eec-b027-20f7d69a0f1a + - ffc707c9-2289-4f38-b429-01b2b94e67ce status: 200 OK code: 200 - duration: 108.27508ms + duration: 89.692178ms - id: 47 request: proto: HTTP/1.1 @@ -2362,7 +2034,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/user_data method: GET response: proto: HTTP/2.0 @@ -2372,29 +2044,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bb2970ed-d2ca-42f8-a658-ecdee4cb6f7a + - c1239c9d-f014-47c8-81c3-cb8da5acb492 status: 200 OK code: 200 - duration: 102.758819ms + duration: 118.613545ms - id: 48 request: proto: HTTP/1.1 @@ -2411,7 +2075,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -2421,33 +2085,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f652b13e-eedb-4a4f-9436-68f32f393ee0 + - f150f417-60aa-442c-a657-16b4cd3f9d55 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 135.33904ms + duration: 109.820764ms - id: 49 request: proto: HTTP/1.1 @@ -2460,11 +2116,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=91774c41-5131-42c5-abf5-1480eaef9533&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=91d96552-e6e6-4eaa-b3e2-e0e51f6fd085&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2472,31 +2136,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1097 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"4c1fc422-3a32-4177-80d1-5c03906e3953", "address":"fd5f:519c:6d46:8e32:d74e:abb8:d1fc:b987/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:53.907982Z", "updated_at":"2025-10-29T22:53:53.907982Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"ae83b184-60dd-4496-bcaf-aaab415e14fc", "address":"172.18.20.3/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:53.797747Z", "updated_at":"2025-10-29T22:53:53.797747Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1097" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 91a1115b-e36d-48d9-8c8b-25a8e8b13dac + - 2d3f151a-d741-4751-a9ae-6f30bdd1e8d9 status: 200 OK code: 200 - duration: 27.572714ms + duration: 24.21654ms - id: 50 request: proto: HTTP/1.1 @@ -2513,7 +2169,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b method: GET response: proto: HTTP/2.0 @@ -2521,31 +2177,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 1102 uncompressed: false - 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"}' + body: '{"id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "name":"private_network_instance_servers", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"b37b6794-671e-4da4-a5f6-83811da111cf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"172.18.20.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}, {"id":"a7967db4-d323-4e2e-a950-85ca84267783", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"fd5f:519c:6d46:8e32::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}], "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1101" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1102" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 42ea6f83-6bc3-4675-b2b5-3594fc8631c7 + - c7ce5843-d344-4937-96d2-91df575fc5b3 status: 200 OK code: 200 - duration: 35.339533ms + duration: 104.466102ms - id: 51 request: proto: HTTP/1.1 @@ -2562,7 +2210,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 method: GET response: proto: HTTP/2.0 @@ -2572,29 +2220,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 494de062-eed8-482f-a387-d90c9facc460 + - 2264be53-a1ae-4b81-9df2-56f1ef011efe status: 200 OK code: 200 - duration: 127.28331ms + duration: 126.49927ms - id: 52 request: proto: HTTP/1.1 @@ -2611,7 +2251,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 method: GET response: proto: HTTP/2.0 @@ -2619,31 +2259,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + 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-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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5"}' headers: Content-Length: - - "2287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fb3472ac-d8c1-4b98-a00a-c6795a7ecce3 - status: 200 OK - code: 200 - duration: 139.697811ms + - 26ef0efe-7cc7-4232-adab-adfdad3b746c + status: 404 Not Found + code: 404 + duration: 28.535787ms - id: 53 request: proto: HTTP/1.1 @@ -2660,7 +2292,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -2668,31 +2300,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2333 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"17f4470a-8d69-48ca-b14c-f549b474b513","type":"not_found"}' + body: '{"server": {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2333" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 88b046d7-e800-452f-888d-b1c4a0cb8e0f - status: 404 Not Found - code: 404 - duration: 29.86966ms + - d64064f9-b0c6-47ca-acea-168efcccb432 + status: 200 OK + code: 200 + duration: 200.240723ms - id: 54 request: proto: HTTP/1.1 @@ -2709,7 +2333,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c method: GET response: proto: HTTP/2.0 @@ -2719,29 +2343,21 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd75f866-a92c-4de9-93ea-485d6356640c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6dd0a08b-0f26-4a22-88d1-a768ce7f6434 + - daee6d32-3cd9-4197-ae45-a6857d3e3c04 status: 404 Not Found code: 404 - duration: 27.610014ms + duration: 28.079304ms - id: 55 request: proto: HTTP/1.1 @@ -2758,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/block/v1alpha1/zones/fr-par-1/volumes/17f4470a-8d69-48ca-b14c-f549b474b513 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 method: GET response: proto: HTTP/2.0 @@ -2768,29 +2384,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:52.644035Z", "updated_at":"2025-10-29T22:53:52.644035Z", "references":[{"id":"03bc610e-cd8d-49a1-ac9e-4cd9e85711c2", "product_resource_type":"instance_server", "product_resource_id":"93f8a173-3d05-474c-a527-0258fb1ad785", "created_at":"2025-10-29T22:53:52.644035Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c64061aa-4ff5-40d5-93ea-b4fcab35e665 + - 2acfc3e6-40ca-49bb-bf6a-de9b2ffb901a status: 200 OK code: 200 - duration: 83.209365ms + duration: 102.83912ms - id: 56 request: proto: HTTP/1.1 @@ -2807,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/bd840e6d-9bfe-4a70-87a7-0b333936d63f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c method: GET response: proto: HTTP/2.0 @@ -2817,29 +2425,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"cd75f866-a92c-4de9-93ea-485d6356640c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:48.099347Z", "updated_at":"2025-10-29T22:53:48.099347Z", "references":[{"id":"96032157-a7d3-4cd0-9d97-cfa447e06593", "product_resource_type":"instance_server", "product_resource_id":"49c30c05-0a5d-449f-b309-eb84bc089f00", "created_at":"2025-10-29T22:53:48.099347Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0936cbb4-4a8e-4136-bea3-31bf2749ce37 + - c0eb2e5f-2be6-4f02-9e92-d5bc03d7209b status: 200 OK code: 200 - duration: 95.55198ms + duration: 68.825601ms - id: 57 request: proto: HTTP/1.1 @@ -2856,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/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/user_data method: GET response: proto: HTTP/2.0 @@ -2866,29 +2466,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 535c7305-4758-46c5-886c-5fb5fe1b5355 + - c0649d1f-dff0-4012-962e-1a55f35f0e8c status: 200 OK code: 200 - duration: 125.66622ms + duration: 90.400942ms - id: 58 request: proto: HTTP/1.1 @@ -2905,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/e73d1139-6883-42d1-8328-94b01d23e660/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/user_data method: GET response: proto: HTTP/2.0 @@ -2915,29 +2507,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 18c0ca1b-fe51-47fe-b00e-e788154ca6b5 + - c65b8384-3b62-4472-9676-8e6a55342070 status: 200 OK code: 200 - duration: 103.243028ms + duration: 82.348115ms - id: 59 request: proto: HTTP/1.1 @@ -2954,7 +2538,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -2964,33 +2548,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:55 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 77c6f364-1ed2-44e4-ba02-f116309a2a4e + - cc836b7c-72a9-442f-8224-501dcc030ca9 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 132.515638ms + duration: 111.591526ms - id: 60 request: proto: HTTP/1.1 @@ -3007,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/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -3017,33 +2593,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:55 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e47db601-15f7-49e5-99a3-984211f3b486 + - d26c5eba-2645-49f8-b10a-00a83fe49639 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 145.891431ms + duration: 92.646973ms - id: 61 request: proto: HTTP/1.1 @@ -3056,11 +2624,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=4672ed07-3b74-43d9-9b23-f43d4fb81b91&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=91d96552-e6e6-4eaa-b3e2-e0e51f6fd085&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3068,31 +2644,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"4c1fc422-3a32-4177-80d1-5c03906e3953", "address":"fd5f:519c:6d46:8e32:d74e:abb8:d1fc:b987/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:53.907982Z", "updated_at":"2025-10-29T22:53:53.907982Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"ae83b184-60dd-4496-bcaf-aaab415e14fc", "address":"172.18.20.3/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:53.797747Z", "updated_at":"2025-10-29T22:53:53.797747Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 251ce8ec-e7a5-4470-955e-6e613feb5e95 + - cacfdfbd-0f00-4a7a-93ab-de186d908bdb status: 200 OK code: 200 - duration: 29.629039ms + duration: 23.550715ms - id: 62 request: proto: HTTP/1.1 @@ -3105,11 +2673,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=91774c41-5131-42c5-abf5-1480eaef9533&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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3117,31 +2693,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1097 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1097" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ca8b10dd-0b99-4c03-954d-359265b64bdc + - 2a5b4b81-b5f1-43b5-9cce-5ee3ee863932 status: 200 OK code: 200 - duration: 30.325976ms + duration: 29.047594ms - id: 63 request: proto: HTTP/1.1 @@ -3158,7 +2726,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b method: GET response: proto: HTTP/2.0 @@ -3166,31 +2734,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 1102 uncompressed: false - 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"}' + body: '{"id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "name":"private_network_instance_servers", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"b37b6794-671e-4da4-a5f6-83811da111cf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"172.18.20.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}, {"id":"a7967db4-d323-4e2e-a950-85ca84267783", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"fd5f:519c:6d46:8e32::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}], "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1101" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1102" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d6a097f3-b96b-4e5b-b39c-d7ea491dcdd3 + - 5101e835-ea97-4ee6-80b1-05e53710493b status: 200 OK code: 200 - duration: 27.231895ms + duration: 24.838494ms - id: 64 request: proto: HTTP/1.1 @@ -3203,7 +2763,11 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-server-datasource-private-ips + order: + - creation_date_desc headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -3217,33 +2781,25 @@ interactions: trailer: {} content_length: 15 uncompressed: false - body: '{"servers":[]}' + body: '{"servers": []}' headers: Content-Length: - "15" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:55 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 27f16000-0793-4444-a6fa-39e6243e6845 + - 1ea61073-3f7a-44d7-9044-cbd688908e63 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 126.716619ms + duration: 150.264376ms - id: 65 request: proto: HTTP/1.1 @@ -3260,7 +2816,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -3268,31 +2824,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 2373 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: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"}}' + body: '{"server": {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "2287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2373" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 097f5579-4238-475c-951d-8151ce87d187 + - 5d1563bb-bf75-4079-b6f3-14bcce68e2ab status: 200 OK code: 200 - duration: 148.74509ms + duration: 136.786404ms - id: 66 request: proto: HTTP/1.1 @@ -3309,7 +2857,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 method: GET response: proto: HTTP/2.0 @@ -3317,31 +2865,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 2333 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: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"}}' + body: '{"server": {"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2333" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a3211d9b-a360-4140-b3f7-e9848e3f1240 + - 2ace91b1-52ef-4b33-a062-f9de9904ba9d status: 200 OK code: 200 - duration: 152.714321ms + duration: 147.049846ms - id: 67 request: proto: HTTP/1.1 @@ -3358,7 +2898,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/volumes/cd75f866-a92c-4de9-93ea-485d6356640c method: GET response: proto: HTTP/2.0 @@ -3366,35 +2906,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4567 + 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-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"}]}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd75f866-a92c-4de9-93ea-485d6356640c"}' headers: Content-Length: - - "4567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a819063b-a4f2-4fbe-a947-1ec3b803ca9e - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 189.266478ms + - 8e17d90b-5434-4215-9a2e-df1e0399f572 + status: 404 Not Found + code: 404 + duration: 28.090825ms - id: 68 request: proto: HTTP/1.1 @@ -3411,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?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test%2Cprivate-ips + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 method: GET response: proto: HTTP/2.0 @@ -3419,35 +2947,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4567 + 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-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"}]}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5"}' headers: Content-Length: - - "4567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 853257d8-b310-4f3f-aacb-71c315fe978f - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 213.358146ms + - 8452cc78-25b6-4267-8e54-156dfd9b021c + status: 404 Not Found + code: 404 + duration: 35.22281ms - id: 69 request: proto: HTTP/1.1 @@ -3460,11 +2976,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order: + - creation_date_desc + tags: + - data_scaleway_instance_servers,terraform-test,private-ips headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + 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 @@ -3472,31 +2992,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 4659 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","type":"not_found"}' + body: '{"servers": [{"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}]}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "4659" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:55 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dae9e14b-4723-4873-8ace-be668cd0d14d - status: 404 Not Found - code: 404 - duration: 28.676834ms + - fdc436bb-3c6a-4aba-8569-4c1358cfd1a6 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 217.208299ms - id: 70 request: proto: HTTP/1.1 @@ -3509,11 +3025,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-server-datasource-private-ips + order: + - creation_date_desc headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + 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 @@ -3521,31 +3041,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 4659 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"17f4470a-8d69-48ca-b14c-f549b474b513","type":"not_found"}' + body: '{"servers": [{"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}]}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "4659" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:55 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1c634e07-cc2d-4c9c-811d-37754e92b899 - status: 404 Not Found - code: 404 - duration: 32.11531ms + - 7d948ed7-d26b-4162-80e6-41719871c616 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 222.395568ms - id: 71 request: proto: HTTP/1.1 @@ -3562,7 +3078,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c method: GET response: proto: HTTP/2.0 @@ -3570,35 +3086,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 701 uncompressed: false - 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"}]}' + body: '{"id":"cd75f866-a92c-4de9-93ea-485d6356640c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:48.099347Z", "updated_at":"2025-10-29T22:53:48.099347Z", "references":[{"id":"96032157-a7d3-4cd0-9d97-cfa447e06593", "product_resource_type":"instance_server", "product_resource_id":"49c30c05-0a5d-449f-b309-eb84bc089f00", "created_at":"2025-10-29T22:53:48.099347Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6413dc35-8a9e-4912-b434-377a567bd2e1 - X-Total-Count: - - "1" + - 2066ac67-b897-4883-b835-afd8f2b0989b status: 200 OK code: 200 - duration: 104.141432ms + duration: 83.955591ms - id: 72 request: proto: HTTP/1.1 @@ -3615,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/block/v1alpha1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 method: GET response: proto: HTTP/2.0 @@ -3625,29 +3129,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:52.644035Z", "updated_at":"2025-10-29T22:53:52.644035Z", "references":[{"id":"03bc610e-cd8d-49a1-ac9e-4cd9e85711c2", "product_resource_type":"instance_server", "product_resource_id":"93f8a173-3d05-474c-a527-0258fb1ad785", "created_at":"2025-10-29T22:53:52.644035Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a8e12b70-f28d-47a8-a79c-22499ace8fc7 + - 82f61ef9-2a6a-4813-ae36-f1d24ca4e720 status: 200 OK code: 200 - duration: 83.687181ms + duration: 82.584397ms - id: 73 request: proto: HTTP/1.1 @@ -3664,7 +3160,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -3672,31 +3168,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 478 uncompressed: false - 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"}' + body: '{"private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}]}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "478" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6992a451-b807-4860-ba6f-14b049523f2d + - c0827d49-ed71-4785-910b-81375c402fc6 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 91.534771ms + duration: 95.44811ms - id: 74 request: proto: HTTP/1.1 @@ -3709,11 +3201,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=91774c41-5131-42c5-abf5-1480eaef9533&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=91d96552-e6e6-4eaa-b3e2-e0e51f6fd085&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3721,31 +3221,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1097 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"4c1fc422-3a32-4177-80d1-5c03906e3953", "address":"fd5f:519c:6d46:8e32:d74e:abb8:d1fc:b987/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:53.907982Z", "updated_at":"2025-10-29T22:53:53.907982Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"ae83b184-60dd-4496-bcaf-aaab415e14fc", "address":"172.18.20.3/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:53.797747Z", "updated_at":"2025-10-29T22:53:53.797747Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1097" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ee10cfd1-ae1d-4391-b828-a5fa0822c034 + - dbc98223-8bc1-4bb4-a012-f7ed15c34700 status: 200 OK code: 200 - duration: 28.559103ms + duration: 29.203475ms - id: 75 request: proto: HTTP/1.1 @@ -3762,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/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -3772,33 +3264,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8184877f-853d-422e-87b7-aa30ada94f79 + - 733cdf94-0bf3-4dda-9afd-963a5d4fae56 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 116.946885ms + duration: 132.846959ms - id: 76 request: proto: HTTP/1.1 @@ -3811,11 +3295,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=91774c41-5131-42c5-abf5-1480eaef9533&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=91d96552-e6e6-4eaa-b3e2-e0e51f6fd085&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3823,31 +3315,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1097 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"4c1fc422-3a32-4177-80d1-5c03906e3953", "address":"fd5f:519c:6d46:8e32:d74e:abb8:d1fc:b987/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:53.907982Z", "updated_at":"2025-10-29T22:53:53.907982Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"ae83b184-60dd-4496-bcaf-aaab415e14fc", "address":"172.18.20.3/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:53.797747Z", "updated_at":"2025-10-29T22:53:53.797747Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1097" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 41bc0a1d-c97f-4dea-80d4-8fab6dd497b6 + - ad48a8de-97bb-4f82-9514-aca07f30c58a status: 200 OK code: 200 - duration: 21.603436ms + duration: 26.198656ms - id: 77 request: proto: HTTP/1.1 @@ -3864,7 +3348,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/user_data method: GET response: proto: HTTP/2.0 @@ -3874,29 +3358,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:04 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0bfe71ee-0733-4225-bc13-872c56fc7ee5 + - 0efe219d-6ee3-4a2c-9746-ab77589623f1 status: 200 OK code: 200 - duration: 92.394232ms + duration: 115.283729ms - id: 78 request: proto: HTTP/1.1 @@ -3913,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/e73d1139-6883-42d1-8328-94b01d23e660/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/user_data method: GET response: proto: HTTP/2.0 @@ -3923,29 +3399,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:04 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 600e41ff-79a1-4eb1-a778-b7ea4023c01f + - 09e93d71-c081-4a8e-9453-3a5ff1a3a80b status: 200 OK code: 200 - duration: 103.747202ms + duration: 100.133972ms - id: 79 request: proto: HTTP/1.1 @@ -3962,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/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -3972,33 +3440,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - db5dd18a-6348-44c8-bc17-6961f637d337 + - 6efec462-983b-40a6-bb42-253061bc0bb8 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 109.789749ms + duration: 79.350381ms - id: 80 request: proto: HTTP/1.1 @@ -4011,11 +3471,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4023,35 +3491,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1098 uncompressed: false - 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"}]}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c5db3468-5d6b-478d-ad3a-836bb67a9040 - X-Total-Count: - - "1" + - 194113cd-5543-4d41-87f8-fb1a375598df status: 200 OK code: 200 - duration: 99.376079ms + duration: 25.916188ms - id: 81 request: proto: HTTP/1.1 @@ -4068,7 +3524,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=4672ed07-3b74-43d9-9b23-f43d4fb81b91&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -4076,31 +3532,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 478 uncompressed: false - 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}' + body: '{"private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}]}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "478" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bcaa4658-ed7e-4616-9353-6c055743fb62 + - 92fd69f5-55a2-49bc-9d2a-0e6c38ef59f9 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 56.301226ms + duration: 85.288243ms - id: 82 request: proto: HTTP/1.1 @@ -4117,7 +3569,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=4672ed07-3b74-43d9-9b23-f43d4fb81b91&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -4125,31 +3577,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 478 uncompressed: false - 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}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "478" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f1b9cb97-e83b-47c8-85c8-71ce21863f37 + - 6a05f82c-61de-4379-87e8-b7aea944e8c3 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 37.060409ms + duration: 108.997866ms - id: 83 request: proto: HTTP/1.1 @@ -4162,11 +3610,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/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=91d96552-e6e6-4eaa-b3e2-e0e51f6fd085&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4174,35 +3630,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1098 uncompressed: false - 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"}]}' + body: '{"total_count":2, "ips":[{"id":"4c1fc422-3a32-4177-80d1-5c03906e3953", "address":"fd5f:519c:6d46:8e32:d74e:abb8:d1fc:b987/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:53.907982Z", "updated_at":"2025-10-29T22:53:53.907982Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"ae83b184-60dd-4496-bcaf-aaab415e14fc", "address":"172.18.20.3/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:53.797747Z", "updated_at":"2025-10-29T22:53:53.797747Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 20fb75c7-ffba-4ad2-bdfd-5e5c254671fb - X-Total-Count: - - "1" + - 7e186b28-309b-437b-a9f8-0658658ff701 status: 200 OK code: 200 - duration: 92.760167ms + duration: 18.158594ms - id: 84 request: proto: HTTP/1.1 @@ -4219,7 +3663,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -4229,33 +3673,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7f7d5178-d934-4c57-ad7c-cf552a808db5 + - 43b1e92a-2dce-4010-b4f1-c835b0cda19a X-Total-Count: - "1" status: 200 OK code: 200 - duration: 102.460762ms + duration: 111.896246ms - id: 85 request: proto: HTTP/1.1 @@ -4268,11 +3704,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=4672ed07-3b74-43d9-9b23-f43d4fb81b91&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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4280,31 +3724,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a33b33f2-d7d0-45ea-9a18-2891d43af2a9 + - 3cf7d3e8-c45b-4739-8187-2d4d4fff148b status: 200 OK code: 200 - duration: 45.700685ms + duration: 26.8263ms - id: 86 request: proto: HTTP/1.1 @@ -4317,11 +3753,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=91774c41-5131-42c5-abf5-1480eaef9533&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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4329,31 +3773,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1097 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1097" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b25a6c00-ece2-4068-9dd2-7ba85aa4d99c + - 695c792d-484a-447a-8128-ceaf33b3723e status: 200 OK code: 200 - duration: 58.803296ms + duration: 33.985507ms - id: 87 request: proto: HTTP/1.1 @@ -4366,7 +3802,11 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-server-datasource-private-ips + order: + - creation_date_desc headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -4380,33 +3820,25 @@ interactions: trailer: {} content_length: 15 uncompressed: false - body: '{"servers":[]}' + body: '{"servers": []}' headers: Content-Length: - "15" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2498e357-0bb5-4c76-98c5-df912e801462 + - f73744d7-9408-488b-99f2-0c0b22b96ab8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 127.808546ms + duration: 131.278817ms - id: 88 request: proto: HTTP/1.1 @@ -4419,7 +3851,11 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order: + - creation_date_desc + tags: + - data_scaleway_instance_servers,terraform-test,private-ips headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -4431,35 +3867,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4567 + content_length: 4659 uncompressed: false - 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"}]}' + body: '{"servers": [{"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}]}' headers: Content-Length: - - "4567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "4659" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d0933f6d-5ba6-4c4a-83d0-f69b2100a626 + - ecd52286-2f48-4587-91e6-2776b42d9c13 X-Total-Count: - "2" status: 200 OK code: 200 - duration: 186.703224ms + duration: 184.705115ms - id: 89 request: proto: HTTP/1.1 @@ -4472,7 +3900,11 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-server-datasource-private-ips + order: + - creation_date_desc headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -4486,33 +3918,25 @@ interactions: trailer: {} 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-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"}]}' + body: '{"servers": [{"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}, {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}]}' headers: Content-Length: - "4567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f515b253-1fa4-4c48-bdb0-6422c616d108 + - a4a8b249-dae7-4323-a37e-908f11c5da6b X-Total-Count: - "2" status: 200 OK code: 200 - duration: 211.452817ms + duration: 189.447302ms - id: 90 request: proto: HTTP/1.1 @@ -4529,7 +3953,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -4539,33 +3963,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 03d20f51-297a-4dd5-ba1b-cd729fb4ace4 + - f657b587-75d9-461b-bdc3-0c9b5bd94bad X-Total-Count: - "1" status: 200 OK code: 200 - duration: 99.749069ms + duration: 89.537188ms - id: 91 request: proto: HTTP/1.1 @@ -4582,7 +3998,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=91774c41-5131-42c5-abf5-1480eaef9533&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -4590,31 +4006,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1097 + content_length: 478 uncompressed: false - 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}' + body: '{"private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}]}' headers: Content-Length: - - "1097" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "478" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5995f5a8-22fa-459f-a358-3bd30cc67b18 + - 71e363bd-ce3e-4fcf-a0e4-46a9c379ba46 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 23.432454ms + duration: 109.720687ms - id: 92 request: proto: HTTP/1.1 @@ -4627,11 +4039,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/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=91d96552-e6e6-4eaa-b3e2-e0e51f6fd085&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4639,35 +4059,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1098 uncompressed: false - 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"}]}' + body: '{"total_count":2, "ips":[{"id":"4c1fc422-3a32-4177-80d1-5c03906e3953", "address":"fd5f:519c:6d46:8e32:d74e:abb8:d1fc:b987/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:53.907982Z", "updated_at":"2025-10-29T22:53:53.907982Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"ae83b184-60dd-4496-bcaf-aaab415e14fc", "address":"172.18.20.3/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:53.797747Z", "updated_at":"2025-10-29T22:53:53.797747Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 76725c3b-bc8a-4b67-90d1-f3e905f19d76 - X-Total-Count: - - "1" + - eb951379-068b-42e4-9181-90f605875555 status: 200 OK code: 200 - duration: 129.573875ms + duration: 33.569018ms - id: 93 request: proto: HTTP/1.1 @@ -4680,11 +4088,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=91774c41-5131-42c5-abf5-1480eaef9533&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=91d96552-e6e6-4eaa-b3e2-e0e51f6fd085&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4692,31 +4108,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1097 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"4c1fc422-3a32-4177-80d1-5c03906e3953", "address":"fd5f:519c:6d46:8e32:d74e:abb8:d1fc:b987/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:53.907982Z", "updated_at":"2025-10-29T22:53:53.907982Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"ae83b184-60dd-4496-bcaf-aaab415e14fc", "address":"172.18.20.3/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:53.797747Z", "updated_at":"2025-10-29T22:53:53.797747Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1097" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f72662fc-979a-48e0-9414-3bc168ba9f6a + - 446fc8d0-7b56-42fe-a59d-c8e08ef3c46c status: 200 OK code: 200 - duration: 26.817439ms + duration: 30.249361ms - id: 94 request: proto: HTTP/1.1 @@ -4733,7 +4141,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -4743,33 +4151,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2460a94e-060e-4cda-964b-8521c3a7fa67 + - cb764cae-c0c8-48e7-94d3-59e501840d86 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 93.302876ms + duration: 88.514455ms - id: 95 request: proto: HTTP/1.1 @@ -4782,11 +4182,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=4672ed07-3b74-43d9-9b23-f43d4fb81b91&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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4794,31 +4202,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 472698a1-7ad8-4069-94b5-f0c2eb056b03 + - 39f97688-6864-4c6d-b157-4570b6774fd8 status: 200 OK code: 200 - duration: 29.242555ms + duration: 25.270652ms - id: 96 request: proto: HTTP/1.1 @@ -4835,7 +4235,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -4845,33 +4245,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5d3d56cd-73c2-4efe-bad8-a92025dc90d1 + - 1bd201f3-ebdf-42d4-87ae-983cc83ba7c2 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 100.132919ms + duration: 100.197891ms - id: 97 request: proto: HTTP/1.1 @@ -4884,11 +4276,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=4672ed07-3b74-43d9-9b23-f43d4fb81b91&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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4896,31 +4296,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f5743f6e-9733-44e1-b01a-8c241af14199 + - ed195d70-d1ff-4249-8998-ef04e30323ab status: 200 OK code: 200 - duration: 24.869218ms + duration: 60.826845ms - id: 98 request: proto: HTTP/1.1 @@ -4937,7 +4329,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b method: GET response: proto: HTTP/2.0 @@ -4945,31 +4337,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 1102 uncompressed: false - 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"}' + body: '{"id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "name":"private_network_instance_servers", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"b37b6794-671e-4da4-a5f6-83811da111cf", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"172.18.20.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}, {"id":"a7967db4-d323-4e2e-a950-85ca84267783", "created_at":"2025-10-29T22:53:46.593379Z", "updated_at":"2025-10-29T22:53:46.593379Z", "subnet":"fd5f:519c:6d46:8e32::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"37b82d43-c38d-46ff-97ad-4148d47df03b", "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}], "vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1101" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1102" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 87dc3839-7337-4af3-9616-1bf81571be3c + - 7d010dc7-fcb4-4609-b57d-a819d9d671a1 status: 200 OK code: 200 - duration: 38.227087ms + duration: 41.396414ms - id: 99 request: proto: HTTP/1.1 @@ -4982,7 +4366,11 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-server-datasource-private-ips + order: + - creation_date_desc headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -4996,33 +4384,25 @@ interactions: trailer: {} content_length: 15 uncompressed: false - body: '{"servers":[]}' + body: '{"servers": []}' headers: Content-Length: - "15" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:57 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5c9d255d-d3ca-404e-a21e-8d7cd5762108 + - 65563228-995e-4338-9b52-3c493b8e0fd4 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 139.991313ms + duration: 139.244803ms - id: 100 request: proto: HTTP/1.1 @@ -5035,11 +4415,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-server-datasource-private-ips + order: + - creation_date_desc headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + 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 @@ -5047,31 +4431,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 4659 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: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"}}' + body: '{"servers": [{"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}, {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}]}' headers: Content-Length: - - "2287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "4659" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:57 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8bd50568-1374-4d0e-966f-b543b7ed4909 + - 38920f97-889e-4393-b74b-fd8806259f87 + X-Total-Count: + - "2" status: 200 OK code: 200 - duration: 134.262314ms + duration: 185.303544ms - id: 101 request: proto: HTTP/1.1 @@ -5088,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?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test%2Cprivate-ips + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 method: GET response: proto: HTTP/2.0 @@ -5096,35 +4476,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4567 + content_length: 2333 uncompressed: false - 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"}]}' + body: '{"server": {"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "4567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2333" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 403b37cf-65de-4668-8788-95d89177e53e - X-Total-Count: - - "2" + - a7e193da-4e69-4607-b626-12b649485cf9 status: 200 OK code: 200 - duration: 183.40929ms + duration: 143.861164ms - id: 102 request: proto: HTTP/1.1 @@ -5141,7 +4509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -5149,31 +4517,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2287 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"17f4470a-8d69-48ca-b14c-f549b474b513","type":"not_found"}' + body: '{"server": {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2287" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cd590a4a-c2ee-405d-8135-d9064b8ae42d - status: 404 Not Found - code: 404 - duration: 44.959236ms + - f84ad529-5b9a-4a4a-8ae6-20164151da15 + status: 200 OK + code: 200 + duration: 144.673363ms - id: 103 request: proto: HTTP/1.1 @@ -5186,11 +4546,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order: + - creation_date_desc + tags: + - data_scaleway_instance_servers,terraform-test,private-ips headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + 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 @@ -5198,31 +4562,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 4567 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: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"}}' + body: '{"servers": [{"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}, {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}]}' headers: Content-Length: - - "2287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "4567" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:57 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 12eb1572-11dd-4710-80b6-c57418f95d39 + - c2989443-801d-462d-a28d-e42f03d5f460 + X-Total-Count: + - "2" status: 200 OK code: 200 - duration: 179.639855ms + duration: 209.250982ms - id: 104 request: proto: HTTP/1.1 @@ -5239,7 +4599,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/volumes/cd75f866-a92c-4de9-93ea-485d6356640c method: GET response: proto: HTTP/2.0 @@ -5247,35 +4607,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4567 + 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-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"}]}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd75f866-a92c-4de9-93ea-485d6356640c"}' headers: Content-Length: - - "4567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 857f2d1f-5002-45a6-bc0e-9b8bab266550 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 226.600843ms + - dfbda5af-f13f-49ec-860a-e122f1a6a26d + status: 404 Not Found + code: 404 + duration: 26.09355ms - id: 105 request: proto: HTTP/1.1 @@ -5292,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/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 method: GET response: proto: HTTP/2.0 @@ -5302,29 +4650,21 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 53bc146e-5a89-48dc-a533-6b659977ca9d + - 97f8ca1a-f2ca-419e-b461-74471a514762 status: 404 Not Found code: 404 - duration: 34.636276ms + duration: 30.126451ms - id: 106 request: proto: HTTP/1.1 @@ -5341,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/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -5351,33 +4691,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:57 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d28ae734-24cf-4070-a410-485cfc4c2dda + - 6139f753-4b37-4930-b8ed-9193a13ece14 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 93.994934ms + duration: 110.345296ms - id: 107 request: proto: HTTP/1.1 @@ -5394,7 +4726,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 method: GET response: proto: HTTP/2.0 @@ -5404,29 +4736,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:52.644035Z", "updated_at":"2025-10-29T22:53:52.644035Z", "references":[{"id":"03bc610e-cd8d-49a1-ac9e-4cd9e85711c2", "product_resource_type":"instance_server", "product_resource_id":"93f8a173-3d05-474c-a527-0258fb1ad785", "created_at":"2025-10-29T22:53:52.644035Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e158db16-4fc5-486d-9b5a-a7080dae65bc + - 3b455cec-c75f-4ff3-bb37-9459e74c81f5 status: 200 OK code: 200 - duration: 94.276392ms + duration: 80.485433ms - id: 108 request: proto: HTTP/1.1 @@ -5439,11 +4763,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=91774c41-5131-42c5-abf5-1480eaef9533&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=91d96552-e6e6-4eaa-b3e2-e0e51f6fd085&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5451,31 +4783,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1097 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"4c1fc422-3a32-4177-80d1-5c03906e3953", "address":"fd5f:519c:6d46:8e32:d74e:abb8:d1fc:b987/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:53.907982Z", "updated_at":"2025-10-29T22:53:53.907982Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"ae83b184-60dd-4496-bcaf-aaab415e14fc", "address":"172.18.20.3/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:53.797747Z", "updated_at":"2025-10-29T22:53:53.797747Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1097" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3043557a-e5fc-4deb-bda3-a40cd1ca1079 + - eb0f7289-ac88-425b-8a4d-0cb9d60b157f status: 200 OK code: 200 - duration: 42.714859ms + duration: 24.844325ms - id: 109 request: proto: HTTP/1.1 @@ -5492,7 +4816,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c method: GET response: proto: HTTP/2.0 @@ -5500,35 +4824,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 701 uncompressed: false - 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"}]}' + body: '{"id":"cd75f866-a92c-4de9-93ea-485d6356640c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:48.099347Z", "updated_at":"2025-10-29T22:53:48.099347Z", "references":[{"id":"96032157-a7d3-4cd0-9d97-cfa447e06593", "product_resource_type":"instance_server", "product_resource_id":"49c30c05-0a5d-449f-b309-eb84bc089f00", "created_at":"2025-10-29T22:53:48.099347Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 65ea37b2-6b31-47c4-8bcb-bc6c17da5fc4 - X-Total-Count: - - "1" + - 35bc47fd-a870-4869-a657-2a5bcbd40ad2 status: 200 OK code: 200 - duration: 110.694948ms + duration: 118.677416ms - id: 110 request: proto: HTTP/1.1 @@ -5545,7 +4857,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -5553,31 +4865,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 478 uncompressed: false - 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"}' + body: '{"private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}]}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "478" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:57 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0ebf2a03-0cfb-4059-b073-613ab3036a57 + - 73a50d4c-7fbb-4dd7-b387-e34c601b8c52 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 86.491078ms + duration: 134.145688ms - id: 111 request: proto: HTTP/1.1 @@ -5590,11 +4898,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=91774c41-5131-42c5-abf5-1480eaef9533&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=91d96552-e6e6-4eaa-b3e2-e0e51f6fd085&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5602,31 +4918,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1097 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"4c1fc422-3a32-4177-80d1-5c03906e3953", "address":"fd5f:519c:6d46:8e32:d74e:abb8:d1fc:b987/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:53.907982Z", "updated_at":"2025-10-29T22:53:53.907982Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"ae83b184-60dd-4496-bcaf-aaab415e14fc", "address":"172.18.20.3/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:53.797747Z", "updated_at":"2025-10-29T22:53:53.797747Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1097" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6035c631-691b-4f9d-89f9-1b1b4242a6e5 + - ea35f912-6f41-43d9-81ba-ca3a7d7b6e8d status: 200 OK code: 200 - duration: 28.544748ms + duration: 29.85835ms - id: 112 request: proto: HTTP/1.1 @@ -5643,7 +4951,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/user_data method: GET response: proto: HTTP/2.0 @@ -5653,29 +4961,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 732e6eba-9910-466e-9c13-d87a6be9a79d + - 5c5f230a-63ec-4833-98d4-82a6aeebd0c4 status: 200 OK code: 200 - duration: 98.577374ms + duration: 89.826729ms - id: 113 request: proto: HTTP/1.1 @@ -5692,7 +4992,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -5702,33 +5002,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:57 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 49d07090-2028-4bdc-9f30-70a7fc81f861 + - 989224dd-0598-4f57-84e0-d83b70399068 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 108.94104ms + duration: 84.325453ms - id: 114 request: proto: HTTP/1.1 @@ -5741,11 +5033,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + 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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5753,31 +5053,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1098 uncompressed: false - body: '{"user_data":[]}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 63daa772-acc0-4ce6-8ab7-c39180000d44 + - c7e91749-883c-4a5e-9730-b6b7294375ac status: 200 OK code: 200 - duration: 108.733732ms + duration: 32.243179ms - id: 115 request: proto: HTTP/1.1 @@ -5794,7 +5086,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=4672ed07-3b74-43d9-9b23-f43d4fb81b91&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/user_data method: GET response: proto: HTTP/2.0 @@ -5802,31 +5094,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 17 uncompressed: false - 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}' + body: '{"user_data": []}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6d8c81be-014f-4447-8eaf-a07aebeed735 + - e0085d16-727f-41b1-8686-e75f5f14410b status: 200 OK code: 200 - duration: 26.725797ms + duration: 108.658622ms - id: 116 request: proto: HTTP/1.1 @@ -5843,7 +5127,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -5853,33 +5137,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:57 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 70f17e68-20ad-415d-8e25-17f06154d47e + - 8ccbe249-9bac-4f60-8961-753955d0aca8 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 101.993648ms + duration: 92.154432ms - id: 117 request: proto: HTTP/1.1 @@ -5896,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/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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -5904,31 +5180,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 478 uncompressed: false - 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}' + body: '{"private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}]}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "478" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:57 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fccc2edb-82f8-4ffe-89ee-7e11dcf76a52 + - 7ced03b2-a2a4-4361-8e99-3efbe1c26797 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 24.092442ms + duration: 94.917178ms - id: 118 request: proto: HTTP/1.1 @@ -5941,11 +5213,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5953,35 +5233,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1098 uncompressed: false - 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"}]}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 605e9f94-22b1-4047-b6ee-c827c22f35b6 - X-Total-Count: - - "1" + - 11b15935-7dea-4770-bb68-c4d9ce3e4709 status: 200 OK code: 200 - duration: 89.907983ms + duration: 31.996969ms - id: 119 request: proto: HTTP/1.1 @@ -5994,11 +5262,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=91774c41-5131-42c5-abf5-1480eaef9533&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=91d96552-e6e6-4eaa-b3e2-e0e51f6fd085&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -6006,31 +5282,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1097 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"4c1fc422-3a32-4177-80d1-5c03906e3953", "address":"fd5f:519c:6d46:8e32:d74e:abb8:d1fc:b987/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:53.907982Z", "updated_at":"2025-10-29T22:53:53.907982Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"ae83b184-60dd-4496-bcaf-aaab415e14fc", "address":"172.18.20.3/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:53.797747Z", "updated_at":"2025-10-29T22:53:53.797747Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "mac_address":"02:00:00:1E:92:3F", "name":"tf-server-datasource-private-ips-1"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1097" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4eb78f44-26b9-4e7c-aa13-ffa7d97a5e40 + - fab119a3-6291-4944-bab1-55f16485267c status: 200 OK code: 200 - duration: 28.388304ms + duration: 26.280791ms - id: 120 request: proto: HTTP/1.1 @@ -6047,7 +5315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -6057,33 +5325,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:57 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 632942f4-35a8-4cb8-90ef-dfb6e7dc5c04 + - 43b9958c-a7fb-4664-b0cd-32522f52a12b X-Total-Count: - "1" status: 200 OK code: 200 - duration: 89.603642ms + duration: 102.228228ms - id: 121 request: proto: HTTP/1.1 @@ -6096,11 +5356,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 01e1075c-dd46-4375-81d4-7cbf5cd5f6cd + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=4672ed07-3b74-43d9-9b23-f43d4fb81b91&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=01e1075c-dd46-4375-81d4-7cbf5cd5f6cd&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -6108,31 +5376,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 1098 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"2e9093cc-b5c1-4f03-a61b-2e2cf9dad460", "address":"fd5f:519c:6d46:8e32:cea3:9c60:ab6b:faf8/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:53:49.318140Z", "updated_at":"2025-10-29T22:53:49.318140Z", "source":{"subnet_id":"a7967db4-d323-4e2e-a950-85ca84267783"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"04c4fae1-b805-47cf-9fee-dcca747a8feb", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:49.205621Z", "updated_at":"2025-10-29T22:53:49.205621Z", "source":{"subnet_id":"b37b6794-671e-4da4-a5f6-83811da111cf"}, "resource":{"type":"instance_private_nic", "id":"01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "mac_address":"02:00:00:14:9C:52", "name":"tf-server-datasource-private-ips-0"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 410b38c5-6105-45f0-ab87-ca7cb1c2d722 + - 4f38a1df-c031-4a1b-945c-b035f409bae3 status: 200 OK code: 200 - duration: 28.533796ms + duration: 27.544884ms - id: 122 request: proto: HTTP/1.1 @@ -6149,7 +5409,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -6159,33 +5419,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:57 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c6745aa8-5259-40c7-8bb9-b2fb31c270e8 + - b6fbf6a3-8c30-4530-8a6b-b79110e56201 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 105.063161ms + duration: 104.573273ms - id: 123 request: proto: HTTP/1.1 @@ -6202,7 +5454,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -6212,33 +5464,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53:57 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 768bfbb4-a88e-4936-9839-966877ca9b08 + - ae58b8e3-97ab-4df1-a76b-70f754de2c1e X-Total-Count: - "1" status: 200 OK code: 200 - duration: 125.18ms + duration: 107.376124ms - id: 124 request: proto: HTTP/1.1 @@ -6255,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/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics/4672ed07-3b74-43d9-9b23-f43d4fb81b91 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics/91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 method: GET response: proto: HTTP/2.0 @@ -6265,29 +5509,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "93f8a173-3d05-474c-a527-0258fb1ad785", "mac_address": "02:00:00:1e:92:3f", "state": "available", "creation_date": "2025-10-29T22:53:53.505643+00:00", "modification_date": "2025-10-29T22:53:53.725191+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["ae83b184-60dd-4496-bcaf-aaab415e14fc", "4c1fc422-3a32-4177-80d1-5c03906e3953"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a541e147-4433-456a-b17d-5b2d2ed4ab26 + - 4963d0f0-bda4-42af-920f-44cb78eee788 status: 200 OK code: 200 - duration: 107.360147ms + duration: 96.956881ms - id: 125 request: proto: HTTP/1.1 @@ -6304,7 +5540,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/91774c41-5131-42c5-abf5-1480eaef9533 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics/01e1075c-dd46-4375-81d4-7cbf5cd5f6cd method: GET response: proto: HTTP/2.0 @@ -6314,29 +5550,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd", "private_network_id": "37b82d43-c38d-46ff-97ad-4148d47df03b", "server_id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "mac_address": "02:00:00:14:9c:52", "state": "available", "creation_date": "2025-10-29T22:53:48.904402+00:00", "modification_date": "2025-10-29T22:53:49.141526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["04c4fae1-b805-47cf-9fee-dcca747a8feb", "2e9093cc-b5c1-4f03-a61b-2e2cf9dad460"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - da23b1c2-4b85-41ac-b83d-39840f3be91e + - 979340b6-7f46-434f-a38e-fad9783ed0a7 status: 200 OK code: 200 - duration: 102.255869ms + duration: 118.350474ms - id: 126 request: proto: HTTP/1.1 @@ -6353,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/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics/91774c41-5131-42c5-abf5-1480eaef9533 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics/91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 method: DELETE response: proto: HTTP/2.0 @@ -6365,25 +5593,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e2ebecc-f855-48ce-ae6e-615f181af9a1 + - 97edc6b4-b0a6-4b00-b568-a7fbd298080a status: 204 No Content code: 204 - duration: 321.599391ms + duration: 351.78768ms - id: 127 request: proto: HTTP/1.1 @@ -6400,7 +5620,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/4672ed07-3b74-43d9-9b23-f43d4fb81b91 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics/01e1075c-dd46-4375-81d4-7cbf5cd5f6cd method: DELETE response: proto: HTTP/2.0 @@ -6412,25 +5632,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3f234828-ea7e-4632-b2bc-04de874b39c3 + - 9d1f2820-e93a-4f66-8d13-2ae582709f5d status: 204 No Content code: 204 - duration: 367.578359ms + duration: 338.093765ms - id: 128 request: proto: HTTP/1.1 @@ -6447,7 +5659,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/91774c41-5131-42c5-abf5-1480eaef9533 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics/01e1075c-dd46-4375-81d4-7cbf5cd5f6cd method: GET response: proto: HTTP/2.0 @@ -6457,29 +5669,21 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"91774c41-5131-42c5-abf5-1480eaef9533","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_private_nic", "resource_id": "01e1075c-dd46-4375-81d4-7cbf5cd5f6cd"}' headers: Content-Length: - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f90395df-d703-4542-8475-7a8dad8d5586 + - 895b05b9-b9eb-4618-af6e-82e778bce814 status: 404 Not Found code: 404 - duration: 107.309192ms + duration: 89.450196ms - id: 129 request: proto: HTTP/1.1 @@ -6496,7 +5700,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/4672ed07-3b74-43d9-9b23-f43d4fb81b91 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics/91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 method: GET response: proto: HTTP/2.0 @@ -6506,29 +5710,21 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_private_nic", "resource_id": "91d96552-e6e6-4eaa-b3e2-e0e51f6fd085"}' headers: Content-Length: - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f7c7e465-e180-4185-a026-edd2155e4712 + - 04d59324-42bf-4811-ba16-c452cd6cd130 status: 404 Not Found code: 404 - duration: 91.87454ms + duration: 113.334084ms - id: 130 request: proto: HTTP/1.1 @@ -6545,7 +5741,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics method: GET response: proto: HTTP/2.0 @@ -6555,33 +5751,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:07 GMT + - Wed, 29 Oct 2025 22:53:58 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3c33f53d-e3fe-4a1d-ab09-2295cf40a062 + - 1b886a25-ccbb-421b-a882-f1ab58d38224 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 117.576559ms + duration: 107.109907ms - id: 131 request: proto: HTTP/1.1 @@ -6598,7 +5786,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics method: GET response: proto: HTTP/2.0 @@ -6608,33 +5796,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:07 GMT + - Wed, 29 Oct 2025 22:53:58 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ac4620f5-2ca9-49d1-add0-d6edab666f30 + - 07af61d7-dfa5-40cb-80b5-ab3b83804718 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 111.215004ms + duration: 107.551903ms - id: 132 request: proto: HTTP/1.1 @@ -6651,7 +5831,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -6661,29 +5841,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1829" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7e1726df-7bcb-4150-ae05-d5c7ffceb2d5 + - 3504f140-29d8-4e86-83a8-20bceebbc08b status: 200 OK code: 200 - duration: 129.825619ms + duration: 151.088378ms - id: 133 request: proto: HTTP/1.1 @@ -6700,7 +5872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 method: GET response: proto: HTTP/2.0 @@ -6710,29 +5882,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1829" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d99bfffd-8996-4938-9db9-39b28d167dc2 + - 8de74fc4-6330-4e4d-819f-101795d99515 status: 200 OK code: 200 - duration: 139.968062ms + duration: 145.611979ms - id: 134 request: proto: HTTP/1.1 @@ -6749,7 +5913,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -6757,31 +5921,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1829 + content_length: 1875 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: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"}}' + body: '{"server": {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:47.955025+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1829" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1875" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a798671b-a8d3-4760-bf89-75e52c481409 + - 19d276ec-40df-4b61-b57f-60fc2c7aa986 status: 200 OK code: 200 - duration: 149.234272ms + duration: 147.837059ms - id: 135 request: proto: HTTP/1.1 @@ -6798,7 +5954,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 method: GET response: proto: HTTP/2.0 @@ -6806,31 +5962,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1829 + content_length: 1875 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: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"}}' + body: '{"server": {"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:52.511599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1829" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1875" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 482bce3f-d725-44fb-92c7-b23ce638d8d5 + - 4276adb1-169a-4424-b6eb-42acb2a00c3e status: 200 OK code: 200 - duration: 151.811622ms + duration: 171.501517ms - id: 136 request: proto: HTTP/1.1 @@ -6847,7 +5995,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c method: GET response: proto: HTTP/2.0 @@ -6857,29 +6005,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"cd75f866-a92c-4de9-93ea-485d6356640c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:48.099347Z", "updated_at":"2025-10-29T22:53:48.099347Z", "references":[{"id":"96032157-a7d3-4cd0-9d97-cfa447e06593", "product_resource_type":"instance_server", "product_resource_id":"49c30c05-0a5d-449f-b309-eb84bc089f00", "created_at":"2025-10-29T22:53:48.099347Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9fe1d5a9-2e77-446e-bb24-68b31061ef48 + - 7b9504a7-1047-4739-97d9-7cc24587b620 status: 200 OK code: 200 - duration: 74.112435ms + duration: 105.625511ms - id: 137 request: proto: HTTP/1.1 @@ -6896,7 +6036,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 method: GET response: proto: HTTP/2.0 @@ -6906,29 +6046,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:52.644035Z", "updated_at":"2025-10-29T22:53:52.644035Z", "references":[{"id":"03bc610e-cd8d-49a1-ac9e-4cd9e85711c2", "product_resource_type":"instance_server", "product_resource_id":"93f8a173-3d05-474c-a527-0258fb1ad785", "created_at":"2025-10-29T22:53:52.644035Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 42f465c3-8417-4ac6-8d49-4387d9ea3c27 + - 05e28907-9bb3-48fc-a318-4e94edd91baa status: 200 OK code: 200 - duration: 116.436261ms + duration: 79.266986ms - id: 138 request: proto: HTTP/1.1 @@ -6947,7 +6079,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/e73d1139-6883-42d1-8328-94b01d23e660/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/action method: POST response: proto: HTTP/2.0 @@ -6957,31 +6089,23 @@ interactions: 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"}}' + body: '{"task": {"id": "9526dc3a-9d87-42eb-b9be-7a184c9b284c", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/93f8a173-3d05-474c-a527-0258fb1ad785/action", "href_result": "/servers/93f8a173-3d05-474c-a527-0258fb1ad785", "started_at": "2025-10-29T22:53:59.288350+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8a02c012-9db7-4db6-86f4-fae33880dfc5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9526dc3a-9d87-42eb-b9be-7a184c9b284c Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4bfb2eb0-4d65-4074-bdad-4e8856b627b3 + - cace8e31-7e98-4c43-b592-b9da7e918cf9 status: 202 Accepted code: 202 - duration: 286.779822ms + duration: 250.041162ms - id: 139 request: proto: HTTP/1.1 @@ -7000,7 +6124,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/71897cdd-9b95-4e65-924c-ad9fc188ee04/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/action method: POST response: proto: HTTP/2.0 @@ -7010,31 +6134,23 @@ interactions: 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"}}' + body: '{"task": {"id": "76ae44dd-98dd-4b36-9cbe-55da342c6f84", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/action", "href_result": "/servers/49c30c05-0a5d-449f-b309-eb84bc089f00", "started_at": "2025-10-29T22:53:59.277881+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/854bbea5-b640-4309-9f66-1b9a33ca1344 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/76ae44dd-98dd-4b36-9cbe-55da342c6f84 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 616aadf2-006c-4e10-8498-a9c87e1f0ef2 + - be3046e4-d8fe-4218-a181-fe8c793adebd status: 202 Accepted code: 202 - duration: 279.169006ms + duration: 275.583011ms - id: 140 request: proto: HTTP/1.1 @@ -7051,7 +6167,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 method: GET response: proto: HTTP/2.0 @@ -7059,31 +6175,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1851 + content_length: 1897 uncompressed: 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"}}' + body: '{"server": {"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:53:59.087441+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1851" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1897" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 91aa95c2-e29c-4101-88ce-6fd9f0888517 + - f0e069fd-2bc8-4a8f-9be4-25303e395e52 status: 200 OK code: 200 - duration: 150.336539ms + duration: 168.567211ms - id: 141 request: proto: HTTP/1.1 @@ -7100,7 +6208,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -7108,31 +6216,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1851 + content_length: 1897 uncompressed: 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"}}' + body: '{"server": {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:53:59.067987+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1851" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1897" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c8f249e5-847e-4ff4-8bb2-7a46eaa3d843 + - f9d8a325-d3aa-40e4-ba93-071090237820 status: 200 OK code: 200 - duration: 135.136446ms + duration: 173.716609ms - id: 142 request: proto: HTTP/1.1 @@ -7149,7 +6249,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -7157,31 +6257,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1985 + content_length: 2031 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:54:02.369990+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "2002", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1985" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2031" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 779c2fa2-06e3-4fe6-bd30-41b59d2881ea + - ed5f4c19-bd52-4c57-b057-37c0f3fa416c status: 200 OK code: 200 - duration: 157.779157ms + duration: 133.828729ms - id: 143 request: proto: HTTP/1.1 @@ -7198,7 +6290,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 method: GET response: proto: HTTP/2.0 @@ -7206,31 +6298,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1986 + content_length: 2031 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:54:01.757333+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "604", "node_id": "36"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1986" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2031" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 25000573-e5c0-44db-945a-bbe6714bfa1f + - b5db1c1e-f6b1-493d-be6f-e3ab08973d54 status: 200 OK code: 200 - duration: 136.977764ms + duration: 154.214757ms - id: 144 request: proto: HTTP/1.1 @@ -7249,7 +6333,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/71897cdd-9b95-4e65-924c-ad9fc188ee04/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/action method: POST response: proto: HTTP/2.0 @@ -7259,133 +6343,109 @@ interactions: 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"}}' + body: '{"task": {"id": "4dc57ada-1cba-43f4-b786-84f52e971edd", "description": "server_terminate", "status": "pending", "href_from": "/servers/93f8a173-3d05-474c-a527-0258fb1ad785/action", "href_result": "/servers/93f8a173-3d05-474c-a527-0258fb1ad785", "started_at": "2025-10-29T22:54:04.893238+00:00", "terminated_at": null, "progress": 0, "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 + - Wed, 29 Oct 2025 22:54:04 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3f44b835-42c5-4c57-b685-6e3d605f389d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4dc57ada-1cba-43f4-b786-84f52e971edd Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0b8bdac9-12f7-494b-ab85-da16d42a215a + - 187a45bc-36dc-4482-84b1-b7faff89c216 status: 202 Accepted code: 202 - duration: 248.344457ms + duration: 292.568045ms - id: 145 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/e73d1139-6883-42d1-8328-94b01d23e660/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 1994 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"}}' + body: '{"server": {"id": "93f8a173-3d05-474c-a527-0258fb1ad785", "name": "tf-server-datasource-private-ips-1", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-1", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:52.511599+00:00", "modification_date": "2025-10-29T22:54:04.668883+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "604", "node_id": "36"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "353" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1994" 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 + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 85fcf824-0251-4009-9bb5-7d8dae2a5511 - status: 202 Accepted - code: 202 - duration: 296.808446ms + - a839f0a2-a95e-40bc-bb10-07561fa27a1b + status: 200 OK + code: 200 + duration: 155.975459ms - id: 146 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/71897cdd-9b95-4e65-924c-ad9fc188ee04 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + 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-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"}}' + body: '{"task": {"id": "4623c42f-f2c6-486f-bb00-53ffbddc1038", "description": "server_terminate", "status": "pending", "href_from": "/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/action", "href_result": "/servers/49c30c05-0a5d-449f-b309-eb84bc089f00", "started_at": "2025-10-29T22:54:05.068044+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "1949" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "353" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:54:05 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4623c42f-f2c6-486f-bb00-53ffbddc1038 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - caecd4f9-4eae-4357-8262-18ef2eced99f - status: 200 OK - code: 200 - duration: 155.730286ms + - 45b799ce-8f19-432f-968e-e37faf0b9115 + status: 202 Accepted + code: 202 + duration: 476.336973ms - id: 147 request: proto: HTTP/1.1 @@ -7402,7 +6462,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -7412,29 +6472,21 @@ interactions: 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"}}' + body: '{"server": {"id": "49c30c05-0a5d-449f-b309-eb84bc089f00", "name": "tf-server-datasource-private-ips-0", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-server-datasource-private-ips-0", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd75f866-a92c-4de9-93ea-485d6356640c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "data_scaleway_instance_servers", "private-ips"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:63", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:47.955025+00:00", "modification_date": "2025-10-29T22:54:04.659458+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "2002", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' 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 + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e788f60e-e590-496b-a4b5-cf28d91aa96f + - f65c1f84-7b9d-493f-b17b-11540db3d875 status: 200 OK code: 200 - duration: 169.229231ms + duration: 142.911633ms - id: 148 request: proto: HTTP/1.1 @@ -7451,7 +6503,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 method: GET response: proto: HTTP/2.0 @@ -7461,29 +6513,21 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "93f8a173-3d05-474c-a527-0258fb1ad785"}' 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa29b928-e377-4137-9a81-b50a7842c114 + - 7bfccfe7-8c75-4f65-98d0-973c65ba4d2a status: 404 Not Found code: 404 - duration: 47.916865ms + duration: 40.771697ms - id: 149 request: proto: HTTP/1.1 @@ -7500,7 +6544,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 method: GET response: proto: HTTP/2.0 @@ -7510,29 +6554,21 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5"}' 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f47d32a2-3498-4bf2-b01d-e5f0dcbdca09 + - a2c75224-d762-4ef3-9b28-d4e1ceb2ae10 status: 404 Not Found code: 404 - duration: 25.030763ms + duration: 31.760869ms - id: 150 request: proto: HTTP/1.1 @@ -7549,7 +6585,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 method: GET response: proto: HTTP/2.0 @@ -7557,31 +6593,23 @@ 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":"e73d1139-6883-42d1-8328-94b01d23e660","type":"not_found"}' + body: '{"id":"3d1f23dc-8985-4202-9b3a-1bdaccd996c5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:52.644035Z", "updated_at":"2025-10-29T22:54:06.340178Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:54:06.340178Z", "zone":"fr-par-1"}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "494" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c6fe9ba1-3f06-4712-8d2f-4146abca719a - status: 404 Not Found - code: 404 - duration: 40.160274ms + - da191094-b0b6-4d09-8054-5942317e3606 + status: 200 OK + code: 200 + duration: 85.35956ms - id: 151 request: proto: HTTP/1.1 @@ -7598,7 +6626,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -7608,29 +6636,21 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "49c30c05-0a5d-449f-b309-eb84bc089f00"}' 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e7e804e1-2904-4d36-a9da-537636f74fbc + - d3959d5f-112c-4cc3-a37e-be800cdf563a status: 404 Not Found code: 404 - duration: 25.450981ms + duration: 53.07894ms - id: 152 request: proto: HTTP/1.1 @@ -7647,7 +6667,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c method: GET response: proto: HTTP/2.0 @@ -7655,31 +6675,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 494 + content_length: 143 uncompressed: false - 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd75f866-a92c-4de9-93ea-485d6356640c"}' headers: Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ee97a853-e3cc-419d-873d-663f75e4e08f - status: 200 OK - code: 200 - duration: 83.91684ms + - 99a0cd67-a90e-4f1e-af9a-81b5672ac1e8 + status: 404 Not Found + code: 404 + duration: 25.484392ms - id: 153 request: proto: HTTP/1.1 @@ -7696,37 +6708,31 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 494 uncompressed: false - body: "" + body: '{"id":"cd75f866-a92c-4de9-93ea-485d6356640c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:48.099347Z", "updated_at":"2025-10-29T22:54:06.536284Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:54:06.536284Z", "zone":"fr-par-1"}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "494" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e9d32fb9-2add-4049-be3d-d6314ec3039b - status: 204 No Content - code: 204 - duration: 179.923086ms + - 3c2869bb-bdfd-44cc-82ee-7b43d8e6f082 + status: 200 OK + code: 200 + duration: 89.200533ms - id: 154 request: proto: HTTP/1.1 @@ -7743,39 +6749,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 494 + content_length: 0 uncompressed: false - 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"}' + body: "" headers: - Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 30c058e8-6ccc-4ac1-81f3-6d3b662211c1 - status: 200 OK - code: 200 - duration: 216.809012ms + - 38e38f19-0b0f-4330-a8db-89a38825b118 + status: 204 No Content + code: 204 + duration: 180.40398ms - id: 155 request: proto: HTTP/1.1 @@ -7792,7 +6788,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c method: DELETE response: proto: HTTP/2.0 @@ -7804,25 +6800,17 @@ interactions: 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 93f6afb1-e334-43f3-8895-4aebd4a69242 + - 329aaf6c-5096-4746-8145-e1d90e7a0501 status: 204 No Content code: 204 - duration: 136.093973ms + duration: 150.033712ms - id: 156 request: proto: HTTP/1.1 @@ -7839,7 +6827,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b method: DELETE response: proto: HTTP/2.0 @@ -7851,25 +6839,17 @@ interactions: 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 150d0555-b5c4-4313-9254-c76a121c58ab + - ee3fb932-6ab2-4cff-9ed2-d0124d9f3876 status: 204 No Content code: 204 - duration: 1.174871601s + duration: 1.223828345s - id: 157 request: proto: HTTP/1.1 @@ -7886,7 +6866,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 method: GET response: proto: HTTP/2.0 @@ -7896,29 +6876,21 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "49c30c05-0a5d-449f-b309-eb84bc089f00"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d4eadb1b-a0b4-4aec-97f4-02c6d987dfe9 + - 3383d860-559d-468f-96a3-9b1289457146 status: 404 Not Found code: 404 - duration: 50.650511ms + duration: 43.927188ms - id: 158 request: proto: HTTP/1.1 @@ -7935,7 +6907,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 method: GET response: proto: HTTP/2.0 @@ -7945,26 +6917,18 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "93f8a173-3d05-474c-a527-0258fb1ad785"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d642df44-13c1-42c8-95e2-fd9a09203709 + - 1150b08b-d3ce-46d1-8614-27ba24e37d33 status: 404 Not Found code: 404 - duration: 50.771347ms + duration: 47.064384ms 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 d3446aed9..39c8018ca 100644 --- a/internal/services/instance/testdata/data-source-volume-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-volume-basic.cassette.yaml @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 430 uncompressed: false - 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"}}' + body: '{"volume": {"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "430" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:53:55 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3fb20a26-d7c3-40b5-b759-1b92ff419d58 + - 691d1395-c793-4ea9-940b-6de9c677fa4d status: 201 Created code: 201 - duration: 241.166987ms + duration: 200.797163ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -80,29 +72,21 @@ interactions: trailer: {} content_length: 430 uncompressed: false - 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"}}' + body: '{"volume": {"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "430" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ef398d99-70fd-4299-9442-1e7eb5b312ed + - 54be5a82-69ea-4be3-8b3d-640fd30d5bd3 status: 200 OK code: 200 - duration: 82.774542ms + duration: 92.625883ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -129,29 +113,21 @@ interactions: trailer: {} content_length: 430 uncompressed: false - 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"}}' + body: '{"volume": {"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "430" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 843a0847-3a89-4aa0-aec1-0368d710739b + - 9f40beb7-d1f2-49eb-8aac-617a51a50b99 status: 200 OK code: 200 - duration: 84.718005ms + duration: 92.279796ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -178,29 +154,21 @@ interactions: trailer: {} content_length: 430 uncompressed: false - 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"}}' + body: '{"volume": {"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "430" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8ae6e833-3ec4-4f68-898b-d588c89d8be1 + - 279e4201-f2f4-4047-8c4c-517942db2179 status: 200 OK code: 200 - duration: 91.614322ms + duration: 105.898ms - id: 4 request: proto: HTTP/1.1 @@ -217,7 +185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -227,29 +195,21 @@ interactions: trailer: {} content_length: 430 uncompressed: false - 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"}}' + body: '{"volume": {"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "430" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7088354f-3b40-4c6a-9298-8b79eadceb5f + - 1901cbfb-ad18-45d0-a866-46769cb0ff92 status: 200 OK code: 200 - duration: 98.140547ms + duration: 105.068258ms - id: 5 request: proto: HTTP/1.1 @@ -262,11 +222,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-volume headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes?name=tf-volume method: GET response: proto: HTTP/2.0 @@ -274,31 +236,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 430 + content_length: 433 uncompressed: false - 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"}}' + body: '{"volumes": [{"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}]}' headers: Content-Length: - - "430" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "433" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1dcd5c46-7616-4faf-934a-54db9d26c486 + - b0ad9ae2-5bd9-45b3-bd55-f15d5135ecd8 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 102.429848ms + duration: 118.244946ms - id: 6 request: proto: HTTP/1.1 @@ -315,7 +273,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -323,35 +281,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 433 + content_length: 430 uncompressed: false - 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"}]}' + body: '{"volume": {"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "433" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "430" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 711b16d6-15ab-40b0-85a7-1aa90e547fea - X-Total-Count: - - "1" + - 43dde898-df81-4c80-ae2a-1ec9605deaab status: 200 OK code: 200 - duration: 148.0884ms + duration: 128.212173ms - id: 7 request: proto: HTTP/1.1 @@ -368,7 +314,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -378,29 +324,21 @@ interactions: trailer: {} content_length: 430 uncompressed: false - 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"}}' + body: '{"volume": {"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "430" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8abfdca6-c08a-4cba-90fd-e6121a959f1a + - 7738fb66-a136-4b1b-adc2-512f0cb4a934 status: 200 OK code: 200 - duration: 85.984269ms + duration: 85.104299ms - id: 8 request: proto: HTTP/1.1 @@ -417,7 +355,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -427,29 +365,21 @@ interactions: trailer: {} content_length: 430 uncompressed: false - 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"}}' + body: '{"volume": {"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "430" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 351b6dc9-74ef-42e0-a5f6-d5af11786196 + - 921db053-a8fa-46e9-bf4d-d96905e383d3 status: 200 OK code: 200 - duration: 105.562832ms + duration: 85.421983ms - id: 9 request: proto: HTTP/1.1 @@ -466,7 +396,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -476,29 +406,21 @@ interactions: trailer: {} content_length: 430 uncompressed: false - 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"}}' + body: '{"volume": {"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "430" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d8bd9789-2277-4ac0-90cf-02047a5834de + - 28284514-e306-4eac-9568-3e6d9d6d68ec status: 200 OK code: 200 - duration: 98.367433ms + duration: 109.505656ms - id: 10 request: proto: HTTP/1.1 @@ -511,7 +433,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-volume headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -525,33 +449,25 @@ interactions: trailer: {} content_length: 433 uncompressed: false - 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"}]}' + body: '{"volumes": [{"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}]}' headers: Content-Length: - "433" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6b89b9ab-3f38-4a79-8978-01807b276a3f + - 94a51f08-341e-435c-a64a-4c6b2045de69 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 125.793537ms + duration: 114.528317ms - id: 11 request: proto: HTTP/1.1 @@ -568,7 +484,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -578,29 +494,21 @@ interactions: trailer: {} content_length: 430 uncompressed: false - 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"}}' + body: '{"volume": {"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "430" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b2f05003-bd3b-4832-92af-ac39a5188d90 + - 101bd793-e325-44d9-99bb-7b9197be8e0e status: 200 OK code: 200 - duration: 133.969884ms + duration: 91.684894ms - id: 12 request: proto: HTTP/1.1 @@ -617,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/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -627,29 +535,21 @@ interactions: trailer: {} content_length: 430 uncompressed: false - 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"}}' + body: '{"volume": {"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "430" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9c2e7409-c0fd-44a6-a85f-672f996756f1 + - 6dd1f744-437a-473a-989a-a2534856479b status: 200 OK code: 200 - duration: 94.164835ms + duration: 114.320578ms - id: 13 request: proto: HTTP/1.1 @@ -666,7 +566,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -676,29 +576,21 @@ interactions: trailer: {} content_length: 430 uncompressed: false - 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"}}' + body: '{"volume": {"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "430" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5a3972f2-67de-4af1-892a-f20e2597696f + - 8e12cf0c-98bf-4840-a512-90337ddc992a status: 200 OK code: 200 - duration: 98.769547ms + duration: 90.437953ms - id: 14 request: proto: HTTP/1.1 @@ -711,7 +603,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - tf-volume headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -725,33 +619,25 @@ interactions: trailer: {} content_length: 433 uncompressed: false - 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"}]}' + body: '{"volumes": [{"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}]}' headers: Content-Length: - "433" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:53:57 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 69e2d7df-e00e-47b1-9342-5c5b524bb715 + - f6cf534c-0156-4cb6-8918-23d5d6330310 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 115.914798ms + duration: 124.56837ms - id: 15 request: proto: HTTP/1.1 @@ -768,7 +654,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -778,29 +664,21 @@ interactions: trailer: {} content_length: 430 uncompressed: false - 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"}}' + body: '{"volume": {"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "430" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 957da4da-c62a-4052-b5f7-b9ad47fca08d + - 7295d4c4-8a00-4cd7-8ea6-e2cf02962501 status: 200 OK code: 200 - duration: 116.411359ms + duration: 81.492116ms - id: 16 request: proto: HTTP/1.1 @@ -817,7 +695,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -827,29 +705,21 @@ interactions: trailer: {} content_length: 430 uncompressed: false - 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"}}' + body: '{"volume": {"id": "52824592-726e-4e0f-9cc3-e83760aa2ab0", "name": "tf-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 2000000000, "state": "available", "creation_date": "2025-10-29T22:53:55.233968+00:00", "modification_date": "2025-10-29T22:53:55.233968+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "430" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4409c17a-1db8-4188-a7f1-6f29065215a9 + - bbce6d1d-66a9-4a1c-a73b-6c075be8ee85 status: 200 OK code: 200 - duration: 85.887418ms + duration: 91.610806ms - id: 17 request: proto: HTTP/1.1 @@ -866,7 +736,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: DELETE response: proto: HTTP/2.0 @@ -878,25 +748,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 61c73040-7eba-458b-b5ce-feadbe92091f + - 3438ad97-6861-4df8-b6c0-13937d286588 status: 204 No Content code: 204 - duration: 152.029612ms + duration: 153.663894ms - id: 18 request: proto: HTTP/1.1 @@ -913,7 +775,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -923,29 +785,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "52824592-726e-4e0f-9cc3-e83760aa2ab0"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 90ad7d35-babc-49ab-8aae-82181c460f50 + - a590a282-242b-4b1a-a5f3-4c4ddc34a5d1 status: 404 Not Found code: 404 - duration: 34.130783ms + duration: 31.165173ms - id: 19 request: proto: HTTP/1.1 @@ -962,7 +816,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -972,29 +826,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "52824592-726e-4e0f-9cc3-e83760aa2ab0"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bdd9f5cb-db73-4c5e-85b6-c5c0fda2571d + - e5efe834-b61e-4acb-9640-b04aa68ac621 status: 404 Not Found code: 404 - duration: 21.158805ms + duration: 30.261904ms - id: 20 request: proto: HTTP/1.1 @@ -1011,7 +857,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 method: GET response: proto: HTTP/2.0 @@ -1021,26 +867,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "52824592-726e-4e0f-9cc3-e83760aa2ab0"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 19dff237-6574-42cc-a765-c776a8cb8b39 + - 481b6f43-524c-4698-b4ee-e6e628f39f90 status: 404 Not Found code: 404 - duration: 27.110092ms + duration: 29.622218ms 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 09bbe2652..25a8eef69 100644 --- a/internal/services/instance/testdata/image-external-block-volume.cassette.yaml +++ b/internal/services/instance/testdata/image-external-block-volume.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 154 + content_length: 149 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-suspicious-chatelet","perf_iops":15000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":20000000000},"tags":[]}' + body: '{"name":"tf-volume-boring-hermann","perf_iops":15000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":20000000000},"tags":[]}' form: {} headers: Content-Type: @@ -27,80 +27,66 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 428 + content_length: 423 uncompressed: false - 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"}' + body: '{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.267133Z", "updated_at":"2025-10-29T22:54:30.267133Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 33a7b412-2f7b-46ef-a4e8-fc7126db7621 + - ab55562b-b451-420b-8e0a-01472d22d049 status: 200 OK code: 200 - duration: 490.468543ms + duration: 251.503119ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 147 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-volume-goofy-khayyam","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/c7d507b8-5c10-44c5-92bf-998cd7febcb3 - 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: 429 + content_length: 420 uncompressed: false - 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"}' + body: '{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.293052Z", "updated_at":"2025-10-29T22:54:30.293052Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "429" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "420" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2f18b654-295d-4e25-9641-18fb0ba21b62 + - 9421ff74-fb43-48ef-8a06-75388f711ad9 status: 200 OK code: 200 - duration: 92.71424ms + duration: 343.041508ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c7d507b8-5c10-44c5-92bf-998cd7febcb3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/187b3b16-c727-409b-a42e-154628b6e9b2 method: GET response: proto: HTTP/2.0 @@ -125,43 +111,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 429 + content_length: 424 uncompressed: false - 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"}' + body: '{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.267133Z", "updated_at":"2025-10-29T22:54:30.267133Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "429" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "424" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 956cbb90-a5d4-4f85-9e19-2220026218eb + - 5983ba1d-fad6-48a9-abeb-1e75b44daa94 status: 200 OK code: 200 - duration: 101.325692ms + duration: 91.323367ms - id: 3 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: '{"name":"tf-volume-festive-goodall","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":40000000000},"tags":[]}' + body: '{"name":"tf-volume-compassionate-perlman","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":40000000000},"tags":[]}' form: {} headers: Content-Type: @@ -176,31 +154,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 428 uncompressed: false - 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"}' + body: '{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.294202Z", "updated_at":"2025-10-29T22:54:30.294202Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "428" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b55476ad-3e6f-47be-a43b-18953b1eca48 + - 5b3adead-aa0b-4c2a-a6d1-c1c6ef4f8dd7 status: 200 OK code: 200 - duration: 706.428059ms + duration: 410.891431ms - id: 4 request: proto: HTTP/1.1 @@ -217,7 +187,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb663627-91ea-408c-aa6c-0d933b7056a4 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/86ec5311-049c-4d62-9764-7c55f92a48ef method: GET response: proto: HTTP/2.0 @@ -225,31 +195,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 420 uncompressed: false - 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"}' + body: '{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.293052Z", "updated_at":"2025-10-29T22:54:30.293052Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "420" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dcee7732-3240-4c48-acf5-a87d7c8fce5b + - a8542b20-e1b3-46b2-b4e2-167a7d50250e status: 200 OK code: 200 - duration: 109.61587ms + duration: 81.528972ms - id: 5 request: proto: HTTP/1.1 @@ -266,7 +228,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb663627-91ea-408c-aa6c-0d933b7056a4 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/187b3b16-c727-409b-a42e-154628b6e9b2 method: GET response: proto: HTTP/2.0 @@ -274,151 +236,125 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 424 uncompressed: false - 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"}' + body: '{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.267133Z", "updated_at":"2025-10-29T22:54:30.267133Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "424" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 77de612e-5c3e-4889-9d80-02f2e9dc53c6 + - 711c9299-5e1d-4349-8907-38d0904aa2f1 status: 200 OK code: 200 - duration: 85.428554ms + duration: 96.236484ms - id: 6 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-elegant-diffie","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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/c04b1432-7023-48b1-9480-a9dcdf56b57a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 428 uncompressed: false - 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"}' + body: '{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.294202Z", "updated_at":"2025-10-29T22:54:30.294202Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "421" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "428" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 014c5fc6-a044-4ac7-84cf-0b26f111e21c + - 8e422013-de88-4573-99b2-936f7dd3f3b1 status: 200 OK code: 200 - duration: 903.157673ms + duration: 72.03552ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 153 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"volume_id":"187b3b16-c727-409b-a42e-154628b6e9b2","name":"tf-snapshot-optimistic-napier","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/20d0b694-899c-4f93-a69b-7c2ee644ea37 - 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: 421 + content_length: 467 uncompressed: false - 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"}' + body: '{"id":"98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "name":"tf-snapshot-optimistic-napier", "parent_volume":{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.763092Z", "updated_at":"2025-10-29T22:54:30.763092Z", "references":[], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "421" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "467" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2bae27de-89b3-4517-925a-318308442101 + - 7042a692-8949-4604-a032-db19fad79bd2 status: 200 OK code: 200 - duration: 71.47478ms + duration: 369.040895ms - id: 8 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: '{"volume_id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","name":"tf-snapshot-nice-hypatia","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/block/v1alpha1/zones/fr-par-1/snapshots - method: POST + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -427,80 +363,62 @@ interactions: trailer: {} content_length: 467 uncompressed: false - 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"}' + body: '{"id":"98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "name":"tf-snapshot-optimistic-napier", "parent_volume":{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.763092Z", "updated_at":"2025-10-29T22:54:30.763092Z", "references":[], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - "467" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6238b761-09cf-4bfc-b186-c79935baae0a + - 5863e820-f039-48b9-b874-9c8bc5f80f98 status: 200 OK code: 200 - duration: 1.188689832s + duration: 228.610662ms - id: 9 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":"fb663627-91ea-408c-aa6c-0d933b7056a4","name":"tf-snapshot-adoring-kirch","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/block/v1alpha1/zones/fr-par-1/snapshots - method: POST + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c04b1432-7023-48b1-9480-a9dcdf56b57a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 463 + content_length: 429 uncompressed: false - 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"}' + body: '{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.294202Z", "updated_at":"2025-10-29T22:54:30.294202Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "463" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "429" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dd7bfebd-a21d-40a8-b352-3d96f8c0be06 + - 33a054d2-f7ca-4a84-bf7c-6e3ed6412b51 status: 200 OK code: 200 - duration: 974.97893ms + duration: 116.030579ms - id: 10 request: proto: HTTP/1.1 @@ -517,7 +435,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/86ec5311-049c-4d62-9764-7c55f92a48ef method: GET response: proto: HTTP/2.0 @@ -525,31 +443,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 463 + content_length: 421 uncompressed: false - 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"}' + body: '{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.293052Z", "updated_at":"2025-10-29T22:54:30.293052Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "463" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "421" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1c717de9-dd17-4907-919c-b16128981c13 + - f0e96e78-c0fc-4748-b0c0-07b46cbcf154 status: 200 OK code: 200 - duration: 422.998917ms + duration: 176.726497ms - id: 11 request: proto: HTTP/1.1 @@ -566,7 +476,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/bed651bd-bdee-41c5-a5c5-b1f8026fd101 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c04b1432-7023-48b1-9480-a9dcdf56b57a method: GET response: proto: HTTP/2.0 @@ -574,31 +484,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 468 + content_length: 429 uncompressed: false - 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"}' + body: '{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.294202Z", "updated_at":"2025-10-29T22:54:30.294202Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "429" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 40b5fab2-94e8-42bb-bdd1-950c123580f7 + - 24c407d3-25c7-451c-aead-3199add19c8a status: 200 OK code: 200 - duration: 424.250133ms + duration: 197.018209ms - id: 12 request: proto: HTTP/1.1 @@ -615,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/snapshots/bed651bd-bdee-41c5-a5c5-b1f8026fd101 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/86ec5311-049c-4d62-9764-7c55f92a48ef method: GET response: proto: HTTP/2.0 @@ -623,80 +525,66 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 468 + content_length: 421 uncompressed: false - 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"}' + body: '{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.293052Z", "updated_at":"2025-10-29T22:54:30.293052Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "421" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9384ef69-c889-45ae-9af0-dae2e8f223b9 + - d896a108-e6af-4c39-8fdd-6d60253c4dc3 status: 200 OK code: 200 - duration: 258.147316ms + duration: 194.149755ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 147 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"volume_id":"86ec5311-049c-4d62-9764-7c55f92a48ef","name":"tf-snapshot-laughing-wu","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/20d0b694-899c-4f93-a69b-7c2ee644ea37 - 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: 422 + content_length: 459 uncompressed: false - 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"}' + body: '{"id":"e11b0632-3875-485c-8721-fb1ba7fe7a8f", "name":"tf-snapshot-laughing-wu", "parent_volume":{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.154831Z", "updated_at":"2025-10-29T22:54:36.154831Z", "references":[], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "459" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0108be41-6887-4e6c-bad9-fb87e5665481 + - 32d96b62-d124-48d3-8293-2dc3c9bfef5e status: 200 OK code: 200 - duration: 82.659838ms + duration: 536.544108ms - id: 14 request: proto: HTTP/1.1 @@ -713,7 +601,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d method: GET response: proto: HTTP/2.0 @@ -721,43 +609,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 468 uncompressed: false - 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"}' + body: '{"id":"98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "name":"tf-snapshot-optimistic-napier", "parent_volume":{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.763092Z", "updated_at":"2025-10-29T22:54:30.763092Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "468" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1aa5ace5-d063-49b4-8dd6-54fe621ada33 + - cf447fb4-b4d4-4908-a4ac-b7e102a33a24 status: 200 OK code: 200 - duration: 88.209741ms + duration: 305.628905ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 157 + content_length: 145 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","name":"tf-snapshot-optimistic-kowalevski","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + body: '{"volume_id":"c04b1432-7023-48b1-9480-a9dcdf56b57a","name":"tf-snapshot-zen-tesla","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' form: {} headers: Content-Type: @@ -772,31 +652,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 470 + content_length: 465 uncompressed: false - 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"}' + body: '{"id":"7bf72fef-df61-4543-b67d-f8675609f590", "name":"tf-snapshot-zen-tesla", "parent_volume":{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "status":"available"}, "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.130832Z", "updated_at":"2025-10-29T22:54:36.130832Z", "references":[], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "470" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "465" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:56 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bcc60539-6d6b-4ab3-8a85-1d675290f7db + - 3050546e-8ce3-452b-9493-f95f811d9db0 status: 200 OK code: 200 - duration: 685.534455ms + duration: 536.389059ms - id: 16 request: proto: HTTP/1.1 @@ -813,7 +685,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/33e21df4-4f28-4da2-9f78-d82dcf19c93e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d method: GET response: proto: HTTP/2.0 @@ -821,31 +693,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 470 + content_length: 468 uncompressed: false - 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"}' + body: '{"id":"98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "name":"tf-snapshot-optimistic-napier", "parent_volume":{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.763092Z", "updated_at":"2025-10-29T22:54:30.763092Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "470" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "468" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:56 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 752dc2b0-6876-48f0-9e46-f5670cd7cb1e + - 7f3a0c7d-ab35-4acf-bea8-d195d5167d42 status: 200 OK code: 200 - duration: 513.447925ms + duration: 303.004458ms - id: 17 request: proto: HTTP/1.1 @@ -862,7 +726,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 method: GET response: proto: HTTP/2.0 @@ -870,31 +734,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 464 + content_length: 465 uncompressed: false - 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"}' + body: '{"id":"7bf72fef-df61-4543-b67d-f8675609f590", "name":"tf-snapshot-zen-tesla", "parent_volume":{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "status":"available"}, "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.130832Z", "updated_at":"2025-10-29T22:54:36.130832Z", "references":[], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "464" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "465" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 33b6ed7b-09a2-4b04-836c-173170b91c9d + - f44d305c-2798-40b8-9ff0-35f6cdf1cd43 status: 200 OK code: 200 - duration: 897.135492ms + duration: 315.002593ms - id: 18 request: proto: HTTP/1.1 @@ -911,7 +767,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 method: GET response: proto: HTTP/2.0 @@ -919,31 +775,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 464 + content_length: 466 uncompressed: false - 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"}' + body: '{"id":"7bf72fef-df61-4543-b67d-f8675609f590", "name":"tf-snapshot-zen-tesla", "parent_volume":{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "status":"available"}, "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.130832Z", "updated_at":"2025-10-29T22:54:36.130832Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "464" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "466" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cf7b3d23-1b00-427a-83b7-bdab05043926 + - a36d293a-c1c1-421a-a7eb-b71660a34961 status: 200 OK code: 200 - duration: 722.31548ms + duration: 320.563375ms - id: 19 request: proto: HTTP/1.1 @@ -960,7 +808,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/33e21df4-4f28-4da2-9f78-d82dcf19c93e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e11b0632-3875-485c-8721-fb1ba7fe7a8f method: GET response: proto: HTTP/2.0 @@ -968,31 +816,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 471 + content_length: 460 uncompressed: false - 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"}' + body: '{"id":"e11b0632-3875-485c-8721-fb1ba7fe7a8f", "name":"tf-snapshot-laughing-wu", "parent_volume":{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.154831Z", "updated_at":"2025-10-29T22:54:36.154831Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "471" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "460" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dc206801-3c33-48a2-b87f-cef1ee4d0ef3 + - 36470b5b-1f60-4070-a826-a11c7c4afdd8 status: 200 OK code: 200 - duration: 677.705637ms + duration: 316.981968ms - id: 20 request: proto: HTTP/1.1 @@ -1009,7 +849,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/33e21df4-4f28-4da2-9f78-d82dcf19c93e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 method: GET response: proto: HTTP/2.0 @@ -1017,102 +857,84 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 471 + content_length: 466 uncompressed: false - 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"}' + body: '{"id":"7bf72fef-df61-4543-b67d-f8675609f590", "name":"tf-snapshot-zen-tesla", "parent_volume":{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "status":"available"}, "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.130832Z", "updated_at":"2025-10-29T22:54:36.130832Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "471" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "466" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f603f612-9d00-48ea-a8dd-a4b7c78dd935 + - 2733f7f4-3e5c-4eb0-bf07-d29352773bab status: 200 OK code: 200 - duration: 503.548657ms + duration: 304.732093ms - id: 21 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-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}' + 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/block/v1alpha1/zones/fr-par-1/snapshots/e11b0632-3875-485c-8721-fb1ba7fe7a8f + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 807 + content_length: 460 uncompressed: false - 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"}}' + body: '{"id":"e11b0632-3875-485c-8721-fb1ba7fe7a8f", "name":"tf-snapshot-laughing-wu", "parent_volume":{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.154831Z", "updated_at":"2025-10-29T22:54:36.154831Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "807" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "460" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - edbd9b46-280a-4a9f-b0c6-7d9c54a93a72 - status: 201 Created - code: 201 - duration: 2.554239664s + - bc9bcebc-1e0a-44eb-b341-372891a5c671 + status: 200 OK + code: 200 + duration: 304.359456ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 297 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-test-image-external-block-volume","root_volume":"e11b0632-3875-485c-8721-fb1ba7fe7a8f","arch":"x86_64","extra_volumes":{"1":{"id":"98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d"},"2":{"id":"7bf72fef-df61-4543-b67d-f8675609f590"}},"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/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -1121,29 +943,23 @@ interactions: trailer: {} content_length: 807 uncompressed: false - 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"}}' + body: '{"image": {"id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34", "name": "tf-test-image-external-block-volume", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "e11b0632-3875-485c-8721-fb1ba7fe7a8f", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "size": 0, "name": ""}, "2": {"volume_type": "sbs_snapshot", "id": "7bf72fef-df61-4543-b67d-f8675609f590", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:42.622488+00:00", "modification_date": "2025-10-29T22:54:42.622488+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "807" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:54:43 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 27925970-a6d0-44cf-b7cf-84c90c15c802 - status: 200 OK - code: 200 - duration: 117.906055ms + - c4138804-bb5e-466f-a94f-bdaac07f141d + status: 201 Created + code: 201 + duration: 1.026583375s - id: 23 request: proto: HTTP/1.1 @@ -1160,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/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 method: GET response: proto: HTTP/2.0 @@ -1170,29 +986,21 @@ interactions: trailer: {} content_length: 807 uncompressed: false - 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"}}' + body: '{"image": {"id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34", "name": "tf-test-image-external-block-volume", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "e11b0632-3875-485c-8721-fb1ba7fe7a8f", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "size": 0, "name": ""}, "2": {"volume_type": "sbs_snapshot", "id": "7bf72fef-df61-4543-b67d-f8675609f590", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:42.622488+00:00", "modification_date": "2025-10-29T22:54:42.622488+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "807" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 90edce81-f6ac-4107-87b6-869201ec030f + - f2446d06-3370-4aa1-a44a-70ec17e59ed4 status: 200 OK code: 200 - duration: 136.899778ms + duration: 186.659644ms - id: 24 request: proto: HTTP/1.1 @@ -1209,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/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 method: GET response: proto: HTTP/2.0 @@ -1219,29 +1027,21 @@ interactions: trailer: {} content_length: 807 uncompressed: false - 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"}}' + body: '{"image": {"id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34", "name": "tf-test-image-external-block-volume", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "e11b0632-3875-485c-8721-fb1ba7fe7a8f", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "size": 0, "name": ""}, "2": {"volume_type": "sbs_snapshot", "id": "7bf72fef-df61-4543-b67d-f8675609f590", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:42.622488+00:00", "modification_date": "2025-10-29T22:54:42.622488+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "807" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 70d0a612-dbb2-48d9-8d78-ab0608f07b4a + - 3b201c6b-0e52-4f64-a85c-42274d38ea85 status: 200 OK code: 200 - duration: 117.907468ms + duration: 124.785823ms - id: 25 request: proto: HTTP/1.1 @@ -1258,7 +1058,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c7d507b8-5c10-44c5-92bf-998cd7febcb3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 method: GET response: proto: HTTP/2.0 @@ -1266,31 +1066,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 429 + content_length: 807 uncompressed: false - 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"}' + body: '{"image": {"id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34", "name": "tf-test-image-external-block-volume", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "e11b0632-3875-485c-8721-fb1ba7fe7a8f", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "size": 0, "name": ""}, "2": {"volume_type": "sbs_snapshot", "id": "7bf72fef-df61-4543-b67d-f8675609f590", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:42.622488+00:00", "modification_date": "2025-10-29T22:54:42.622488+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "429" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "807" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f1bda2e7-a834-433a-84ea-81943d8d3f43 + - 63bf1d0c-5ffc-43cf-a898-61fbecf49e8c status: 200 OK code: 200 - duration: 75.776924ms + duration: 127.406504ms - id: 26 request: proto: HTTP/1.1 @@ -1307,7 +1099,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb663627-91ea-408c-aa6c-0d933b7056a4 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c04b1432-7023-48b1-9480-a9dcdf56b57a method: GET response: proto: HTTP/2.0 @@ -1315,31 +1107,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 429 uncompressed: false - 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"}' + body: '{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.294202Z", "updated_at":"2025-10-29T22:54:30.294202Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "429" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3088246f-0991-4f34-943d-00d007603504 + - 708e8c3c-1c68-44c0-b7b3-6438e72b26fd status: 200 OK code: 200 - duration: 82.074599ms + duration: 116.434897ms - id: 27 request: proto: HTTP/1.1 @@ -1356,7 +1140,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/86ec5311-049c-4d62-9764-7c55f92a48ef method: GET response: proto: HTTP/2.0 @@ -1364,31 +1148,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 421 uncompressed: false - 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"}' + body: '{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.293052Z", "updated_at":"2025-10-29T22:54:30.293052Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "421" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3a19aa58-6b01-4fe8-b5dd-494ded22585b + - 7b6fb9aa-706b-4564-b127-a89bdbb80287 status: 200 OK code: 200 - duration: 82.065923ms + duration: 116.292011ms - id: 28 request: proto: HTTP/1.1 @@ -1405,7 +1181,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/33e21df4-4f28-4da2-9f78-d82dcf19c93e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/187b3b16-c727-409b-a42e-154628b6e9b2 method: GET response: proto: HTTP/2.0 @@ -1413,31 +1189,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 424 uncompressed: false - 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"}' + body: '{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.267133Z", "updated_at":"2025-10-29T22:54:30.267133Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "697" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "424" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a94ccf28-f6a1-4b88-aceb-3611b1f9250e + - e58479e4-1a6a-4aca-8669-88e2e85c12f5 status: 200 OK code: 200 - duration: 582.94884ms + duration: 116.352394ms - id: 29 request: proto: HTTP/1.1 @@ -1454,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/block/v1alpha1/zones/fr-par-1/snapshots/bed651bd-bdee-41c5-a5c5-b1f8026fd101 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e11b0632-3875-485c-8721-fb1ba7fe7a8f method: GET response: proto: HTTP/2.0 @@ -1462,31 +1230,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 694 + content_length: 686 uncompressed: false - 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"}' + body: '{"id":"e11b0632-3875-485c-8721-fb1ba7fe7a8f", "name":"tf-snapshot-laughing-wu", "parent_volume":{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.154831Z", "updated_at":"2025-10-29T22:54:42.687961Z", "references":[{"id":"78bb0ff8-6831-4253-96cd-ccd428c6beff", "product_resource_type":"instance_image", "product_resource_id":"4b0b3b8b-354a-436f-b306-5bb24ae35d34", "created_at":"2025-10-29T22:54:42.687961Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "694" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "686" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a09d8bb0-3fc2-4a3e-842e-0bd788ece7f8 + - 383936a5-62e6-4827-b54e-839ff3579391 status: 200 OK code: 200 - duration: 596.603355ms + duration: 489.244883ms - id: 30 request: proto: HTTP/1.1 @@ -1503,7 +1263,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d method: GET response: proto: HTTP/2.0 @@ -1511,31 +1271,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 690 + content_length: 694 uncompressed: false - 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"}' + body: '{"id":"98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "name":"tf-snapshot-optimistic-napier", "parent_volume":{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.763092Z", "updated_at":"2025-10-29T22:54:42.933072Z", "references":[{"id":"d2ae619d-7152-44a0-bfbc-00ca2417d324", "product_resource_type":"instance_image", "product_resource_id":"4b0b3b8b-354a-436f-b306-5bb24ae35d34", "created_at":"2025-10-29T22:54:42.933072Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "690" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "694" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5b592758-47ea-42cc-a74b-1cfdd19a0254 + - 531718a9-7fb2-462f-8e51-ffd5309c66fc status: 200 OK code: 200 - duration: 593.58704ms + duration: 489.180402ms - id: 31 request: proto: HTTP/1.1 @@ -1552,7 +1304,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 method: GET response: proto: HTTP/2.0 @@ -1560,31 +1312,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 807 + content_length: 692 uncompressed: false - 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"}}' + body: '{"id":"7bf72fef-df61-4543-b67d-f8675609f590", "name":"tf-snapshot-zen-tesla", "parent_volume":{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "status":"available"}, "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.130832Z", "updated_at":"2025-10-29T22:54:43.109442Z", "references":[{"id":"9464011d-f715-4895-a36c-cfeecfaa1f5f", "product_resource_type":"instance_image", "product_resource_id":"4b0b3b8b-354a-436f-b306-5bb24ae35d34", "created_at":"2025-10-29T22:54:43.109442Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "807" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "692" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0059fe83-1fee-4e5a-9e8a-36e86973d410 + - 7c56c44a-6659-43a6-a755-e8de357ee78f status: 200 OK code: 200 - duration: 148.433741ms + duration: 489.155486ms - id: 32 request: proto: HTTP/1.1 @@ -1601,7 +1345,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c7d507b8-5c10-44c5-92bf-998cd7febcb3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 method: GET response: proto: HTTP/2.0 @@ -1609,31 +1353,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 429 + content_length: 807 uncompressed: false - 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"}' + body: '{"image": {"id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34", "name": "tf-test-image-external-block-volume", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "e11b0632-3875-485c-8721-fb1ba7fe7a8f", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "size": 0, "name": ""}, "2": {"volume_type": "sbs_snapshot", "id": "7bf72fef-df61-4543-b67d-f8675609f590", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:42.622488+00:00", "modification_date": "2025-10-29T22:54:42.622488+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "429" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "807" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8c1a95a9-711e-4bed-b6d7-f76b27291e42 + - b686a9bf-3ac5-4753-b8cc-e1b6c1d4bfd3 status: 200 OK code: 200 - duration: 85.447031ms + duration: 113.324942ms - id: 33 request: proto: HTTP/1.1 @@ -1650,7 +1386,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/187b3b16-c727-409b-a42e-154628b6e9b2 method: GET response: proto: HTTP/2.0 @@ -1658,31 +1394,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 424 uncompressed: false - 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"}' + body: '{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.267133Z", "updated_at":"2025-10-29T22:54:30.267133Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "424" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - da3e89a5-eb34-4418-a818-8154b1bbc2ae + - e8063586-0ba8-42f4-bd34-7b6f487f2079 status: 200 OK code: 200 - duration: 100.36772ms + duration: 110.760326ms - id: 34 request: proto: HTTP/1.1 @@ -1699,7 +1427,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb663627-91ea-408c-aa6c-0d933b7056a4 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c04b1432-7023-48b1-9480-a9dcdf56b57a method: GET response: proto: HTTP/2.0 @@ -1707,31 +1435,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 429 uncompressed: false - 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"}' + body: '{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.294202Z", "updated_at":"2025-10-29T22:54:30.294202Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "429" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 44259042-3d81-4677-9b80-03a6def2de92 + - 28bf5cc1-a9cd-4476-82d3-11aa8489f9f7 status: 200 OK code: 200 - duration: 102.291657ms + duration: 110.94978ms - id: 35 request: proto: HTTP/1.1 @@ -1748,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/snapshots/bed651bd-bdee-41c5-a5c5-b1f8026fd101 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/86ec5311-049c-4d62-9764-7c55f92a48ef method: GET response: proto: HTTP/2.0 @@ -1756,31 +1476,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 694 + content_length: 421 uncompressed: false - 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"}' + body: '{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.293052Z", "updated_at":"2025-10-29T22:54:30.293052Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "694" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "421" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5393ab7a-314a-40f7-9b3d-2c065b01d7e4 + - 0ac40c10-d920-4f50-af9e-59e48528ddf0 status: 200 OK code: 200 - duration: 619.252485ms + duration: 110.776096ms - id: 36 request: proto: HTTP/1.1 @@ -1797,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/block/v1alpha1/zones/fr-par-1/snapshots/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e11b0632-3875-485c-8721-fb1ba7fe7a8f method: GET response: proto: HTTP/2.0 @@ -1805,31 +1517,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 690 + content_length: 686 uncompressed: false - 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"}' + body: '{"id":"e11b0632-3875-485c-8721-fb1ba7fe7a8f", "name":"tf-snapshot-laughing-wu", "parent_volume":{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.154831Z", "updated_at":"2025-10-29T22:54:42.687961Z", "references":[{"id":"78bb0ff8-6831-4253-96cd-ccd428c6beff", "product_resource_type":"instance_image", "product_resource_id":"4b0b3b8b-354a-436f-b306-5bb24ae35d34", "created_at":"2025-10-29T22:54:42.687961Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "690" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "686" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c6698297-8d98-4b75-9f09-c042469bae5d + - 0c0f01bd-f0dd-48be-885d-898490572e0b status: 200 OK code: 200 - duration: 605.260247ms + duration: 491.00088ms - id: 37 request: proto: HTTP/1.1 @@ -1846,7 +1550,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/33e21df4-4f28-4da2-9f78-d82dcf19c93e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d method: GET response: proto: HTTP/2.0 @@ -1854,31 +1558,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 694 uncompressed: false - 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"}' + body: '{"id":"98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "name":"tf-snapshot-optimistic-napier", "parent_volume":{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.763092Z", "updated_at":"2025-10-29T22:54:42.933072Z", "references":[{"id":"d2ae619d-7152-44a0-bfbc-00ca2417d324", "product_resource_type":"instance_image", "product_resource_id":"4b0b3b8b-354a-436f-b306-5bb24ae35d34", "created_at":"2025-10-29T22:54:42.933072Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "697" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "694" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 88a6da39-91d6-4287-a501-808765f19d74 + - 4d5145f1-fccc-4593-92ad-02827f5d37fb status: 200 OK code: 200 - duration: 606.814872ms + duration: 491.070149ms - id: 38 request: proto: HTTP/1.1 @@ -1895,7 +1591,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 method: GET response: proto: HTTP/2.0 @@ -1903,31 +1599,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 807 + content_length: 692 uncompressed: false - 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"}}' + body: '{"id":"7bf72fef-df61-4543-b67d-f8675609f590", "name":"tf-snapshot-zen-tesla", "parent_volume":{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "status":"available"}, "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.130832Z", "updated_at":"2025-10-29T22:54:43.109442Z", "references":[{"id":"9464011d-f715-4895-a36c-cfeecfaa1f5f", "product_resource_type":"instance_image", "product_resource_id":"4b0b3b8b-354a-436f-b306-5bb24ae35d34", "created_at":"2025-10-29T22:54:43.109442Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "807" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "692" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 316d98da-0484-4304-8d57-f604332e0894 + - 87852281-22d2-42ab-9ea2-cae61a03d7c1 status: 200 OK code: 200 - duration: 123.067533ms + duration: 491.05442ms - id: 39 request: proto: HTTP/1.1 @@ -1944,7 +1632,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 method: GET response: proto: HTTP/2.0 @@ -1954,29 +1642,21 @@ interactions: trailer: {} content_length: 807 uncompressed: false - 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"}}' + body: '{"image": {"id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34", "name": "tf-test-image-external-block-volume", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "e11b0632-3875-485c-8721-fb1ba7fe7a8f", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "size": 0, "name": ""}, "2": {"volume_type": "sbs_snapshot", "id": "7bf72fef-df61-4543-b67d-f8675609f590", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:42.622488+00:00", "modification_date": "2025-10-29T22:54:42.622488+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "807" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7bfd0cc6-7a38-4a56-853c-002ae96713cf + - 3bb8c1d5-881c-4e08-aed0-26e90d704f67 status: 200 OK code: 200 - duration: 131.593003ms + duration: 133.854322ms - id: 40 request: proto: HTTP/1.1 @@ -1993,7 +1673,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 method: GET response: proto: HTTP/2.0 @@ -2003,49 +1683,39 @@ interactions: trailer: {} content_length: 807 uncompressed: false - 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"}}' + body: '{"image": {"id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34", "name": "tf-test-image-external-block-volume", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "e11b0632-3875-485c-8721-fb1ba7fe7a8f", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "size": 0, "name": ""}, "2": {"volume_type": "sbs_snapshot", "id": "7bf72fef-df61-4543-b67d-f8675609f590", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:42.622488+00:00", "modification_date": "2025-10-29T22:54:42.622488+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "807" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 44e18160-5717-4f65-9244-fee7641a41cf + - d27602d9-7e76-4019-bc30-08b0e01a75df status: 200 OK code: 200 - duration: 135.096491ms + duration: 184.967331ms - id: 41 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 72 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-test-image-external-block-volume","arch":"x86_64","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/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 - method: PATCH + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -2054,47 +1724,41 @@ interactions: trailer: {} content_length: 807 uncompressed: false - 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"}}' + body: '{"image": {"id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34", "name": "tf-test-image-external-block-volume", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "e11b0632-3875-485c-8721-fb1ba7fe7a8f", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "size": 0, "name": ""}, "2": {"volume_type": "sbs_snapshot", "id": "7bf72fef-df61-4543-b67d-f8675609f590", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:42.622488+00:00", "modification_date": "2025-10-29T22:54:42.622488+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "807" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b76a9c6a-29c4-4f8a-948e-2792fdcdb5ec + - 21c643bb-9077-467d-a059-eef050f435c3 status: 200 OK code: 200 - duration: 147.31237ms + duration: 130.721944ms - id: 42 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 72 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-test-image-external-block-volume","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/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -2103,29 +1767,21 @@ interactions: trailer: {} content_length: 807 uncompressed: false - 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"}}' + body: '{"image": {"id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34", "name": "tf-test-image-external-block-volume", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "e11b0632-3875-485c-8721-fb1ba7fe7a8f", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "size": 0, "name": ""}, "2": {"volume_type": "sbs_snapshot", "id": "7bf72fef-df61-4543-b67d-f8675609f590", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:42.622488+00:00", "modification_date": "2025-10-29T22:54:42.622488+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "807" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 27db18e5-bf4b-40d3-a731-13f3d007f949 + - f5f36f66-2446-4a90-9eb5-2c91bc32cf1d status: 200 OK code: 200 - duration: 112.806288ms + duration: 146.37245ms - id: 43 request: proto: HTTP/1.1 @@ -2142,7 +1798,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 method: GET response: proto: HTTP/2.0 @@ -2152,29 +1808,21 @@ interactions: trailer: {} content_length: 807 uncompressed: false - 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"}}' + body: '{"image": {"id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34", "name": "tf-test-image-external-block-volume", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "e11b0632-3875-485c-8721-fb1ba7fe7a8f", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "size": 0, "name": ""}, "2": {"volume_type": "sbs_snapshot", "id": "7bf72fef-df61-4543-b67d-f8675609f590", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:42.622488+00:00", "modification_date": "2025-10-29T22:54:42.622488+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "807" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 44c568d4-3659-47b6-ab77-672e7d3a460b + - b39c5ee7-657d-4824-a788-388aed83c381 status: 200 OK code: 200 - duration: 137.537015ms + duration: 115.701878ms - id: 44 request: proto: HTTP/1.1 @@ -2191,7 +1839,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 method: GET response: proto: HTTP/2.0 @@ -2201,29 +1849,21 @@ interactions: trailer: {} content_length: 807 uncompressed: false - 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"}}' + body: '{"image": {"id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34", "name": "tf-test-image-external-block-volume", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "e11b0632-3875-485c-8721-fb1ba7fe7a8f", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "size": 0, "name": ""}, "2": {"volume_type": "sbs_snapshot", "id": "7bf72fef-df61-4543-b67d-f8675609f590", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:42.622488+00:00", "modification_date": "2025-10-29T22:54:42.622488+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "807" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 380712e9-c292-4e1d-af22-00b841519319 + - b467ded8-577a-4404-befa-f53d95dedcab status: 200 OK code: 200 - duration: 122.791677ms + duration: 147.797195ms - id: 45 request: proto: HTTP/1.1 @@ -2240,7 +1880,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 method: GET response: proto: HTTP/2.0 @@ -2248,31 +1888,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 807 uncompressed: false - 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"}' + body: '{"image": {"id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34", "name": "tf-test-image-external-block-volume", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "e11b0632-3875-485c-8721-fb1ba7fe7a8f", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "size": 0, "name": ""}, "2": {"volume_type": "sbs_snapshot", "id": "7bf72fef-df61-4543-b67d-f8675609f590", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:42.622488+00:00", "modification_date": "2025-10-29T22:54:42.622488+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "807" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 75cc42f0-8f32-405c-a896-0e5c7dc164d4 + - ca6e5914-e8b7-42a6-bde6-c8501d4d801b status: 200 OK code: 200 - duration: 77.198571ms + duration: 122.704091ms - id: 46 request: proto: HTTP/1.1 @@ -2289,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/block/v1alpha1/zones/fr-par-1/volumes/c7d507b8-5c10-44c5-92bf-998cd7febcb3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/187b3b16-c727-409b-a42e-154628b6e9b2 method: GET response: proto: HTTP/2.0 @@ -2297,31 +1929,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 429 + content_length: 424 uncompressed: false - 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"}' + body: '{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.267133Z", "updated_at":"2025-10-29T22:54:30.267133Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "429" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "424" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0a4a95c3-3069-4805-a0a9-47d6ba222953 + - 2947ec26-7860-4eb3-9b80-5cae60b43037 status: 200 OK code: 200 - duration: 77.453288ms + duration: 79.425803ms - id: 47 request: proto: HTTP/1.1 @@ -2338,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/fb663627-91ea-408c-aa6c-0d933b7056a4 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c04b1432-7023-48b1-9480-a9dcdf56b57a method: GET response: proto: HTTP/2.0 @@ -2346,31 +1970,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 429 uncompressed: false - 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"}' + body: '{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.294202Z", "updated_at":"2025-10-29T22:54:30.294202Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "429" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa45b967-fd5f-416c-821c-83cf96284799 + - 99c6b76c-085a-42cb-b128-5d399d587471 status: 200 OK code: 200 - duration: 85.138855ms + duration: 79.470446ms - id: 48 request: proto: HTTP/1.1 @@ -2387,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/block/v1alpha1/zones/fr-par-1/snapshots/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/86ec5311-049c-4d62-9764-7c55f92a48ef method: GET response: proto: HTTP/2.0 @@ -2395,31 +2011,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 690 + content_length: 421 uncompressed: false - 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"}' + body: '{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.293052Z", "updated_at":"2025-10-29T22:54:30.293052Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "690" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "421" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4cc99485-1729-42f5-a18b-7503edb8d120 + - 12f3431d-3a0e-4e82-a293-004e1e2f19b1 status: 200 OK code: 200 - duration: 734.676313ms + duration: 81.385017ms - id: 49 request: proto: HTTP/1.1 @@ -2436,7 +2044,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/33e21df4-4f28-4da2-9f78-d82dcf19c93e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 method: GET response: proto: HTTP/2.0 @@ -2444,31 +2052,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 692 uncompressed: false - 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"}' + body: '{"id":"7bf72fef-df61-4543-b67d-f8675609f590", "name":"tf-snapshot-zen-tesla", "parent_volume":{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "status":"available"}, "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.130832Z", "updated_at":"2025-10-29T22:54:43.109442Z", "references":[{"id":"9464011d-f715-4895-a36c-cfeecfaa1f5f", "product_resource_type":"instance_image", "product_resource_id":"4b0b3b8b-354a-436f-b306-5bb24ae35d34", "created_at":"2025-10-29T22:54:43.109442Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "697" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "692" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4ad4638f-59b0-4851-992e-938cb6fe6552 + - 2c343736-4f72-46a1-8a7a-111c3438fc6c status: 200 OK code: 200 - duration: 742.791955ms + duration: 256.279733ms - id: 50 request: proto: HTTP/1.1 @@ -2485,7 +2085,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/bed651bd-bdee-41c5-a5c5-b1f8026fd101 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d method: GET response: proto: HTTP/2.0 @@ -2495,29 +2095,21 @@ interactions: trailer: {} content_length: 694 uncompressed: false - 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"}' + body: '{"id":"98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "name":"tf-snapshot-optimistic-napier", "parent_volume":{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.763092Z", "updated_at":"2025-10-29T22:54:42.933072Z", "references":[{"id":"d2ae619d-7152-44a0-bfbc-00ca2417d324", "product_resource_type":"instance_image", "product_resource_id":"4b0b3b8b-354a-436f-b306-5bb24ae35d34", "created_at":"2025-10-29T22:54:42.933072Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - "694" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 439fd1d6-8e83-4bf6-b310-479dc25a0fd3 + - 298329b0-09b4-41fc-8f99-32035a11498a status: 200 OK code: 200 - duration: 747.961997ms + duration: 256.111178ms - id: 51 request: proto: HTTP/1.1 @@ -2534,7 +2126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e11b0632-3875-485c-8721-fb1ba7fe7a8f method: GET response: proto: HTTP/2.0 @@ -2542,31 +2134,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 807 + content_length: 686 uncompressed: false - 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"}}' + body: '{"id":"e11b0632-3875-485c-8721-fb1ba7fe7a8f", "name":"tf-snapshot-laughing-wu", "parent_volume":{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.154831Z", "updated_at":"2025-10-29T22:54:42.687961Z", "references":[{"id":"78bb0ff8-6831-4253-96cd-ccd428c6beff", "product_resource_type":"instance_image", "product_resource_id":"4b0b3b8b-354a-436f-b306-5bb24ae35d34", "created_at":"2025-10-29T22:54:42.687961Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "807" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "686" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f2854fb4-8da2-449d-a03a-024aaf67b133 + - 3622cdf1-9f29-47dd-acb9-950ee8c7a685 status: 200 OK code: 200 - duration: 194.98701ms + duration: 261.614669ms - id: 52 request: proto: HTTP/1.1 @@ -2583,7 +2167,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 method: GET response: proto: HTTP/2.0 @@ -2593,29 +2177,21 @@ interactions: trailer: {} content_length: 807 uncompressed: false - 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"}}' + body: '{"image": {"id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34", "name": "tf-test-image-external-block-volume", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "e11b0632-3875-485c-8721-fb1ba7fe7a8f", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "size": 0, "name": ""}, "2": {"volume_type": "sbs_snapshot", "id": "7bf72fef-df61-4543-b67d-f8675609f590", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:42.622488+00:00", "modification_date": "2025-10-29T22:54:42.622488+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "807" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5a6a0493-73d2-44b4-b18c-6bd117d5b696 + - e79f4b17-826f-4104-adcc-57b3d1007c78 status: 200 OK code: 200 - duration: 125.224949ms + duration: 138.324521ms - id: 53 request: proto: HTTP/1.1 @@ -2632,7 +2208,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 method: GET response: proto: HTTP/2.0 @@ -2640,31 +2216,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 690 + content_length: 807 uncompressed: false - 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"}' + body: '{"image": {"id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34", "name": "tf-test-image-external-block-volume", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "e11b0632-3875-485c-8721-fb1ba7fe7a8f", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "size": 0, "name": ""}, "2": {"volume_type": "sbs_snapshot", "id": "7bf72fef-df61-4543-b67d-f8675609f590", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:42.622488+00:00", "modification_date": "2025-10-29T22:54:42.622488+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "690" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "807" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8f32a428-aaf0-4e18-9fc7-b60078c1c7e2 + - 8afe971f-bac8-4774-878f-0accc3b05c90 status: 200 OK code: 200 - duration: 686.307781ms + duration: 162.004202ms - id: 54 request: proto: HTTP/1.1 @@ -2681,37 +2249,31 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d + 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: '{"id":"98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "name":"tf-snapshot-optimistic-napier", "parent_volume":{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.763092Z", "updated_at":"2025-10-29T22:54:42.933072Z", "references":[{"id":"d2ae619d-7152-44a0-bfbc-00ca2417d324", "product_resource_type":"instance_image", "product_resource_id":"4b0b3b8b-354a-436f-b306-5bb24ae35d34", "created_at":"2025-10-29T22:54:42.933072Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "694" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e1de99ab-1a59-438c-9913-bd96320271fb - status: 204 No Content - code: 204 - duration: 587.680851ms + - c9378b90-699c-4a1f-9e26-ec90cc11b086 + status: 200 OK + code: 200 + duration: 299.858444ms - id: 55 request: proto: HTTP/1.1 @@ -2728,7 +2290,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/bed651bd-bdee-41c5-a5c5-b1f8026fd101 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 method: GET response: proto: HTTP/2.0 @@ -2736,31 +2298,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 694 + content_length: 692 uncompressed: false - 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"}' + body: '{"id":"7bf72fef-df61-4543-b67d-f8675609f590", "name":"tf-snapshot-zen-tesla", "parent_volume":{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "status":"available"}, "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.130832Z", "updated_at":"2025-10-29T22:54:43.109442Z", "references":[{"id":"9464011d-f715-4895-a36c-cfeecfaa1f5f", "product_resource_type":"instance_image", "product_resource_id":"4b0b3b8b-354a-436f-b306-5bb24ae35d34", "created_at":"2025-10-29T22:54:43.109442Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "694" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "692" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 64f1b34b-4b83-4b68-a39f-e73ed4aa4f1e + - 466542f4-fd8a-4991-a7df-eee79a315abc status: 200 OK code: 200 - duration: 725.24987ms + duration: 311.764157ms - id: 56 request: proto: HTTP/1.1 @@ -2777,39 +2331,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 142 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","type":"not_found"}' + body: "" headers: - Content-Length: - - "142" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9f62557b-2d24-46cb-9c4c-504b6486da2e - status: 404 Not Found - code: 404 - duration: 25.573398ms + - 6527f471-27aa-4635-b1b8-d30a67921bcd + status: 204 No Content + code: 204 + duration: 776.847316ms - id: 57 request: proto: HTTP/1.1 @@ -2826,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/block/v1alpha1/zones/fr-par-1/snapshots/33e21df4-4f28-4da2-9f78-d82dcf19c93e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 method: GET response: proto: HTTP/2.0 @@ -2834,31 +2378,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 142 uncompressed: false - 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34"}' headers: Content-Length: - - "697" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "142" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ff10eb85-8243-4ced-89d7-1b261b4b59bd - status: 200 OK - code: 200 - duration: 364.739149ms + - e3e11a5a-a9ff-46c7-9813-02218d6285bc + status: 404 Not Found + code: 404 + duration: 42.263872ms - id: 58 request: proto: HTTP/1.1 @@ -2875,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/snapshots/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e11b0632-3875-485c-8721-fb1ba7fe7a8f method: GET response: proto: HTTP/2.0 @@ -2883,31 +2419,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 464 + content_length: 457 uncompressed: false - 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"}' + body: '{"id":"e11b0632-3875-485c-8721-fb1ba7fe7a8f", "name":"tf-snapshot-laughing-wu", "parent_volume":{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.154831Z", "updated_at":"2025-10-29T22:54:42.687961Z", "references":[], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "464" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "457" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:17 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b38d8a1c-4bd9-4536-885f-2a23554a8a30 + - ba1e04b3-381f-482b-a33d-e38b18c475ed status: 200 OK code: 200 - duration: 891.887542ms + duration: 185.857357ms - id: 59 request: proto: HTTP/1.1 @@ -2924,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/block/v1alpha1/zones/fr-par-1/snapshots/bed651bd-bdee-41c5-a5c5-b1f8026fd101 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d method: GET response: proto: HTTP/2.0 @@ -2934,29 +2462,21 @@ interactions: trailer: {} content_length: 468 uncompressed: false - 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"}' + body: '{"id":"98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d", "name":"tf-snapshot-optimistic-napier", "parent_volume":{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.763092Z", "updated_at":"2025-10-29T22:54:48.961386Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - "468" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:17 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dbb666b0-155b-437c-8caa-9bdcc357872b + - fde4552e-25ca-4b9e-94b5-a55e3be5dc16 status: 200 OK code: 200 - duration: 855.610086ms + duration: 274.535785ms - id: 60 request: proto: HTTP/1.1 @@ -2973,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/block/v1alpha1/zones/fr-par-1/snapshots/33e21df4-4f28-4da2-9f78-d82dcf19c93e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 method: GET response: proto: HTTP/2.0 @@ -2981,31 +2501,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 471 + content_length: 466 uncompressed: false - 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"}' + body: '{"id":"7bf72fef-df61-4543-b67d-f8675609f590", "name":"tf-snapshot-zen-tesla", "parent_volume":{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "status":"available"}, "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.130832Z", "updated_at":"2025-10-29T22:54:49.034701Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "471" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "466" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:17 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 99b735b6-9d20-409b-bef9-3201498e4b79 + - 45ca81d0-127a-4ef1-962e-9542a9e9eca5 status: 200 OK code: 200 - duration: 1.109227309s + duration: 261.364475ms - id: 61 request: proto: HTTP/1.1 @@ -3022,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/block/v1alpha1/zones/fr-par-1/snapshots/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 method: DELETE response: proto: HTTP/2.0 @@ -3034,25 +2546,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:17 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e89d5ac0-025a-4c2c-9b3e-3ae833ba21b4 + - 42656251-a253-4b84-80d5-eef6ade1b75c status: 204 No Content code: 204 - duration: 789.249454ms + duration: 294.197833ms - id: 62 request: proto: HTTP/1.1 @@ -3069,39 +2573,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d + 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":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","type":"not_found"}' + body: "" headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:17 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9d51e072-e2b5-4b22-91ff-781acaf18ee5 - status: 404 Not Found - code: 404 - duration: 87.819516ms + - 294cd2c8-b335-44a4-8424-6601f7795364 + status: 204 No Content + code: 204 + duration: 294.300996ms - id: 63 request: proto: HTTP/1.1 @@ -3118,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/block/v1alpha1/zones/fr-par-1/volumes/fb663627-91ea-408c-aa6c-0d933b7056a4 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 method: GET response: proto: HTTP/2.0 @@ -3126,31 +2620,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 129 uncompressed: false - 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"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"7bf72fef-df61-4543-b67d-f8675609f590","type":"not_found"}' headers: Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "129" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 16b0b394-d153-443e-9ba1-20b9fdfe6fbc - status: 200 OK - code: 200 - duration: 131.281891ms + - fb9f9e5b-5f30-4df8-9596-6ca40cc29786 + status: 404 Not Found + code: 404 + duration: 68.377374ms - id: 64 request: proto: HTTP/1.1 @@ -3167,37 +2653,31 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb663627-91ea-408c-aa6c-0d933b7056a4 - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 129 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d","type":"not_found"}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "129" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3a5c5ffa-f555-41d8-abd2-2c6204dfaff3 - status: 204 No Content - code: 204 - duration: 198.600568ms + - 5932c5ed-4f13-4348-8e8a-03d269c0aa13 + status: 404 Not Found + code: 404 + duration: 72.921262ms - id: 65 request: proto: HTTP/1.1 @@ -3214,37 +2694,31 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/33e21df4-4f28-4da2-9f78-d82dcf19c93e - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c04b1432-7023-48b1-9480-a9dcdf56b57a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 429 uncompressed: false - body: "" + body: '{"id":"c04b1432-7023-48b1-9480-a9dcdf56b57a", "name":"tf-volume-compassionate-perlman", "type":"sbs_5k", "size":40000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.294202Z", "updated_at":"2025-10-29T22:54:30.294202Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "429" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dd17fe97-a11f-49cc-b740-5913b9c11947 - status: 204 No Content - code: 204 - duration: 802.747842ms + - 86076057-a65c-464f-9f76-3f703fbf5ff2 + status: 200 OK + code: 200 + duration: 107.383785ms - id: 66 request: proto: HTTP/1.1 @@ -3261,37 +2735,31 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/bed651bd-bdee-41c5-a5c5-b1f8026fd101 - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/187b3b16-c727-409b-a42e-154628b6e9b2 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 424 uncompressed: false - body: "" + body: '{"id":"187b3b16-c727-409b-a42e-154628b6e9b2", "name":"tf-volume-boring-hermann", "type":"sbs_15k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.267133Z", "updated_at":"2025-10-29T22:54:30.267133Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "424" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 76f84516-32c2-4022-bdae-3bf84d17ba44 - status: 204 No Content - code: 204 - duration: 1.441033199s + - b35ed3c0-dee3-49de-ad7f-05538e348b5d + status: 200 OK + code: 200 + duration: 104.683546ms - id: 67 request: proto: HTTP/1.1 @@ -3308,39 +2776,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb663627-91ea-408c-aa6c-0d933b7056a4 - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c04b1432-7023-48b1-9480-a9dcdf56b57a + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 127 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"fb663627-91ea-408c-aa6c-0d933b7056a4","type":"not_found"}' + body: "" headers: - Content-Length: - - "127" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1def777f-a374-4b7c-9ffe-537575499a29 - status: 404 Not Found - code: 404 - duration: 226.170299ms + - c32c6cbc-875d-45d1-86a3-1fc7a4afc593 + status: 204 No Content + code: 204 + duration: 154.07619ms - id: 68 request: proto: HTTP/1.1 @@ -3357,39 +2815,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/bed651bd-bdee-41c5-a5c5-b1f8026fd101 - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/187b3b16-c727-409b-a42e-154628b6e9b2 + 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":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","type":"not_found"}' + body: "" headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aae1d240-71e2-4727-9f2b-3c831abea6c8 - status: 404 Not Found - code: 404 - duration: 71.676796ms + - f48e6f53-890c-48d3-9d18-713e9bf641bc + status: 204 No Content + code: 204 + duration: 189.945524ms - id: 69 request: proto: HTTP/1.1 @@ -3406,7 +2854,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/33e21df4-4f28-4da2-9f78-d82dcf19c93e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c04b1432-7023-48b1-9480-a9dcdf56b57a method: GET response: proto: HTTP/2.0 @@ -3414,31 +2862,23 @@ 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":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"c04b1432-7023-48b1-9480-a9dcdf56b57a","type":"not_found"}' headers: Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "127" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 07e2383d-7ca5-4644-9b89-046501bdc976 + - 473c7520-bd67-4b17-98ae-06ca65db4927 status: 404 Not Found code: 404 - duration: 122.416672ms + duration: 91.865747ms - id: 70 request: proto: HTTP/1.1 @@ -3455,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/block/v1alpha1/zones/fr-par-1/volumes/c7d507b8-5c10-44c5-92bf-998cd7febcb3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/187b3b16-c727-409b-a42e-154628b6e9b2 method: GET response: proto: HTTP/2.0 @@ -3463,31 +2903,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 429 + content_length: 127 uncompressed: false - 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"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"187b3b16-c727-409b-a42e-154628b6e9b2","type":"not_found"}' headers: Content-Length: - - "429" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "127" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ea3eb129-5d74-4339-8731-15eedeaf44f4 - status: 200 OK - code: 200 - duration: 117.208149ms + - af4ee66e-51ea-4d6a-abdd-ab99aa52e31b + status: 404 Not Found + code: 404 + duration: 80.063748ms - id: 71 request: proto: HTTP/1.1 @@ -3504,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/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e11b0632-3875-485c-8721-fb1ba7fe7a8f method: GET response: proto: HTTP/2.0 @@ -3512,31 +2944,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 460 uncompressed: false - 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"}' + body: '{"id":"e11b0632-3875-485c-8721-fb1ba7fe7a8f", "name":"tf-snapshot-laughing-wu", "parent_volume":{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "status":"available"}, "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:36.154831Z", "updated_at":"2025-10-29T22:54:49.122349Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "460" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae98d965-3181-4e50-949c-dc32642f9773 + - 8055f088-747a-45e8-b17b-a198e314604f status: 200 OK code: 200 - duration: 89.945071ms + duration: 228.637818ms - id: 72 request: proto: HTTP/1.1 @@ -3553,7 +2977,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c7d507b8-5c10-44c5-92bf-998cd7febcb3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e11b0632-3875-485c-8721-fb1ba7fe7a8f method: DELETE response: proto: HTTP/2.0 @@ -3565,25 +2989,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f71bd711-b42c-4e81-83eb-e73c119d9a73 + - d09e8c5e-ebdc-447c-a4e7-04d266bb8491 status: 204 No Content code: 204 - duration: 160.000698ms + duration: 258.245884ms - id: 73 request: proto: HTTP/1.1 @@ -3600,37 +3016,31 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e11b0632-3875-485c-8721-fb1ba7fe7a8f + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 129 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"e11b0632-3875-485c-8721-fb1ba7fe7a8f","type":"not_found"}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "129" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4738865f-2f76-4ba3-b0da-99c543dc8d48 - status: 204 No Content - code: 204 - duration: 171.126384ms + - 39e0b017-0ac9-47cc-bc8a-0113fae6ea53 + status: 404 Not Found + code: 404 + duration: 82.422008ms - id: 74 request: proto: HTTP/1.1 @@ -3647,7 +3057,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/86ec5311-049c-4d62-9764-7c55f92a48ef method: GET response: proto: HTTP/2.0 @@ -3655,31 +3065,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 127 + content_length: 421 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","type":"not_found"}' + body: '{"id":"86ec5311-049c-4d62-9764-7c55f92a48ef", "name":"tf-volume-goofy-khayyam", "type":"sbs_5k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.293052Z", "updated_at":"2025-10-29T22:54:30.293052Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "127" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "421" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6de74901-5e28-4c36-b28a-b46292c6f731 - status: 404 Not Found - code: 404 - duration: 70.897194ms + - deeecc5c-5b37-4d1f-968e-ed1b84675ae0 + status: 200 OK + code: 200 + duration: 93.412559ms - id: 75 request: proto: HTTP/1.1 @@ -3696,7 +3098,46 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c7d507b8-5c10-44c5-92bf-998cd7febcb3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/86ec5311-049c-4d62-9764-7c55f92a48ef + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:54:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 9aceb941-7ffd-4c12-b20e-d17ba4f082b6 + status: 204 No Content + code: 204 + duration: 183.348087ms + - 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/86ec5311-049c-4d62-9764-7c55f92a48ef method: GET response: proto: HTTP/2.0 @@ -3706,30 +3147,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"86ec5311-049c-4d62-9764-7c55f92a48ef","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:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bc65f26b-142c-4d88-bfa2-5e705b44fd1a + - 2f6a9271-da32-4e75-8ef5-82428cb0b1b5 status: 404 Not Found code: 404 - duration: 141.719709ms - - id: 76 + duration: 61.545378ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3745,7 +3178,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 method: GET response: proto: HTTP/2.0 @@ -3755,26 +3188,18 @@ interactions: trailer: {} content_length: 142 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34"}' headers: Content-Length: - "142" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ade1bad0-614e-4cda-b520-2072938fc804 + - eaa717f5-a412-4dba-9ba6-226b8a8a957a status: 404 Not Found code: 404 - duration: 39.753953ms + duration: 36.726618ms 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 880ddf231..b0a0cb5ec 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 @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e75f38da-5cae-47c4-a0be-f019d74c0b6d + - 6580a257-099a-4867-bd57-3096a8f55173 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 43.507997ms + duration: 35.676751ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -78,35 +74,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d32f1a99-37e2-4011-9354-c4e3e846fe03 + - 97d99a97-d8ea-4950-9150-869896d2ec91 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 47.220825ms + duration: 46.294485ms - id: 2 request: proto: HTTP/1.1 @@ -119,11 +107,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -131,35 +121,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 14295 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "14295" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:54:16 GMT Link: - - ; rel="next",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 351b07c4-ec79-4782-93c3-15aaa50d8e5e + - a2d299cd-5c6b-4e71-a1f9-c7de08034c88 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 55.790907ms + duration: 41.561715ms - id: 3 request: proto: HTTP/1.1 @@ -172,11 +154,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 @@ -184,35 +168,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14295 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:54:16 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8fc2a13e-995d-4e30-b9cf-26f8662fb935 + - 608dfff1-94e2-460a-ab44-c98323ae776c X-Total-Count: - "68" status: 200 OK code: 200 - duration: 41.410787ms + duration: 79.321521ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +201,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -239,33 +217,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7bdbe859-f0ed-41b7-b7b5-2c0b545cdc2c + - 2cf720aa-cac8-474e-9900-b6eb7b9f463d X-Total-Count: - "68" status: 200 OK code: 200 - duration: 72.78727ms + duration: 43.595909ms - id: 5 request: proto: HTTP/1.1 @@ -278,11 +248,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -290,35 +268,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14295 + content_length: 423 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}}}}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5a148bc3-188c-487a-8869-4b3f54f1325c - X-Total-Count: - - "68" + - 92ab05e8-b7cb-4e9b-8293-ca7920446adc status: 200 OK code: 200 - duration: 86.274567ms + duration: 53.240994ms - id: 6 request: proto: HTTP/1.1 @@ -331,11 +297,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-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=2 method: GET response: proto: HTTP/2.0 @@ -343,31 +311,27 @@ 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":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "14295" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa7b145f-c28f-4514-a56d-7bce3af8026c + - d9f355b3-f59b-4ac0-9028-7b3161c78b0b + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 55.800285ms + duration: 66.489927ms - id: 7 request: proto: HTTP/1.1 @@ -380,7 +344,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -394,29 +366,21 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5197b61f-7f26-471c-9689-b85b14ec9287 + - ba526c6a-3018-45a8-b15d-e2613be214c1 status: 200 OK code: 200 - duration: 48.379207ms + duration: 58.315432ms - id: 8 request: proto: HTTP/1.1 @@ -429,7 +393,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -443,41 +415,33 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - baa44021-a0c7-475e-9689-411a7a52be36 + - ceb6fcb2-6809-4165-97d0-a22271b7d7e2 status: 200 OK code: 200 - duration: 53.73312ms + duration: 50.596389ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 284 + content_length: 272 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-dreamy-bose","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: @@ -492,45 +456,37 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2184 + content_length: 2148 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: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"}}' + body: '{"server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-dreamy-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:17.044964+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:87", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:17.044964+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2184" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2148" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:54:17 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 02f80094-cf3c-468b-bfa2-ce795b0205ef + - d9be3f0e-f3e5-4236-a5f2-ba6a26111852 status: 201 Created code: 201 - duration: 759.838595ms + duration: 696.022314ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 272 + content_length: 277 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-exciting-goodall","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: @@ -545,33 +501,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2148 + 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-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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:17.137664+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:17.137664+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2163" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:54:17 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 23df4e22-f2a6-4e47-9c3c-ff2d8a325702 + - a2af5510-fe2a-4f1c-9b1b-6c493c0aaa9c status: 201 Created code: 201 - duration: 856.671158ms + duration: 773.458961ms - id: 11 request: proto: HTTP/1.1 @@ -588,7 +536,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 method: GET response: proto: HTTP/2.0 @@ -596,43 +544,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2184 + content_length: 2148 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: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"}}' + body: '{"server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-dreamy-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:17.044964+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:87", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:17.044964+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2184" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2148" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b019f956-2095-4319-944f-708318f10657 + - ddbb2c9b-c6db-49d0-90c3-66c65d178605 status: 200 OK code: 200 - duration: 131.961818ms + duration: 136.393138ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 273 + content_length: 276 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-awesome-keldysh","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: @@ -647,33 +587,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2151 + 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-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"}}' + body: '{"server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-awesome-keldysh", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:17.203381+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:17.203381+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2206" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:54:17 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 61bf404f-8d34-4a83-94e4-0793d8970c9f + - 78b5efed-2832-4f31-9475-736691fe3380 status: 201 Created code: 201 - duration: 941.575646ms + duration: 812.726106ms - id: 13 request: proto: HTTP/1.1 @@ -690,7 +622,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -698,31 +630,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2148 + 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-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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:17.137664+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:17.137664+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2163" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d163fe2a-c660-448e-824f-945f070e97b4 + - de50867e-bd35-40b8-8aa2-d200c7bf3f9b status: 200 OK code: 200 - duration: 129.148205ms + duration: 113.016116ms - id: 14 request: proto: HTTP/1.1 @@ -739,7 +663,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 method: GET response: proto: HTTP/2.0 @@ -747,31 +671,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2184 + content_length: 2148 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: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"}}' + body: '{"server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-dreamy-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:17.044964+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:87", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:17.044964+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2184" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2148" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 127d840a-e43c-4575-99aa-8bae5dfdbbd4 + - c130335e-7dc7-4257-8ad6-8e5ef9f4ff68 status: 200 OK code: 200 - duration: 136.102228ms + duration: 127.570931ms - id: 15 request: proto: HTTP/1.1 @@ -788,7 +704,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -796,182 +712,154 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2151 + content_length: 2209 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: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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:17.137664+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:17.137664+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2209" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 775887b3-5c14-4a42-9a10-3c8360cc745e + - 160f391e-b448-48f0-8d66-26a997559868 status: 200 OK code: 200 - duration: 125.899458ms + duration: 115.893136ms - id: 16 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/7044ca01-7c67-4085-af04-f7482bca7f0a - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2148 + 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-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"}}' + body: '{"task": {"id": "b9e56be9-6f12-45a4-93ae-3acd8915aac3", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/42a9d058-3b14-4d28-a2b0-335b250ac818/action", "href_result": "/servers/42a9d058-3b14-4d28-a2b0-335b250ac818", "started_at": "2025-10-29T22:54:17.693688+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "2148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "357" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:54:17 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b9e56be9-6f12-45a4-93ae-3acd8915aac3 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 310a92e8-e931-45a1-bba2-e81b114d0fd8 - status: 200 OK - code: 200 - duration: 135.138261ms + - df6364bb-7f7f-4d68-9c5a-ccfdc7619241 + status: 202 Accepted + code: 202 + duration: 252.208749ms - id: 17 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/10226f00-dc3a-4832-9fab-d77b4d244af5 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2151 + 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-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"}}' + body: '{"task": {"id": "a273cef4-48ce-41e9-b170-82478abde366", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/78d779c0-0943-4794-9cfb-55cc019d8c65/action", "href_result": "/servers/78d779c0-0943-4794-9cfb-55cc019d8c65", "started_at": "2025-10-29T22:54:17.746496+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "2151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "357" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:54:17 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a273cef4-48ce-41e9-b170-82478abde366 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ba1d7bce-b226-4713-a9ac-f9098e6b4905 - status: 200 OK - code: 200 - duration: 216.921972ms + - bbe2f60e-403c-48a8-8a3a-adfa7318d73f + status: 202 Accepted + code: 202 + duration: 250.650516ms - id: 18 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/c78a1974-594b-49e7-b35d-17ddcef3568a/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2170 uncompressed: false - 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"}}' + body: '{"server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-dreamy-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:17.044964+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:87", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:17.492824+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2170" Content-Type: - application/json Date: - - 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f1cc1fe1-58aa-4038-8581-02df7c981426 - status: 202 Accepted - code: 202 - duration: 245.890782ms + - 2fc62bdd-1942-4fc2-a8ca-2707ba9ab3b6 + status: 200 OK + code: 200 + duration: 126.251245ms - id: 19 request: proto: HTTP/1.1 @@ -988,7 +876,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 method: GET response: proto: HTTP/2.0 @@ -998,82 +886,62 @@ interactions: trailer: {} content_length: 2206 uncompressed: 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.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"}}' + body: '{"server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-awesome-keldysh", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:17.203381+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:17.203381+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - "2206" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5b90c368-15a4-417e-83f3-d1a2a9c766b5 + - 03850284-931c-4ce2-ae16-c7c32a4287ea status: 200 OK code: 200 - duration: 113.521881ms + duration: 477.039314ms - id: 20 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/7044ca01-7c67-4085-af04-f7482bca7f0a/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2231 uncompressed: false - 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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:17.137664+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:17.554212+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2231" Content-Type: - application/json Date: - - 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 75fa46bc-f712-43aa-9a4a-389dd56d2464 - status: 202 Accepted - code: 202 - duration: 255.887236ms + - d1ea785f-b6a8-460d-82de-9b6188ec8ba7 + status: 200 OK + code: 200 + duration: 128.517642ms - id: 21 request: proto: HTTP/1.1 @@ -1090,7 +958,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 method: GET response: proto: HTTP/2.0 @@ -1098,31 +966,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2170 + 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-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"}}' + body: '{"server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-awesome-keldysh", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:17.203381+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:17.203381+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2170" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2160" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b850c910-5c10-4c1d-a147-03781c9e6008 + - 8c2bf885-cbc1-4127-81bb-32d99b390d8b status: 200 OK code: 200 - duration: 118.51013ms + duration: 174.158605ms - id: 22 request: proto: HTTP/1.1 @@ -1141,7 +1001,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/10226f00-dc3a-4832-9fab-d77b4d244af5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/action method: POST response: proto: HTTP/2.0 @@ -1151,31 +1011,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "aad62d9f-f308-46ae-bd1c-274d1a9f2410", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/action", "href_result": "/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "started_at": "2025-10-29T22:54:18.268873+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:54:18 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c91b5307-5a75-4863-ae4f-92155513237c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/aad62d9f-f308-46ae-bd1c-274d1a9f2410 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 06022b54-c112-4424-999c-6b9bf5c75d0c + - 941043c5-334a-4862-8b56-5a035600cb99 status: 202 Accepted code: 202 - duration: 255.229606ms + duration: 272.192317ms - id: 23 request: proto: HTTP/1.1 @@ -1192,7 +1044,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 method: GET response: proto: HTTP/2.0 @@ -1200,31 +1052,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2173 + content_length: 2228 uncompressed: 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":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"}}' + body: '{"server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-awesome-keldysh", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:17.203381+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:18.067597+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2173" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2228" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d4855375-4d07-4ee2-9a47-aae48f935507 + - 46060f37-491e-4ace-aa01-2e57284bfdc3 status: 200 OK code: 200 - duration: 139.456666ms + duration: 132.787016ms - id: 24 request: proto: HTTP/1.1 @@ -1241,7 +1085,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 method: GET response: proto: HTTP/2.0 @@ -1249,31 +1093,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2309 + content_length: 2319 uncompressed: 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.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"}}' + body: '{"server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-dreamy-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:17.044964+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:87", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:17.492824+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "401", "node_id": "34"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2309" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2319" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d0891da3-b8ea-4db5-a9aa-7e52ffcb54b0 + - c623f806-8096-4613-bb0c-c72b36a9e248 status: 200 OK code: 200 - duration: 140.171903ms + duration: 148.098818ms - id: 25 request: proto: HTTP/1.1 @@ -1290,7 +1126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -1298,31 +1134,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 2334 uncompressed: 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.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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:17.137664+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:17.554212+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "501", "node_id": "40"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2274" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2334" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 40fabdb0-e5de-405a-900f-fe8bd9fd3a91 + - db58d790-1de9-4d89-b7ee-18663f803416 status: 200 OK code: 200 - duration: 127.08227ms + duration: 142.715903ms - id: 26 request: proto: HTTP/1.1 @@ -1339,7 +1167,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 method: GET response: proto: HTTP/2.0 @@ -1347,31 +1175,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2331 uncompressed: 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: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"}}' + body: '{"server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-awesome-keldysh", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:17.203381+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:18.067597+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2276" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2331" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b2d15643-f498-42e8-bd71-23d7672b93b0 + - 72522a71-dad6-4711-b5ae-41b3efa2c7cb status: 200 OK code: 200 - duration: 120.610442ms + duration: 134.174352ms - id: 27 request: proto: HTTP/1.1 @@ -1388,7 +1208,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 method: GET response: proto: HTTP/2.0 @@ -1396,31 +1216,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2309 + 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-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"}}' + body: '{"server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-dreamy-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:17.044964+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:87", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:24.923923+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "401", "node_id": "34"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2309" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2350" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 530d5499-1bed-4cf9-ad00-b1836b0d69bf + - 914f3b37-2fc5-44f4-af75-c0e7410c1f09 status: 200 OK code: 200 - duration: 163.747735ms + duration: 142.361282ms - id: 28 request: proto: HTTP/1.1 @@ -1437,7 +1249,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -1445,31 +1257,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 2319 uncompressed: 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.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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:17.137664+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:25.127378+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "501", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2274" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2319" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 21f1a8f2-8528-40fd-9ec9-e3bd43b03337 + - 6bfa7001-0481-427e-abfb-2b6ac3454449 status: 200 OK code: 200 - duration: 137.329462ms + duration: 134.462342ms - id: 29 request: proto: HTTP/1.1 @@ -1486,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/10226f00-dc3a-4832-9fab-d77b4d244af5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 method: GET response: proto: HTTP/2.0 @@ -1494,31 +1298,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + 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-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"}}' + body: '{"server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-dreamy-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:17.044964+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:87", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:24.923923+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "401", "node_id": "34"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2276" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2350" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a990c3a1-02ea-4959-9632-5a81a727baee + - 5c354a8c-cdaa-428e-8ae3-b55f2757140a status: 200 OK code: 200 - duration: 136.835125ms + duration: 135.679849ms - id: 30 request: proto: HTTP/1.1 @@ -1535,7 +1331,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -1543,31 +1339,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2340 + 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-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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:17.137664+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:25.127378+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "501", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2319" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d330ecb5-ff91-4f8b-8b88-1a5ec025ad32 + - 6387e4df-c5e0-4907-ab28-9c7ce74298e6 status: 200 OK code: 200 - duration: 120.898172ms + duration: 123.443689ms - id: 31 request: proto: HTTP/1.1 @@ -1584,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/7044ca01-7c67-4085-af04-f7482bca7f0a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17e3abb0-7064-48d4-902c-ebe15af2816f method: GET response: proto: HTTP/2.0 @@ -1592,31 +1380,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 518 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:17.044964+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "2305" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "518" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a02094c4-6065-4d86-b9c1-0743b039b31c + - 7d6eabed-31dd-4199-a4be-01469a3ed7d6 status: 200 OK code: 200 - duration: 133.150696ms + duration: 97.840844ms - id: 32 request: proto: HTTP/1.1 @@ -1633,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/c78a1974-594b-49e7-b35d-17ddcef3568a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b17c55bd-bb5c-481c-8d20-a8da601b6e46 method: GET response: proto: HTTP/2.0 @@ -1641,31 +1421,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2340 + 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-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"}}' + body: '{"volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:17.137664+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "523" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5902f680-b3c3-4a98-b0be-698f665c06e2 + - cab455da-819b-4b30-917b-90520373e2c2 status: 200 OK code: 200 - duration: 127.384679ms + duration: 94.985504ms - id: 33 request: proto: HTTP/1.1 @@ -1682,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/instance/v1/zones/fr-par-1/volumes/94ca257e-0b67-435d-8055-7edf4ce93225 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818/user_data method: GET response: proto: HTTP/2.0 @@ -1690,31 +1462,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 17 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: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"}}' + body: '{"user_data": []}' headers: Content-Length: - - "530" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 007b45ad-1ca2-478b-94f5-e54204fba8af + - 4ef32a86-8b2f-4d17-8517-47b6b45f19e8 status: 200 OK code: 200 - duration: 90.75145ms + duration: 97.676206ms - id: 34 request: proto: HTTP/1.1 @@ -1731,7 +1495,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65/user_data method: GET response: proto: HTTP/2.0 @@ -1739,31 +1503,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + 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-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"}}' + body: '{"user_data": []}' headers: Content-Length: - - "2305" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7e9360a3-9e95-4f30-86c6-dbf202e12029 + - 45be9084-7f8f-4103-9c55-f3ec8b953e2b status: 200 OK code: 200 - duration: 143.986776ms + duration: 107.771283ms - id: 35 request: proto: HTTP/1.1 @@ -1780,7 +1536,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818/private_nics method: GET response: proto: HTTP/2.0 @@ -1788,31 +1544,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2307 + 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-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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "2307" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 84934786-cf75-4b33-a101-0699ce1aceef + - 52eab125-13b6-49b9-8f1b-11411b987f5d + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 147.898457ms + duration: 104.328745ms - id: 36 request: proto: HTTP/1.1 @@ -1829,7 +1581,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65/private_nics method: GET response: proto: HTTP/2.0 @@ -1837,31 +1589,27 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e9ccab5-c09f-436c-96f2-7e5396502482 + - fce15503-f8d1-4e4b-8389-98cf390735df + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 121.981593ms + duration: 97.17106ms - id: 37 request: proto: HTTP/1.1 @@ -1878,7 +1626,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 method: GET response: proto: HTTP/2.0 @@ -1886,31 +1634,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2307 + 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-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"}}' + body: '{"server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-awesome-keldysh", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:17.203381+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:27.562963+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2307" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2316" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e639379b-35dd-4c37-a13c-132b8d3d31e3 + - d6f7e702-46bd-484f-83ec-232992afcdf6 status: 200 OK code: 200 - duration: 113.649246ms + duration: 138.444909ms - id: 38 request: proto: HTTP/1.1 @@ -1927,7 +1667,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 method: GET response: proto: HTTP/2.0 @@ -1935,31 +1675,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 518 + content_length: 2362 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: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"}}' + body: '{"server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-awesome-keldysh", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:17.203381+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:27.562963+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "518" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2362" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 933f0b65-1054-4f7f-a7ee-f496ea87a81f + - d85aded4-4f74-4983-9dc5-c8f2eeca110c status: 200 OK code: 200 - duration: 135.829557ms + duration: 119.731316ms - id: 39 request: proto: HTTP/1.1 @@ -1976,7 +1708,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ccceaa5-00cc-42d9-b71b-f994c3ce16c0 method: GET response: proto: HTTP/2.0 @@ -1984,35 +1716,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 522 uncompressed: false - body: '{"private_nics":[]}' + body: '{"volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:17.203381+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "522" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:36 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 60b094a4-9757-489a-8dc8-0f872b048afa - X-Total-Count: - - "0" + - d6417a90-c492-4b1f-b33d-0548de10c928 status: 200 OK code: 200 - duration: 104.63429ms + duration: 85.903261ms - id: 40 request: proto: HTTP/1.1 @@ -2029,7 +1749,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/user_data method: GET response: proto: HTTP/2.0 @@ -2039,29 +1759,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 81e01d74-483b-4e22-a8d0-4e5dbe1d6359 + - 984727e7-91a5-42a5-9557-eb2e40ee38b4 status: 200 OK code: 200 - duration: 102.373362ms + duration: 92.331151ms - id: 41 request: proto: HTTP/1.1 @@ -2078,7 +1790,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/private_nics method: GET response: proto: HTTP/2.0 @@ -2086,133 +1798,113 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 519 + content_length: 20 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: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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "519" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:36 GMT + - Wed, 29 Oct 2025 22:54:29 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ababce3f-ced6-4c12-9aeb-74a3a6798a63 + - 431be663-b9ac-48e3-acf8-bdfe393a092b + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 113.78481ms + duration: 84.574456ms - id: 42 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-snap-busy-brattain","volume_id":"17e3abb0-7064-48d4-902c-ebe15af2816f","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/7044ca01-7c67-4085-af04-f7482bca7f0a/private_nics - 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: 20 + content_length: 845 uncompressed: false - body: '{"private_nics":[]}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:54:28.908248+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "snapshotting", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}, "task": {"id": "56786d3f-e5a4-42d0-83e6-14dab2171e32", "description": "volume_snapshot", "status": "pending", "href_from": "/snapshots", "href_result": "snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "started_at": "2025-10-29T22:54:29.082298+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "845" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:37 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 63fed805-d94e-4932-87b1-19d8365753de - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 97.90058ms + - 99e565f8-3650-4b04-adb2-ca9fdad6bb43 + status: 201 Created + code: 201 + duration: 615.737582ms - id: 43 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-heuristic-elion","volume_id":"b17c55bd-bb5c-481c-8d20-a8da601b6e46","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/10226f00-dc3a-4832-9fab-d77b4d244af5/user_data - 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: 17 + content_length: 847 uncompressed: false - body: '{"user_data":[]}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:54:28.921468+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}, "task": {"id": "f1089dae-7f6e-4b26-ac21-de79aa9806f9", "description": "volume_snapshot", "status": "pending", "href_from": "/snapshots", "href_result": "snapshots/6f71a23e-7425-44e8-a038-232c22f44608", "started_at": "2025-10-29T22:54:29.082407+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "847" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:37 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f4f4ffb-42d2-45ef-82d2-d37a05fbdb2d - status: 200 OK - code: 200 - duration: 113.525895ms + - b677a161-c585-4747-a37d-f3d058235f04 + status: 201 Created + code: 201 + duration: 579.462612ms - id: 44 request: proto: HTTP/1.1 @@ -2229,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/10226f00-dc3a-4832-9fab-d77b4d244af5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -2237,98 +1929,76 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 536 uncompressed: false - body: '{"private_nics":[]}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:54:28.921468+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:37 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4c83ab77-59a8-48f7-80ae-8823e0a21b31 - X-Total-Count: - - "0" + - ea8f556c-148e-4c20-a873-8eb43ac4f5a8 status: 200 OK code: 200 - duration: 103.878394ms + duration: 94.323747ms - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 136 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-snap-boring-goldwasser","volume_id":"94ca257e-0b67-435d-8055-7edf4ce93225","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/snapshots - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 849 + content_length: 534 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: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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:54:28.908248+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "snapshotting", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "849" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "534" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:37 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3fa83dca-d931-4981-b3e9-9831cc9b5652 - status: 201 Created - code: 201 - duration: 773.44672ms + - d325a50a-6247-4231-ba6c-11bbc206c271 + status: 200 OK + code: 200 + duration: 99.966499ms - id: 46 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 133 + content_length: 137 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-snap-silly-torvalds","volume_id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-snap-quizzical-einstein","volume_id":"4ccceaa5-00cc-42d9-b71b-f994c3ce16c0","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -2343,31 +2013,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 846 + content_length: 850 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: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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:54:29.445046+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}, "task": {"id": "dc0609fb-dda8-4dce-8340-7555e1eec050", "description": "volume_snapshot", "status": "pending", "href_from": "/snapshots", "href_result": "snapshots/f3a590b2-1472-48a8-8440-9b61afb933da", "started_at": "2025-10-29T22:54:29.620127+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "846" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "850" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:37 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ba49b902-0dcd-4232-a0bb-3e0da3b7f7d1 + - 96f9fe19-c66d-4ea7-9672-9d4849baa465 status: 201 Created code: 201 - duration: 668.571779ms + duration: 634.622096ms - id: 47 request: proto: HTTP/1.1 @@ -2384,7 +2046,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -2392,31 +2054,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 539 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: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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:54:29.445046+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "539" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:37 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d9cc0c17-d87e-483f-af2a-737a9d7f9226 + - e5cb87f1-ca3a-4848-83b8-922f289e5f2a status: 200 OK code: 200 - duration: 101.6032ms + duration: 105.783816ms - id: 48 request: proto: HTTP/1.1 @@ -2433,7 +2087,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -2441,82 +2095,64 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 536 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: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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:54:28.921468+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:37 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2c7dc61b-69d0-4fb0-814e-ca959b9f1083 + - 4617f57b-089d-4f70-9d52-91917fb8831e status: 200 OK code: 200 - duration: 92.664066ms + duration: 96.443562ms - 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: '{"name":"tf-snap-priceless-gould","volume_id":"88d4a540-539f-4f85-bf96-83d81ba46401","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/snapshots - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 847 + content_length: 534 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: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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:54:28.908248+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "snapshotting", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "847" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "534" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:37 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 19ce5938-663e-4760-9590-4241c1638fc6 - status: 201 Created - code: 201 - duration: 721.389884ms + - 66a95e15-f3d1-44ae-8ef1-19f91a611455 + status: 200 OK + code: 200 + duration: 271.301413ms - id: 50 request: proto: HTTP/1.1 @@ -2533,7 +2169,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -2541,31 +2177,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 539 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: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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:54:29.445046+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "539" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:37 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 584bbe1a-4111-43a8-8753-27363fd904b0 + - b266db5c-2e73-4eb3-b7cd-09dd68862b20 status: 200 OK code: 200 - duration: 100.715506ms + duration: 270.047189ms - id: 51 request: proto: HTTP/1.1 @@ -2582,7 +2210,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -2590,31 +2218,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 536 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: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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:54:28.921468+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:42 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9861a383-380f-4f44-99eb-50e15348784f + - c5a8da10-2387-4c2c-a223-2e6ad677eefc status: 200 OK code: 200 - duration: 102.710099ms + duration: 195.443577ms - id: 52 request: proto: HTTP/1.1 @@ -2631,7 +2251,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -2639,31 +2259,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 534 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: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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:54:28.908248+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "snapshotting", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "534" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:42 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ccdc9c9d-ec9a-454e-b498-f2aee18064a9 + - b6776a24-0824-4e5d-b914-cd6a0b65e8a2 status: 200 OK code: 200 - duration: 97.002732ms + duration: 118.682529ms - id: 53 request: proto: HTTP/1.1 @@ -2680,7 +2292,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -2688,31 +2300,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 539 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: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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:54:29.445046+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "539" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:43 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b870add2-8583-43fe-a31b-4c971e8ad725 + - a90b1a2d-51de-4329-b8dc-dc4ecf2e5068 status: 200 OK code: 200 - duration: 110.595689ms + duration: 179.039984ms - id: 54 request: proto: HTTP/1.1 @@ -2729,7 +2333,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -2737,31 +2341,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 536 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: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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:54:28.921468+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6e4bdf9e-e948-4bdb-8156-37a3ebf0f3ce + - fec8ce0c-edbd-4076-b8cc-1b361da9afea status: 200 OK code: 200 - duration: 103.79643ms + duration: 124.624631ms - id: 55 request: proto: HTTP/1.1 @@ -2778,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/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -2786,31 +2382,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 534 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: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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:54:28.908248+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "snapshotting", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "534" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:48 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a9710f75-1215-40e5-b6cf-6fa2becdfe2a + - b852dd6d-3e8d-4a4e-9cd9-a4e1d51018f0 status: 200 OK code: 200 - duration: 123.588948ms + duration: 110.920215ms - id: 56 request: proto: HTTP/1.1 @@ -2827,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/69b3b497-9917-43ba-925c-d446b51282d0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -2835,31 +2423,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 539 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: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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:54:29.445046+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "539" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:48 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e75ac21c-98d7-4d13-9740-136855680d15 + - 1eb60d1a-cc32-446e-9feb-a57f8f857dcc status: 200 OK code: 200 - duration: 109.057211ms + duration: 218.961849ms - id: 57 request: proto: HTTP/1.1 @@ -2876,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/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -2884,31 +2464,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 536 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: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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:54:28.921468+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:53 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7330016d-cf90-4a44-b03d-03aca20712c6 + - f7437640-51a4-403d-a1dd-1578072e35cc status: 200 OK code: 200 - duration: 96.11143ms + duration: 101.55816ms - id: 58 request: proto: HTTP/1.1 @@ -2925,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/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -2933,31 +2505,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 534 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: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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:54:28.908248+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "snapshotting", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "534" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:53 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3d8ed629-372a-49ca-b64b-7899810cf286 + - 8de5cb63-d183-4ef5-b73d-3795cbd9573b status: 200 OK code: 200 - duration: 118.608369ms + duration: 98.939473ms - id: 59 request: proto: HTTP/1.1 @@ -2974,7 +2538,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -2982,31 +2546,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 539 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: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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:54:29.445046+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "539" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:53 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cc484b61-718f-4430-bf44-c45536d8685a + - 29de9112-4d81-4ace-baa2-9a36e1e41a4b status: 200 OK code: 200 - duration: 98.299702ms + duration: 111.374877ms - id: 60 request: proto: HTTP/1.1 @@ -3023,7 +2579,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -3031,31 +2587,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 536 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: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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:54:28.921468+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e5bdb5d9-cc7c-4ed1-9274-0b80161763a1 + - 3b5e3a44-e262-48ae-b461-8645a92f118b status: 200 OK code: 200 - duration: 95.241985ms + duration: 118.227483ms - id: 61 request: proto: HTTP/1.1 @@ -3072,7 +2620,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -3080,31 +2628,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 534 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: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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:54:28.908248+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "snapshotting", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "534" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f50cee34-aab0-4e3b-9c51-66b9b7b860a7 + - 415a28c6-08c3-44f3-b513-69a003d9e2c3 status: 200 OK code: 200 - duration: 138.993364ms + duration: 109.483993ms - id: 62 request: proto: HTTP/1.1 @@ -3121,7 +2661,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -3129,31 +2669,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 539 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: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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:54:29.445046+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "539" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 21c21e0d-57aa-4609-9f93-c71281e489b4 + - 7ad2fb46-f1d6-478c-af97-da614d2f6e1c status: 200 OK code: 200 - duration: 114.395357ms + duration: 104.788062ms - id: 63 request: proto: HTTP/1.1 @@ -3170,7 +2702,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -3178,31 +2710,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 536 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: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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:54:28.921468+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:55:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fd9a333d-852d-482d-8e8c-92dc3a779fe1 + - 8cbea509-e14e-4480-9abe-c010b4ab80a5 status: 200 OK code: 200 - duration: 94.240611ms + duration: 116.894171ms - id: 64 request: proto: HTTP/1.1 @@ -3219,7 +2743,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -3227,31 +2751,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 534 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: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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:54:28.908248+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "snapshotting", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "534" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:55:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f302222-fc29-4697-950e-03841088c85b + - bc4d029e-c202-402f-926c-6f5a9df798f3 status: 200 OK code: 200 - duration: 113.1891ms + duration: 106.905382ms - id: 65 request: proto: HTTP/1.1 @@ -3268,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/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -3276,31 +2792,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 539 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: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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:54:29.445046+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "539" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:55:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e1d9a631-e1da-45a5-bc72-9903d9b52acd + - 0b54c2f2-0779-4cbc-ba39-5fb55a84a6d2 status: 200 OK code: 200 - duration: 136.435144ms + duration: 126.099053ms - id: 66 request: proto: HTTP/1.1 @@ -3317,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/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -3325,31 +2833,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 536 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: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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:54:28.921468+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2be3a0b0-73e9-4c87-8a64-932157a52662 + - 2929379f-6579-4777-ac9b-4fd069cd926d status: 200 OK code: 200 - duration: 101.548935ms + duration: 136.937073ms - id: 67 request: proto: HTTP/1.1 @@ -3366,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/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -3374,31 +2874,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 534 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: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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:54:28.908248+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "snapshotting", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "534" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8b4aee71-0d53-4cb0-90d7-6abf50e4f417 + - 6e6eb21c-5806-44c6-b80f-f1f36d25a616 status: 200 OK code: 200 - duration: 98.462941ms + duration: 112.106119ms - id: 68 request: proto: HTTP/1.1 @@ -3415,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/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -3423,31 +2915,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 539 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: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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:54:29.445046+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "539" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8abd1bd2-2bd3-43ab-853d-5b263a3675d0 + - ab9cd2e2-f290-460f-8bea-bc2c46892b9e status: 200 OK code: 200 - duration: 105.218314ms + duration: 92.862835ms - id: 69 request: proto: HTTP/1.1 @@ -3464,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/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -3472,31 +2956,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 536 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: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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:54:28.921468+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0d798cc0-2b3f-418c-939c-93cdfadb8185 + - 5420c240-0020-4804-91b4-c0214223eaf8 status: 200 OK code: 200 - duration: 120.771959ms + duration: 100.833671ms - id: 70 request: proto: HTTP/1.1 @@ -3513,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/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -3521,31 +2997,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 534 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: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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:54:28.908248+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "snapshotting", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "534" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 15fd3bc1-8d69-48b5-b41b-aed4324acd35 + - 22239138-b14e-476f-a50b-d870d6653b8a status: 200 OK code: 200 - duration: 86.616558ms + duration: 111.729156ms - id: 71 request: proto: HTTP/1.1 @@ -3562,7 +3030,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -3570,31 +3038,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 539 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: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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:54:29.445046+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "539" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b59632bc-f8cc-4081-a016-6f3769b5d9a1 + - 89b54e7d-0106-4ce5-8428-8bb1c5a4d5ba status: 200 OK code: 200 - duration: 107.75868ms + duration: 90.625872ms - id: 72 request: proto: HTTP/1.1 @@ -3611,7 +3071,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -3619,31 +3079,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 536 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: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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:54:28.921468+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4a717fe0-1f59-45df-8e69-d926343c13d4 + - da9b8cf5-b32d-449a-8b22-4d7d313855d7 status: 200 OK code: 200 - duration: 103.811425ms + duration: 99.843461ms - id: 73 request: proto: HTTP/1.1 @@ -3660,7 +3112,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -3668,31 +3120,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 534 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: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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:54:28.908248+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "snapshotting", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "534" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 94af28a9-11e1-40b3-b568-cd98ff8c1f73 + - a401c367-01be-449a-8d59-4d60359d9ba3 status: 200 OK code: 200 - duration: 102.603541ms + duration: 100.955561ms - id: 74 request: proto: HTTP/1.1 @@ -3709,7 +3153,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -3717,31 +3161,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 539 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: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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:54:29.445046+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "539" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1be345d6-1904-4bb1-96e1-648323f89480 + - 539c125a-f621-44ed-ba08-d22d63a557c5 status: 200 OK code: 200 - duration: 112.105208ms + duration: 102.838391ms - id: 75 request: proto: HTTP/1.1 @@ -3758,7 +3194,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -3766,31 +3202,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 536 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: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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:54:28.921468+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - db787cf9-0ae5-425d-a117-2919e9a988ce + - 9dc441ed-f285-4a07-8710-6e9e25c1dc72 status: 200 OK code: 200 - duration: 100.492618ms + duration: 119.999124ms - id: 76 request: proto: HTTP/1.1 @@ -3807,7 +3235,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -3815,31 +3243,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 534 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: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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:54:28.908248+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "snapshotting", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "534" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4004e491-958a-49d3-b8b2-b6bee1f565bb + - e0557432-cc80-42c0-ae03-338304a7301f status: 200 OK code: 200 - duration: 103.313961ms + duration: 92.320233ms - id: 77 request: proto: HTTP/1.1 @@ -3856,7 +3276,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -3864,31 +3284,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 536 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: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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:55:16.836777+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "available", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e166776-fefd-4fb2-9901-0a681de562b1 + - 93a36cfc-23f2-445b-8dee-76f6f032d465 status: 200 OK code: 200 - duration: 99.505491ms + duration: 114.798639ms - id: 78 request: proto: HTTP/1.1 @@ -3905,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/677d73d7-a7fc-4327-b242-18ae3663ee13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -3913,31 +3325,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 536 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: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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:55:16.836777+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "available", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 28aa9dcd-c2ca-4f4f-86d2-52de6eb8b56c + - f7369a98-9841-45b9-b4a4-8eb0785bdc35 status: 200 OK code: 200 - duration: 107.678358ms + duration: 101.204698ms - id: 79 request: proto: HTTP/1.1 @@ -3954,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/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -3962,31 +3366,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 532 + content_length: 533 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: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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "available", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "532" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "533" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:34 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fa3dbda1-8bcd-4b7d-a3e5-363e5ac97e09 + - f3245571-3586-402f-902d-00080173361a status: 200 OK code: 200 - duration: 120.366324ms + duration: 101.123437ms - id: 80 request: proto: HTTP/1.1 @@ -4003,7 +3399,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -4011,31 +3407,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 532 + content_length: 534 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: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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:54:28.908248+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "snapshotting", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "532" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "534" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:34 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - edc4363d-ced6-4c93-854e-29dd58138586 + - f7e02ac8-ac45-4e67-ac2c-62044207c363 status: 200 OK code: 200 - duration: 86.002072ms + duration: 95.757152ms - id: 81 request: proto: HTTP/1.1 @@ -4052,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/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -4060,31 +3448,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 533 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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "available", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "533" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:38 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b14702ab-9d03-4bb9-8802-8f5253b4a607 + - 86e1071b-1fb1-43e9-b0a9-7266c8ec1e4e status: 200 OK code: 200 - duration: 97.090161ms + duration: 128.978638ms - id: 82 request: proto: HTTP/1.1 @@ -4101,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/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -4109,31 +3489,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:55:25.521531+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "available", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "531" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 33b6d6ff-e14b-431a-96f3-20adf49a6f53 + - aeb8d2ff-09a6-4d80-b236-50181d311226 status: 200 OK code: 200 - duration: 114.95781ms + duration: 96.054769ms - id: 83 request: proto: HTTP/1.1 @@ -4150,7 +3522,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -4158,31 +3530,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2340 + content_length: 531 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:55:25.521531+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "available", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "531" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 38609d43-f71f-4a10-801c-8ec2aba522ca + - c2ecd6a8-3926-443c-ad92-00a1496287fa status: 200 OK code: 200 - duration: 175.716349ms + duration: 93.053327ms - id: 84 request: proto: HTTP/1.1 @@ -4199,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/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 method: GET response: proto: HTTP/2.0 @@ -4207,31 +3571,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2307 + 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-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"}}' + body: '{"server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-dreamy-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:55:25.521531+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:87", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:24.923923+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "401", "node_id": "34"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2307" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2350" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f529389-2f59-49f7-ac11-7f1650ddf069 + - 1d9e1519-8e12-4e31-9542-59b54d476bd6 status: 200 OK code: 200 - duration: 135.536711ms + duration: 138.063859ms - id: 85 request: proto: HTTP/1.1 @@ -4248,7 +3604,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 method: GET response: proto: HTTP/2.0 @@ -4256,31 +3612,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + 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-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"}}' + body: '{"server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-awesome-keldysh", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:55:16.836777+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:27.562963+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2305" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2362" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d07d982e-b16d-42ab-8f44-4895df958703 + - c776c0b7-c10d-41f0-b665-563d17adeb19 status: 200 OK code: 200 - duration: 125.600422ms + duration: 128.5402ms - id: 86 request: proto: HTTP/1.1 @@ -4297,7 +3645,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -4305,31 +3653,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 2365 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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:25.127378+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "501", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2365" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a7eefbae-4414-468f-8a8e-181cbf107c02 + - 5e3d376c-27db-4cea-9679-c21743fb3b7c status: 200 OK code: 200 - duration: 100.67896ms + duration: 129.397732ms - id: 87 request: proto: HTTP/1.1 @@ -4346,7 +3686,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -4354,31 +3694,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 531 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: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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:55:25.521531+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "available", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "531" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0355897c-c035-4f4d-bb74-60b24d409da7 + - d7a228c7-a71e-4f8b-89a2-aec7c0e9f700 status: 200 OK code: 200 - duration: 148.517536ms + duration: 94.347627ms - id: 88 request: proto: HTTP/1.1 @@ -4395,7 +3727,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -4403,31 +3735,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 532 + content_length: 536 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: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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:55:16.836777+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "available", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "532" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0a233309-ff40-4a88-8763-d5b430a927e4 + - b7197396-5087-4489-b60a-8f8a20586dcd status: 200 OK code: 200 - duration: 115.223098ms + duration: 96.090116ms - id: 89 request: proto: HTTP/1.1 @@ -4444,7 +3768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -4452,31 +3776,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2340 + 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-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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "available", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "533" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e2532394-7c11-4c97-8707-0b803214bc42 + - b3c90ab7-9137-4c7b-9582-42ea3f91f825 status: 200 OK code: 200 - duration: 121.390671ms + duration: 86.962606ms - id: 90 request: proto: HTTP/1.1 @@ -4493,7 +3809,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -4501,31 +3817,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + 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-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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:25.127378+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "501", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2305" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2319" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1aeaf8c1-5001-4a34-9895-26c78fab2b9e + - e70e67bb-fdfd-4e6e-b0df-bb54ef821cc0 status: 200 OK code: 200 - duration: 145.196131ms + duration: 123.521614ms - id: 91 request: proto: HTTP/1.1 @@ -4542,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/10226f00-dc3a-4832-9fab-d77b4d244af5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 method: GET response: proto: HTTP/2.0 @@ -4550,31 +3858,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2307 + 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-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"}}' + body: '{"server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-dreamy-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:55:25.521531+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:87", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:24.923923+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "401", "node_id": "34"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2307" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2350" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 59f57eb5-4792-41c9-bc74-5dbbeb2444c0 + - 54a9f716-147a-4dc0-a43b-d88d20e25e6e status: 200 OK code: 200 - duration: 161.846006ms + duration: 144.004269ms - id: 92 request: proto: HTTP/1.1 @@ -4591,7 +3891,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 method: GET response: proto: HTTP/2.0 @@ -4599,31 +3899,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 2316 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"}}' + body: '{"server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-awesome-keldysh", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:55:16.836777+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:27.562963+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "530" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2316" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 53a067c7-cf89-43a9-92f0-212210fec4c1 + - 09db1dea-7cb0-4e6c-be44-560fc2b51e44 status: 200 OK code: 200 - duration: 90.449413ms + duration: 145.034807ms - id: 93 request: proto: HTTP/1.1 @@ -4640,7 +3932,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b17c55bd-bb5c-481c-8d20-a8da601b6e46 method: GET response: proto: HTTP/2.0 @@ -4648,31 +3940,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 518 + content_length: 523 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"}}' + body: '{"volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "518" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "523" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 87c0503c-26d8-4883-8ce0-971056239140 + - 742c1b51-b103-498b-8aab-1c9758e533a9 status: 200 OK code: 200 - duration: 101.432133ms + duration: 92.00199ms - id: 94 request: proto: HTTP/1.1 @@ -4689,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/instance/v1/zones/fr-par-1/volumes/88d4a540-539f-4f85-bf96-83d81ba46401 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ccceaa5-00cc-42d9-b71b-f994c3ce16c0 method: GET response: proto: HTTP/2.0 @@ -4697,31 +3981,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 519 + content_length: 522 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"}}' + body: '{"volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:55:16.836777+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "519" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "522" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3708f1c7-ae1b-499d-a5f8-989a196efe1f + - fd2744de-9041-4757-9433-4a8d811d57eb status: 200 OK code: 200 - duration: 109.482877ms + duration: 96.699906ms - id: 95 request: proto: HTTP/1.1 @@ -4738,7 +4014,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17e3abb0-7064-48d4-902c-ebe15af2816f method: GET response: proto: HTTP/2.0 @@ -4746,31 +4022,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 518 uncompressed: false - body: '{"user_data":[]}' + body: '{"volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:55:25.521531+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "518" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1d45a319-f154-4d8f-9448-73e39d69f419 + - ebe5267f-5959-4b48-ae51-2aa69d21b667 status: 200 OK code: 200 - duration: 102.431967ms + duration: 99.518738ms - id: 96 request: proto: HTTP/1.1 @@ -4787,7 +4055,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65/user_data method: GET response: proto: HTTP/2.0 @@ -4797,29 +4065,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2d45aeb9-cdba-4841-b541-75b201ef1a7f + - 5d44072f-a896-40e7-b153-a8d934e1ccce status: 200 OK code: 200 - duration: 96.934501ms + duration: 86.782981ms - id: 97 request: proto: HTTP/1.1 @@ -4836,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/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818/user_data method: GET response: proto: HTTP/2.0 @@ -4846,29 +4106,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7704b9a4-d400-4947-9ef8-42ec1a8a62ed + - b659c1a9-a964-452f-84b0-2d079358895a status: 200 OK code: 200 - duration: 98.714618ms + duration: 98.655003ms - id: 98 request: proto: HTTP/1.1 @@ -4885,7 +4137,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/user_data method: GET response: proto: HTTP/2.0 @@ -4893,35 +4145,23 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eac004cb-370b-4cc7-bc18-632d8eb47dca - X-Total-Count: - - "0" + - 3e207b75-f205-4088-a78a-df48322a6fb6 status: 200 OK code: 200 - duration: 89.819322ms + duration: 116.048559ms - id: 99 request: proto: HTTP/1.1 @@ -4938,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/7044ca01-7c67-4085-af04-f7482bca7f0a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65/private_nics method: GET response: proto: HTTP/2.0 @@ -4948,33 +4188,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:40 GMT + - Wed, 29 Oct 2025 22:55:32 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 59558d82-afcf-44ba-a7e9-5558573c982a + - bc82e869-00d9-4656-8f27-79a1a6297bac X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.20318ms + duration: 126.907116ms - id: 100 request: proto: HTTP/1.1 @@ -4991,7 +4223,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818/private_nics method: GET response: proto: HTTP/2.0 @@ -5001,33 +4233,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:40 GMT + - Wed, 29 Oct 2025 22:55:32 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c3768de6-18c9-4bfc-a40e-544e6aead2c6 + - aa7be782-3543-4c9a-bb54-e4f9992874fd X-Total-Count: - "0" status: 200 OK code: 200 - duration: 89.23182ms + duration: 87.323111ms - id: 101 request: proto: HTTP/1.1 @@ -5044,7 +4268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/private_nics method: GET response: proto: HTTP/2.0 @@ -5052,31 +4276,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 20 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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1ba8c576-6be7-4d2e-959c-4f695518f380 + - e9315deb-098b-4b1f-b169-d83ded95f938 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 101.789283ms + duration: 108.227584ms - id: 102 request: proto: HTTP/1.1 @@ -5093,7 +4313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -5101,31 +4321,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 532 + content_length: 533 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: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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "available", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "532" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "533" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f6920f6e-42a1-4443-afed-5d6b36791f7c + - ff0c10bc-ca15-47a8-bddc-b0e7aba2dd98 status: 200 OK code: 200 - duration: 100.10209ms + duration: 88.998303ms - id: 103 request: proto: HTTP/1.1 @@ -5142,7 +4354,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -5150,31 +4362,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 531 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: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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:55:25.521531+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "available", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "531" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 740cf691-f20c-47f0-be44-fd4cd02a2470 + - 8fab7c9f-96f4-48d6-a00a-bf537197eb96 status: 200 OK code: 200 - duration: 113.946816ms + duration: 114.631088ms - id: 104 request: proto: HTTP/1.1 @@ -5191,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/c78a1974-594b-49e7-b35d-17ddcef3568a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -5199,31 +4403,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2340 + 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-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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:55:16.836777+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "available", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a925e89e-b4c6-4cb4-9e2b-01b1e97a4cc3 + - 35f5966c-333b-4dce-bc06-d72fdbc42709 status: 200 OK code: 200 - duration: 124.765798ms + duration: 90.1248ms - id: 105 request: proto: HTTP/1.1 @@ -5240,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/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 method: GET response: proto: HTTP/2.0 @@ -5248,31 +4444,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + 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-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"}}' + body: '{"server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-awesome-keldysh", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:55:16.836777+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:27.562963+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2305" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2362" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - db46e16a-75cf-4947-be9a-d94cbbb44df3 + - b6a2d99a-d475-495b-b419-b0d8326abf7c status: 200 OK code: 200 - duration: 125.719457ms + duration: 119.302695ms - id: 106 request: proto: HTTP/1.1 @@ -5289,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/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -5297,31 +4485,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2307 + content_length: 2365 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:25.127378+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "501", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2307" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2365" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e17271ba-235d-4a27-9f48-0bf50afae40d + - f2620a43-c9ed-4bfa-9585-28fa96307e49 status: 200 OK code: 200 - duration: 128.531599ms + duration: 119.675722ms - id: 107 request: proto: HTTP/1.1 @@ -5338,7 +4518,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 method: GET response: proto: HTTP/2.0 @@ -5346,31 +4526,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 518 + content_length: 2350 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"}}' + body: '{"server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-dreamy-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:55:25.521531+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:87", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:24.923923+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "401", "node_id": "34"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "518" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2350" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cf62cb5a-2cec-4363-b7d1-c590516b5566 + - f5336dfd-46a9-4052-8e98-08fd4a8e48d8 status: 200 OK code: 200 - duration: 189.321388ms + duration: 122.357538ms - id: 108 request: proto: HTTP/1.1 @@ -5387,7 +4559,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b17c55bd-bb5c-481c-8d20-a8da601b6e46 method: GET response: proto: HTTP/2.0 @@ -5395,31 +4567,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 523 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"}}' + body: '{"volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "530" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "523" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8a4cfe1a-ed7a-4737-ad1d-534b92f2eade + - 028f1c60-d997-49e6-ba36-27675fc19bb2 status: 200 OK code: 200 - duration: 189.32272ms + duration: 111.944264ms - id: 109 request: proto: HTTP/1.1 @@ -5436,7 +4600,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ccceaa5-00cc-42d9-b71b-f994c3ce16c0 method: GET response: proto: HTTP/2.0 @@ -5444,31 +4608,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 519 + content_length: 522 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"}}' + body: '{"volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:55:16.836777+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "519" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "522" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4f46a0c9-bdd2-4bb9-8fbf-dd685622dcfd + - bdd28aa7-9c7b-4b52-88ef-6338331430b2 status: 200 OK code: 200 - duration: 186.679745ms + duration: 119.530841ms - id: 110 request: proto: HTTP/1.1 @@ -5485,7 +4641,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17e3abb0-7064-48d4-902c-ebe15af2816f method: GET response: proto: HTTP/2.0 @@ -5493,31 +4649,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 518 uncompressed: false - body: '{"user_data":[]}' + body: '{"volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:55:25.521531+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "518" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 14e075fd-4d7b-4101-b428-bfcf61a87282 + - 627ea072-d7d3-4f39-a9ad-9278742a23b3 status: 200 OK code: 200 - duration: 100.874078ms + duration: 124.240319ms - id: 111 request: proto: HTTP/1.1 @@ -5534,7 +4682,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65/user_data method: GET response: proto: HTTP/2.0 @@ -5544,29 +4692,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2070892a-5e95-44c0-8751-4846c44e4aac + - 08558a8b-47ed-44e2-a051-3ff6b737bd95 status: 200 OK code: 200 - duration: 100.948217ms + duration: 91.913195ms - id: 112 request: proto: HTTP/1.1 @@ -5583,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/c78a1974-594b-49e7-b35d-17ddcef3568a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/user_data method: GET response: proto: HTTP/2.0 @@ -5593,29 +4733,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 28b350c6-d944-496d-ae4e-d61817d27dc2 + - d9e2aea8-3f2f-4dd4-99ad-ee9af8832031 status: 200 OK code: 200 - duration: 130.287622ms + duration: 106.009717ms - id: 113 request: proto: HTTP/1.1 @@ -5632,7 +4764,48 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818/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-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:55:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 10477c10-7186-41a8-863f-73e885e52269 + status: 200 OK + code: 200 + duration: 105.693165ms + - 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/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65/private_nics method: GET response: proto: HTTP/2.0 @@ -5642,34 +4815,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:41 GMT + - Wed, 29 Oct 2025 22:55:33 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3634de8b-2d6b-48c4-9458-3c3cf87b52c9 + - 4bd59ca0-23ca-49e8-acbe-9f12e549c34f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 91.38093ms - - id: 114 + duration: 105.049641ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5685,7 +4850,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/private_nics method: GET response: proto: HTTP/2.0 @@ -5695,34 +4860,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:41 GMT + - Wed, 29 Oct 2025 22:55:33 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ad29cfc1-b368-4fef-96d3-291bfb340299 + - 8fb28dd3-f0e7-4f1c-80d0-a59e384f8dc0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 93.325045ms - - id: 115 + duration: 112.720767ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -5738,7 +4895,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818/private_nics method: GET response: proto: HTTP/2.0 @@ -5748,34 +4905,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:41 GMT + - Wed, 29 Oct 2025 22:55:33 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d21c45a8-4328-40d9-9511-c35b43a5cae2 + - 53ac1562-313f-4e4c-ae3f-07069b9a64a9 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 116.54611ms - - id: 116 + duration: 107.416106ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -5791,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/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -5801,30 +4950,22 @@ interactions: trailer: {} content_length: 533 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: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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "tf-snap-heuristic-elion", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "available", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e73a0913-383b-40db-b548-3d98ac3c9100 + - 0b77abd8-bb80-470c-b32a-7ab6358db7ad status: 200 OK code: 200 - duration: 94.491312ms - - id: 117 + duration: 115.882259ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -5840,7 +4981,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -5848,32 +4989,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 532 + content_length: 531 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: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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "tf-snap-busy-brattain", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:55:25.521531+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "available", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "532" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "531" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8a5c73a1-e89a-4e7a-8907-eafb489e6cbd + - 6100ee5a-1680-4548-bb90-0e83dc63567f status: 200 OK code: 200 - duration: 108.01724ms - - id: 118 + duration: 94.857631ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -5889,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/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -5897,32 +5030,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 536 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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "tf-snap-quizzical-einstein", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:55:16.836777+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "available", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "536" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1f41351b-1f1b-4fae-b76e-b553ef9c44fa + - 93500b1f-da62-4131-93c9-2c3928354a9c status: 200 OK code: 200 - duration: 117.934943ms - - id: 119 + duration: 99.258922ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -5933,14 +5058,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"snap03","tags":[]}' + 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/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: PATCH response: proto: HTTP/2.0 @@ -5950,30 +5075,22 @@ interactions: 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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "snap01", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:55:33.448542+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "available", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9da93eeb-3667-4098-95cd-74fef2c014aa + - 645e7f67-59c6-4cf4-a9dc-8df4941d03d6 status: 200 OK code: 200 - duration: 136.865474ms - - id: 120 + duration: 123.426177ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -5984,14 +5101,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"snap01","tags":[]}' + 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/677d73d7-a7fc-4327-b242-18ae3663ee13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: PATCH response: proto: HTTP/2.0 @@ -6001,30 +5118,22 @@ interactions: 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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "snap03", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:55:33.443177+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "available", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fdbf9add-131d-4131-8777-8af3416d6ba8 + - c90a6369-dad6-442f-bdd2-7e280d0bfe85 status: 200 OK code: 200 - duration: 154.725959ms - - id: 121 + duration: 123.856642ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -6042,7 +5151,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/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: PATCH response: proto: HTTP/2.0 @@ -6052,30 +5161,22 @@ interactions: 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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "snap02", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:55:33.442883+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "available", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - acbce2fa-a84a-4f1e-981f-7e24f202850f + - 0e41d192-4605-4b6b-babe-3e7176a6df85 status: 200 OK code: 200 - duration: 190.287329ms - - id: 122 + duration: 123.619559ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -6091,7 +5192,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -6101,30 +5202,22 @@ interactions: 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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "snap03", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:55:33.443177+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "available", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9dc71504-cd2e-45cb-9b68-4633d3b7664a + - d2c635f1-814c-44de-907b-4ebb7c0df788 status: 200 OK code: 200 - duration: 114.729113ms - - id: 123 + duration: 86.370369ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -6140,7 +5233,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -6150,30 +5243,22 @@ interactions: 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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "snap01", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:55:33.448542+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "available", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 31dc4f27-5114-47c9-b36a-874076f84cd4 + - 27447e60-dc61-4dd3-aa9a-3f30700a56f2 status: 200 OK code: 200 - duration: 101.011094ms - - id: 124 + duration: 94.911682ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -6189,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/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -6199,41 +5284,33 @@ interactions: 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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "snap02", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:55:33.442883+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "available", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 95abdf9b-0f6d-4301-8b03-ef8b7393364d + - 7c7c4a47-2312-4898-bcdc-a3f7597ef3c2 status: 200 OK code: 200 - duration: 123.97084ms - - id: 125 + duration: 102.233935ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 284 + content_length: 288 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}' + body: '{"name":"tf-image-eloquent-dubinsky","root_volume":"9c741077-bbe6-4374-aeb5-2bcfb9eaae42","arch":"x86_64","extra_volumes":{"1":{"id":"f3a590b2-1472-48a8-8440-9b61afb933da"},"2":{"id":"6f71a23e-7425-44e8-a038-232c22f44608"}},"project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false}' form: {} headers: Content-Type: @@ -6248,34 +5325,26 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 821 + content_length: 825 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"}}' + body: '{"image": {"id": "cd79c443-b326-40ec-8302-54a4a213ae5c", "name": "tf-image-eloquent-dubinsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "snap01", "volume_type": "l_ssd", "size": 15000000000}, "extra_volumes": {"2": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "snap03", "volume_type": "l_ssd", "size": 20000000000}, "1": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "snap02", "volume_type": "l_ssd", "size": 10000000000}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:33.799553+00:00", "modification_date": "2025-10-29T22:55:33.799553+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "821" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "825" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:42 GMT + - Wed, 29 Oct 2025 22:55:33 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d3513e60-daa2-407f-8d9a-2c1b3b63e58f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 076dd67f-ffa1-42e0-ae98-573190b43651 + - 7bb928da-695d-44ea-b0b4-f8410d1b11aa status: 201 Created code: 201 - duration: 316.450851ms - - id: 126 + duration: 289.398699ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -6291,7 +5360,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c method: GET response: proto: HTTP/2.0 @@ -6299,32 +5368,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 821 + content_length: 825 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"}}' + body: '{"image": {"id": "cd79c443-b326-40ec-8302-54a4a213ae5c", "name": "tf-image-eloquent-dubinsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "snap01", "volume_type": "l_ssd", "size": 15000000000}, "extra_volumes": {"2": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "snap03", "volume_type": "l_ssd", "size": 20000000000}, "1": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "snap02", "volume_type": "l_ssd", "size": 10000000000}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:33.799553+00:00", "modification_date": "2025-10-29T22:55:33.799553+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "821" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "825" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2240a7c2-dd6c-4242-b0e8-3ebee5f0a346 + - f2544953-321d-4503-a14f-b15943ea3a70 status: 200 OK code: 200 - duration: 107.162749ms - - id: 127 + duration: 108.991693ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -6340,7 +5401,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c method: GET response: proto: HTTP/2.0 @@ -6348,32 +5409,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 821 + content_length: 825 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"}}' + body: '{"image": {"id": "cd79c443-b326-40ec-8302-54a4a213ae5c", "name": "tf-image-eloquent-dubinsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "snap01", "volume_type": "l_ssd", "size": 15000000000}, "extra_volumes": {"2": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "snap03", "volume_type": "l_ssd", "size": 20000000000}, "1": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "snap02", "volume_type": "l_ssd", "size": 10000000000}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:33.799553+00:00", "modification_date": "2025-10-29T22:55:33.799553+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "821" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "825" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 05a20adc-f328-4fb2-a659-41a38013128c + - f297ef17-51da-4a94-a121-3d6f7d8a6e78 status: 200 OK code: 200 - duration: 112.86561ms - - id: 128 + duration: 106.756734ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -6389,7 +5442,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -6399,30 +5452,22 @@ interactions: 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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "snap01", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:55:33.448542+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "available", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 75aaa78d-848c-4b58-81e2-9b123008cbcd + - 1de6e940-5fd0-4c49-9b30-a74c7a2c1d17 status: 200 OK code: 200 - duration: 99.526492ms - - id: 129 + duration: 90.08715ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -6438,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/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -6448,30 +5493,22 @@ interactions: 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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "snap02", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:55:33.442883+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "available", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a07bd93f-9769-4034-80e2-7bb2c4902184 + - abebef28-7f9b-4ad2-96cc-5358fb9f6730 status: 200 OK code: 200 - duration: 103.636628ms - - id: 130 + duration: 123.357278ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -6487,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/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -6497,30 +5534,22 @@ interactions: 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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "snap03", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:55:33.443177+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "available", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 18458b44-5db6-4834-9b53-0ce7480068d1 + - ea55bba9-e6ce-481d-88cc-7236ce4a679b status: 200 OK code: 200 - duration: 110.26259ms - - id: 131 + duration: 96.292214ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -6536,7 +5565,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c method: GET response: proto: HTTP/2.0 @@ -6544,32 +5573,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 821 + content_length: 825 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"}}' + body: '{"image": {"id": "cd79c443-b326-40ec-8302-54a4a213ae5c", "name": "tf-image-eloquent-dubinsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "snap01", "volume_type": "l_ssd", "size": 15000000000}, "extra_volumes": {"2": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "snap03", "volume_type": "l_ssd", "size": 20000000000}, "1": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "snap02", "volume_type": "l_ssd", "size": 10000000000}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:33.799553+00:00", "modification_date": "2025-10-29T22:55:33.799553+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "821" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "825" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d69172bf-083a-4e9b-9e82-7e4f48317cce + - 4b92c6f2-f0ce-43b2-8e9d-097ab9045f11 status: 200 OK code: 200 - duration: 108.137958ms - - id: 132 + duration: 115.422599ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -6585,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/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -6593,32 +5614,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2307 + 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-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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:25.127378+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "501", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2307" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2319" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - db927aa1-711a-4da3-87c7-01d84ae1d9b7 + - 4d373480-14a3-4197-a69f-d229b5659ee2 status: 200 OK code: 200 - duration: 127.546495ms - - id: 133 + duration: 130.167003ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -6634,7 +5647,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 method: GET response: proto: HTTP/2.0 @@ -6642,32 +5655,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2340 + 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-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"}}' + body: '{"server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-awesome-keldysh", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:55:16.836777+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:27.562963+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2316" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0c5aeea8-7f1a-4fd9-85ca-19ba3df5641f + - 8f7b5027-dfb4-4868-b22e-68bc83c792a7 status: 200 OK code: 200 - duration: 148.264267ms - - id: 134 + duration: 140.430316ms + - id: 135 request: proto: HTTP/1.1 proto_major: 1 @@ -6683,7 +5688,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 method: GET response: proto: HTTP/2.0 @@ -6691,32 +5696,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2304 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-dreamy-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:55:25.521531+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:87", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:24.923923+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "401", "node_id": "34"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2305" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2304" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a8a3df8a-170c-4f74-aa85-7bcaa9eb0ba6 + - 142f4aaa-8d59-4974-a956-b6888a3b31da status: 200 OK code: 200 - duration: 168.577009ms - - id: 135 + duration: 153.628729ms + - id: 136 request: proto: HTTP/1.1 proto_major: 1 @@ -6732,7 +5729,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b17c55bd-bb5c-481c-8d20-a8da601b6e46 method: GET response: proto: HTTP/2.0 @@ -6740,32 +5737,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 519 + content_length: 523 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"}}' + body: '{"volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "519" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "523" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 35c6b88e-63ac-427b-8b56-b768a33c7006 + - 6221eb0d-d06f-428f-ae0b-ee1e5afd98ad status: 200 OK code: 200 - duration: 98.811152ms - - id: 136 + duration: 95.526222ms + - id: 137 request: proto: HTTP/1.1 proto_major: 1 @@ -6781,7 +5770,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ccceaa5-00cc-42d9-b71b-f994c3ce16c0 method: GET response: proto: HTTP/2.0 @@ -6789,32 +5778,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 522 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"}}' + body: '{"volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:55:16.836777+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "530" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "522" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8d6ce429-7adc-4ce4-af16-a26b63abf17d + - 8c72a6cc-bf70-4ea6-a25d-4f06308095c7 status: 200 OK code: 200 - duration: 93.031515ms - - id: 137 + duration: 93.11866ms + - id: 138 request: proto: HTTP/1.1 proto_major: 1 @@ -6830,7 +5811,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17e3abb0-7064-48d4-902c-ebe15af2816f method: GET response: proto: HTTP/2.0 @@ -6840,30 +5821,22 @@ interactions: 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"}}' + body: '{"volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:55:25.521531+00:00", "tags": [], "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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7b6e6b32-36ca-4fc5-acba-f1cbcfbecd57 + - c428095e-7233-4730-917f-d9445404456b status: 200 OK code: 200 - duration: 101.80233ms - - id: 138 + duration: 94.060371ms + - id: 139 request: proto: HTTP/1.1 proto_major: 1 @@ -6879,7 +5852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65/user_data method: GET response: proto: HTTP/2.0 @@ -6889,30 +5862,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dcebbecd-75cb-4fb7-b268-3bcbd68c9b08 + - 6dfc3a75-af63-4aec-a224-993ec1d48b9b status: 200 OK code: 200 - duration: 99.019493ms - - id: 139 + duration: 102.660854ms + - id: 140 request: proto: HTTP/1.1 proto_major: 1 @@ -6928,7 +5893,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/user_data method: GET response: proto: HTTP/2.0 @@ -6938,30 +5903,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fe377118-81bc-4e28-85fe-1c4b84249378 + - ad437d49-e0cd-492e-814c-317605f5e584 status: 200 OK code: 200 - duration: 93.672849ms - - id: 140 + duration: 95.974ms + - id: 141 request: proto: HTTP/1.1 proto_major: 1 @@ -6977,7 +5934,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818/user_data method: GET response: proto: HTTP/2.0 @@ -6987,30 +5944,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6c2d4713-64f0-4da8-966b-c913ac966c11 + - 7d2faa25-be6d-4f2f-98df-511f47b011c1 status: 200 OK code: 200 - duration: 78.644183ms - - id: 141 + duration: 87.912133ms + - id: 142 request: proto: HTTP/1.1 proto_major: 1 @@ -7026,7 +5975,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/private_nics method: GET response: proto: HTTP/2.0 @@ -7036,34 +5985,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 + - Wed, 29 Oct 2025 22:55:35 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b131b80f-ece2-4a2d-b166-43d8d3ef5adf + - b9e49709-73db-4403-b5a3-fc9707ce7ba0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 111.043204ms - - id: 142 + duration: 89.384096ms + - id: 143 request: proto: HTTP/1.1 proto_major: 1 @@ -7079,7 +6020,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818/private_nics method: GET response: proto: HTTP/2.0 @@ -7089,34 +6030,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 + - Wed, 29 Oct 2025 22:55:35 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 98c5fb76-8dc6-4adb-b372-e00cfff34e02 + - f49322f0-e94e-4766-8a43-3ca180e7238d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 91.692266ms - - id: 143 + duration: 96.852503ms + - id: 144 request: proto: HTTP/1.1 proto_major: 1 @@ -7132,7 +6065,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65/private_nics method: GET response: proto: HTTP/2.0 @@ -7142,34 +6075,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 + - Wed, 29 Oct 2025 22:55:35 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0718e315-2fcc-4693-a2b0-33c1840e61ff + - 45f0abeb-774a-4662-af76-16ba99f2ae01 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 112.744604ms - - id: 144 + duration: 111.237754ms + - id: 145 request: proto: HTTP/1.1 proto_major: 1 @@ -7185,7 +6110,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -7195,30 +6120,22 @@ interactions: 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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "snap03", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:55:33.443177+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "available", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 01d2dfa7-ed69-439f-9d16-6327b2215fe8 + - 70b84796-7d4e-4771-99a2-c4dd1bc00cd9 status: 200 OK code: 200 - duration: 90.817305ms - - id: 145 + duration: 102.208759ms + - id: 146 request: proto: HTTP/1.1 proto_major: 1 @@ -7234,7 +6151,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -7244,30 +6161,22 @@ interactions: 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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "snap02", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:55:33.442883+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "available", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cea97efd-6f96-4970-ab9c-26e44ff3d0ed + - 6faae6ca-edbe-49cf-8bb6-947557853d03 status: 200 OK code: 200 - duration: 87.358681ms - - id: 146 + duration: 122.415227ms + - id: 147 request: proto: HTTP/1.1 proto_major: 1 @@ -7283,7 +6192,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -7293,30 +6202,22 @@ interactions: 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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "snap01", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:55:33.448542+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "available", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 58e339de-52c7-46a3-a7db-ddf6ed3ab61d + - 4c5867b6-f3de-4c08-9df6-532d48107368 status: 200 OK code: 200 - duration: 84.105461ms - - id: 147 + duration: 132.12745ms + - id: 148 request: proto: HTTP/1.1 proto_major: 1 @@ -7332,7 +6233,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c method: GET response: proto: HTTP/2.0 @@ -7340,32 +6241,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 821 + content_length: 825 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"}}' + body: '{"image": {"id": "cd79c443-b326-40ec-8302-54a4a213ae5c", "name": "tf-image-eloquent-dubinsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "snap01", "volume_type": "l_ssd", "size": 15000000000}, "extra_volumes": {"2": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "snap03", "volume_type": "l_ssd", "size": 20000000000}, "1": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "snap02", "volume_type": "l_ssd", "size": 10000000000}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:33.799553+00:00", "modification_date": "2025-10-29T22:55:33.799553+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "821" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "825" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 605343cd-d972-4564-8a5b-7f976e9ceaff + - 989f5eb5-c4d2-44bf-819b-1fe83a758212 status: 200 OK code: 200 - duration: 110.536554ms - - id: 148 + duration: 117.94617ms + - id: 149 request: proto: HTTP/1.1 proto_major: 1 @@ -7381,7 +6274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c method: GET response: proto: HTTP/2.0 @@ -7389,32 +6282,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 821 + content_length: 825 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"}}' + body: '{"image": {"id": "cd79c443-b326-40ec-8302-54a4a213ae5c", "name": "tf-image-eloquent-dubinsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "snap01", "volume_type": "l_ssd", "size": 15000000000}, "extra_volumes": {"2": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "snap03", "volume_type": "l_ssd", "size": 20000000000}, "1": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "snap02", "volume_type": "l_ssd", "size": 10000000000}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:33.799553+00:00", "modification_date": "2025-10-29T22:55:33.799553+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "821" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "825" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:44 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45e1b8f8-984f-46ca-8c2b-d950ea42c566 + - 4fca5fc5-c497-4072-a779-0bc73aa6bd37 status: 200 OK code: 200 - duration: 112.120926ms - - id: 149 + duration: 110.153967ms + - id: 150 request: proto: HTTP/1.1 proto_major: 1 @@ -7430,7 +6315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c method: DELETE response: proto: HTTP/2.0 @@ -7442,26 +6327,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1a9ed3ae-a7c1-4dd5-aaa6-a0164705847d + - 9119d65c-2cad-4323-8860-cd7beaecf32a status: 204 No Content code: 204 - duration: 363.206625ms - - id: 150 + duration: 363.628077ms + - id: 151 request: proto: HTTP/1.1 proto_major: 1 @@ -7477,7 +6354,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c method: GET response: proto: HTTP/2.0 @@ -7487,30 +6364,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "cd79c443-b326-40ec-8302-54a4a213ae5c"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e3576560-e80d-4abe-81e2-b402c38de489 + - e0aca907-aa4d-4906-ad56-cb341566f274 status: 404 Not Found code: 404 - duration: 30.039498ms - - id: 151 + duration: 30.59739ms + - id: 152 request: proto: HTTP/1.1 proto_major: 1 @@ -7526,7 +6395,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -7536,30 +6405,22 @@ interactions: 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"}}' + body: '{"snapshot": {"id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42", "name": "snap01", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.908248+00:00", "modification_date": "2025-10-29T22:55:33.448542+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 15000000000, "state": "available", "base_volume": {"id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6470c619-cb2f-4896-a527-96c6d7129442 + - 4ecf7b0b-32be-4f72-a877-79b61249c3f1 status: 200 OK code: 200 - duration: 97.758509ms - - id: 152 + duration: 94.233345ms + - id: 153 request: proto: HTTP/1.1 proto_major: 1 @@ -7575,7 +6436,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -7585,30 +6446,22 @@ interactions: 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"}}' + body: '{"snapshot": {"id": "6f71a23e-7425-44e8-a038-232c22f44608", "name": "snap03", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:28.921468+00:00", "modification_date": "2025-10-29T22:55:33.443177+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "available", "base_volume": {"id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1becf421-a0a8-4cac-9be1-76bbb9cecc59 + - 26a4c2c2-8d32-4ab4-928b-b63020a9da59 status: 200 OK code: 200 - duration: 107.39737ms - - id: 153 + duration: 109.850681ms + - id: 154 request: proto: HTTP/1.1 proto_major: 1 @@ -7624,7 +6477,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -7634,30 +6487,22 @@ interactions: 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"}}' + body: '{"snapshot": {"id": "f3a590b2-1472-48a8-8440-9b61afb933da", "name": "snap02", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:29.445046+00:00", "modification_date": "2025-10-29T22:55:33.442883+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 10000000000, "state": "available", "base_volume": {"id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a1dcf122-708c-44e2-84e1-062c45d1ef75 + - 3eed1f03-22d7-4564-8cbf-74c68d051bc1 status: 200 OK code: 200 - duration: 107.430482ms - - id: 154 + duration: 109.87195ms + - id: 155 request: proto: HTTP/1.1 proto_major: 1 @@ -7673,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/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: DELETE response: proto: HTTP/2.0 @@ -7685,26 +6530,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 69d048ed-fd18-4ec0-b926-edacabd5c911 + - f5125cf0-da2b-4435-9824-ab09af033e02 status: 204 No Content code: 204 - duration: 140.78722ms - - id: 155 + duration: 157.942516ms + - id: 156 request: proto: HTTP/1.1 proto_major: 1 @@ -7720,7 +6557,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: DELETE response: proto: HTTP/2.0 @@ -7732,26 +6569,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 08708a6d-a030-4248-ae6f-8c82ae60abae + - ea529b8b-601f-48e6-b63d-9aec5d5731da status: 204 No Content code: 204 - duration: 154.286929ms - - id: 156 + duration: 148.507792ms + - id: 157 request: proto: HTTP/1.1 proto_major: 1 @@ -7767,40 +6596,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/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 145 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","type":"not_found"}' + body: "" 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 59b7359f-9b26-45d5-8b83-d85301e93246 - status: 404 Not Found - code: 404 - duration: 35.170929ms - - id: 157 + - 077ae5f3-d66e-4da8-b0ba-f45540f01234 + status: 204 No Content + code: 204 + duration: 166.467608ms + - id: 158 request: proto: HTTP/1.1 proto_major: 1 @@ -7816,38 +6635,32 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 + 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: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42"}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "145" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:44 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - edebf121-6151-4f0e-b8c1-d580ff848f5a - status: 204 No Content - code: 204 - duration: 168.67255ms - - id: 158 + - 68d9bfd1-c60c-46db-9771-6b5cf6cf0ee0 + status: 404 Not Found + code: 404 + duration: 27.716863ms + - id: 159 request: proto: HTTP/1.1 proto_major: 1 @@ -7863,7 +6676,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -7873,30 +6686,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "f3a590b2-1472-48a8-8440-9b61afb933da"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d15ba946-8a6e-4c81-96ab-9a1ff748da43 + - 47b7962d-bde3-4693-801b-df8c1c787f4e status: 404 Not Found code: 404 - duration: 28.784436ms - - id: 159 + duration: 25.049715ms + - id: 160 request: proto: HTTP/1.1 proto_major: 1 @@ -7912,7 +6717,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -7922,30 +6727,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "6f71a23e-7425-44e8-a038-232c22f44608"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e09fa138-adae-4424-ba00-5ce067e5aad1 + - e0c0705e-8993-4866-a711-a748d1e046e4 status: 404 Not Found code: 404 - duration: 34.326816ms - - id: 160 + duration: 55.176194ms + - id: 161 request: proto: HTTP/1.1 proto_major: 1 @@ -7961,7 +6758,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 method: GET response: proto: HTTP/2.0 @@ -7969,32 +6766,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + 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-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"}}' + body: '{"server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-awesome-keldysh", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:55:16.836777+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:27.562963+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2305" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2316" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:45 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8c5cbd62-2f3f-4652-b3d2-847695f1553e + - 34481520-5ba3-45ce-8307-d4c88c207d7b status: 200 OK code: 200 - duration: 140.496897ms - - id: 161 + duration: 144.486572ms + - id: 162 request: proto: HTTP/1.1 proto_major: 1 @@ -8010,7 +6799,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 method: GET response: proto: HTTP/2.0 @@ -8018,32 +6807,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2307 + 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-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"}}' + body: '{"server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-dreamy-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:55:25.521531+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:87", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:24.923923+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "401", "node_id": "34"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2307" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2350" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:45 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 75f55d62-60a0-4940-bc04-f74873d57843 + - 80e9184b-ba95-49b0-b59e-1e8d392300ec status: 200 OK code: 200 - duration: 139.748373ms - - id: 162 + duration: 150.005083ms + - id: 163 request: proto: HTTP/1.1 proto_major: 1 @@ -8059,7 +6840,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -8067,32 +6848,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2340 + content_length: 2365 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:25.127378+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "501", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2365" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:45 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 439022d5-a772-4594-811b-13b133ad1114 + - dd3e449c-ae13-4cdf-9326-923e18245265 status: 200 OK code: 200 - duration: 128.061503ms - - id: 163 + duration: 111.234488ms + - id: 164 request: proto: HTTP/1.1 proto_major: 1 @@ -8108,7 +6881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 method: GET response: proto: HTTP/2.0 @@ -8116,32 +6889,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + 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-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"}}' + body: '{"server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-awesome-keldysh", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:55:16.836777+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:54:27.562963+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2305" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2362" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:45 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b39ff012-0104-4259-aec9-128ab0a46f15 + - 596c68d3-d50c-4b54-8d4a-08822685abe5 status: 200 OK code: 200 - duration: 117.466088ms - - id: 164 + duration: 140.44259ms + - id: 165 request: proto: HTTP/1.1 proto_major: 1 @@ -8157,7 +6922,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 method: GET response: proto: HTTP/2.0 @@ -8165,32 +6930,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2340 + content_length: 2304 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-dreamy-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:55:25.521531+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:87", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:54:24.923923+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "401", "node_id": "34"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2304" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:45 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 29fbfbf5-65ae-41cd-b2d1-f0a55329c310 + - 1bae9bcb-71b5-4cd6-8b78-804fc1e706ff status: 200 OK code: 200 - duration: 125.866066ms - - id: 165 + duration: 142.601247ms + - id: 166 request: proto: HTTP/1.1 proto_major: 1 @@ -8206,7 +6963,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -8214,32 +6971,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2307 + content_length: 2365 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:54:25.127378+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "501", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2307" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2365" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:45 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8594562e-6d65-4c72-9ea6-002af19e0df7 + - 723cc349-516c-4058-890a-ce11de7c2d05 status: 200 OK code: 200 - duration: 152.232158ms - - id: 166 + duration: 158.107856ms + - id: 167 request: proto: HTTP/1.1 proto_major: 1 @@ -8257,7 +7006,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/7044ca01-7c67-4085-af04-f7482bca7f0a/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/action method: POST response: proto: HTTP/2.0 @@ -8267,32 +7016,24 @@ interactions: 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"}}' + body: '{"task": {"id": "bcb275c3-c2c2-4441-aa3a-6407e18afb9c", "description": "server_terminate", "status": "pending", "href_from": "/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/action", "href_result": "/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "started_at": "2025-10-29T22:55:37.314202+00:00", "terminated_at": null, "progress": 0, "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 + - Wed, 29 Oct 2025 22:55:37 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8154b47b-5df6-4c85-98e2-19482dff9ad9 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bcb275c3-c2c2-4441-aa3a-6407e18afb9c Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 53a6a046-15a7-4989-886d-733e2ce8d23d + - f095047d-7d31-4b73-88c4-5bbc09425776 status: 202 Accepted code: 202 - duration: 297.01477ms - - id: 167 + duration: 297.088893ms + - id: 168 request: proto: HTTP/1.1 proto_major: 1 @@ -8310,7 +7051,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/10226f00-dc3a-4832-9fab-d77b4d244af5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818/action method: POST response: proto: HTTP/2.0 @@ -8320,32 +7061,24 @@ interactions: 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"}}' + body: '{"task": {"id": "83b08c99-1bad-458a-b1e7-4a20b0eaedda", "description": "server_terminate", "status": "pending", "href_from": "/servers/42a9d058-3b14-4d28-a2b0-335b250ac818/action", "href_result": "/servers/42a9d058-3b14-4d28-a2b0-335b250ac818", "started_at": "2025-10-29T22:55:37.316610+00:00", "terminated_at": null, "progress": 0, "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 + - Wed, 29 Oct 2025 22:55:37 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/64111c86-3207-4273-a29f-323d1042a349 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/83b08c99-1bad-458a-b1e7-4a20b0eaedda Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 64fa949c-3501-4288-93ae-c15e66ec804f + - 04a595f3-ba63-4056-bd55-44a725ff5f92 status: 202 Accepted code: 202 - duration: 265.341689ms - - id: 168 + duration: 291.54761ms + - id: 169 request: proto: HTTP/1.1 proto_major: 1 @@ -8363,7 +7096,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/c78a1974-594b-49e7-b35d-17ddcef3568a/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65/action method: POST response: proto: HTTP/2.0 @@ -8373,32 +7106,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "c667681c-49a8-453f-bd4f-3f2c3829019f", "description": "server_terminate", "status": "pending", "href_from": "/servers/78d779c0-0943-4794-9cfb-55cc019d8c65/action", "href_result": "/servers/78d779c0-0943-4794-9cfb-55cc019d8c65", "started_at": "2025-10-29T22:55:37.319188+00:00", "terminated_at": null, "progress": 0, "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 + - Wed, 29 Oct 2025 22:55:37 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/24aa376a-392f-406b-a912-18d68dd30345 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c667681c-49a8-453f-bd4f-3f2c3829019f Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dd88cdeb-4697-4cda-b36a-6e2186db2956 + - a7dc5f27-6bc0-48a2-99f4-33655c2010c5 status: 202 Accepted code: 202 - duration: 325.651328ms - - id: 169 + duration: 269.970739ms + - id: 170 request: proto: HTTP/1.1 proto_major: 1 @@ -8414,7 +7139,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 method: GET response: proto: HTTP/2.0 @@ -8422,32 +7147,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2268 + content_length: 2313 uncompressed: 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.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"}}' + body: '{"server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-dreamy-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "17e3abb0-7064-48d4-902c-ebe15af2816f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "42a9d058-3b14-4d28-a2b0-335b250ac818", "name": "tf-srv-dreamy-bose"}, "size": 15000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:55:25.521531+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:87", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.044964+00:00", "modification_date": "2025-10-29T22:55:37.082601+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "401", "node_id": "34"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2268" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2313" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:45 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5d674444-9c96-4e1f-90a5-e1485d4d0497 + - 63639e00-9f0a-481d-979d-72cf63b236cd status: 200 OK code: 200 - duration: 133.047862ms - - id: 170 + duration: 130.936413ms + - id: 171 request: proto: HTTP/1.1 proto_major: 1 @@ -8463,7 +7180,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -8471,32 +7188,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2270 + content_length: 2328 uncompressed: 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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:55:37.106548+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "501", "node_id": "40"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2270" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2328" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:45 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 824c32f8-feca-4bf3-8448-36cc05c7b2cf + - f3be04a6-1d7f-42b0-a43b-27df66651de8 status: 200 OK code: 200 - duration: 140.60018ms - - id: 171 + duration: 128.051739ms + - id: 172 request: proto: HTTP/1.1 proto_major: 1 @@ -8512,7 +7221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 method: GET response: proto: HTTP/2.0 @@ -8520,32 +7229,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2303 + 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-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"}}' + body: '{"server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-awesome-keldysh", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0", "name": "tf-srv-awesome-keldysh"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:55:16.836777+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.203381+00:00", "modification_date": "2025-10-29T22:55:37.072797+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2303" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2279" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:45 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 08365fff-db43-4862-84b8-1af295cbe274 + - 29394394-59d6-4b71-bd42-667a4026ce74 status: 200 OK code: 200 - duration: 117.148222ms - - id: 172 + duration: 143.777206ms + - id: 173 request: proto: HTTP/1.1 proto_major: 1 @@ -8561,7 +7262,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 method: GET response: proto: HTTP/2.0 @@ -8571,30 +7272,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"7044ca01-7c67-4085-af04-f7482bca7f0a","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "42a9d058-3b14-4d28-a2b0-335b250ac818"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1dcb71b5-ae9a-40f1-89d0-fe7f7b7219ad + - e80ed4a8-012b-47bc-8e90-5d81d6d8ab28 status: 404 Not Found code: 404 - duration: 49.61969ms - - id: 173 + duration: 48.074985ms + - id: 174 request: proto: HTTP/1.1 proto_major: 1 @@ -8610,7 +7303,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 method: GET response: proto: HTTP/2.0 @@ -8620,30 +7313,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 55247de2-4891-472a-824c-f9e16afc9a31 + - dba567b0-2ff6-41d3-a82c-284d4211573f status: 404 Not Found code: 404 - duration: 38.522415ms - - id: 174 + duration: 44.148252ms + - id: 175 request: proto: HTTP/1.1 proto_major: 1 @@ -8659,7 +7344,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17e3abb0-7064-48d4-902c-ebe15af2816f method: GET response: proto: HTTP/2.0 @@ -8669,30 +7354,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "17e3abb0-7064-48d4-902c-ebe15af2816f"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f098016e-3953-4f7a-b7a6-480865eae985 + - 6e5a434a-e46b-4e3c-b3dd-ad5e7fcbd29a status: 404 Not Found code: 404 - duration: 61.224868ms - - id: 175 + duration: 31.432362ms + - id: 176 request: proto: HTTP/1.1 proto_major: 1 @@ -8708,7 +7385,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9aebdcb-8c7b-4688-b059-f05810a1c3b9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17e3abb0-7064-48d4-902c-ebe15af2816f method: GET response: proto: HTTP/2.0 @@ -8718,30 +7395,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"17e3abb0-7064-48d4-902c-ebe15af2816f","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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fc5a45b2-ad9e-48e4-a094-7cedb0780c79 + - b7c9702c-dc8b-4b77-9747-9599267e4537 status: 404 Not Found code: 404 - duration: 21.236485ms - - id: 176 + duration: 19.53375ms + - id: 177 request: proto: HTTP/1.1 proto_major: 1 @@ -8757,7 +7426,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ccceaa5-00cc-42d9-b71b-f994c3ce16c0 method: GET response: proto: HTTP/2.0 @@ -8767,30 +7436,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"94ca257e-0b67-435d-8055-7edf4ce93225","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 38e90199-7668-4d0f-a7b8-db183f4b55ee + - 78d60cf3-d3c5-484e-b3e4-0e5928416d97 status: 404 Not Found code: 404 - duration: 27.441549ms - - id: 177 + duration: 43.571904ms + - id: 178 request: proto: HTTP/1.1 proto_major: 1 @@ -8806,7 +7467,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ccceaa5-00cc-42d9-b71b-f994c3ce16c0 method: GET response: proto: HTTP/2.0 @@ -8816,30 +7477,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"94ca257e-0b67-435d-8055-7edf4ce93225","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"4ccceaa5-00cc-42d9-b71b-f994c3ce16c0","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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4251019f-e9f9-42f1-8773-7623f4afef6e + - 208f58ce-7355-4ad8-8e35-f020ee6d1e48 status: 404 Not Found code: 404 - duration: 18.093543ms - - id: 178 + duration: 17.658633ms + - id: 179 request: proto: HTTP/1.1 proto_major: 1 @@ -8855,7 +7508,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -8863,32 +7516,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2270 + content_length: 2328 uncompressed: 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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:55:37.106548+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "501", "node_id": "40"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2270" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2328" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:50 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0b70dbd7-5083-4666-aeff-d81a69dbd401 + - ebf8a1d1-c358-45c1-a493-047abb7504c0 status: 200 OK code: 200 - duration: 163.844275ms - - id: 179 + duration: 132.795541ms + - id: 180 request: proto: HTTP/1.1 proto_major: 1 @@ -8904,7 +7549,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -8912,32 +7557,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2270 + content_length: 2328 uncompressed: 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"}}' + body: '{"server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-goodall", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "78d779c0-0943-4794-9cfb-55cc019d8c65", "name": "tf-srv-exciting-goodall"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:55:22.953766+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:17.137664+00:00", "modification_date": "2025-10-29T22:55:37.106548+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "501", "node_id": "40"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2270" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2328" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dbd577c0-4703-4fd7-a8c2-c4ee11696d29 + - 410440fc-e415-4216-864c-34581bb5dbd2 status: 200 OK code: 200 - duration: 140.633885ms - - id: 180 + duration: 147.287706ms + - id: 181 request: proto: HTTP/1.1 proto_major: 1 @@ -8953,7 +7590,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -8963,30 +7600,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "78d779c0-0943-4794-9cfb-55cc019d8c65"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 279e67ef-e9bf-44d7-9e6f-913a9649acff + - e03b4ccc-897d-4a91-8280-5452360bd0d1 status: 404 Not Found code: 404 - duration: 51.437753ms - - id: 181 + duration: 46.269179ms + - id: 182 request: proto: HTTP/1.1 proto_major: 1 @@ -9002,7 +7631,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b17c55bd-bb5c-481c-8d20-a8da601b6e46 method: GET response: proto: HTTP/2.0 @@ -9012,30 +7641,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"88d4a540-539f-4f85-bf96-83d81ba46401","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b17c55bd-bb5c-481c-8d20-a8da601b6e46"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 01731232-d985-4432-9a63-c611f138090a + - 5ad69c45-a77c-4ac5-a87e-94cb0e6d7eb7 status: 404 Not Found code: 404 - duration: 29.383823ms - - id: 182 + duration: 34.324311ms + - id: 183 request: proto: HTTP/1.1 proto_major: 1 @@ -9051,7 +7672,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/88d4a540-539f-4f85-bf96-83d81ba46401 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b17c55bd-bb5c-481c-8d20-a8da601b6e46 method: GET response: proto: HTTP/2.0 @@ -9061,30 +7682,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"88d4a540-539f-4f85-bf96-83d81ba46401","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"b17c55bd-bb5c-481c-8d20-a8da601b6e46","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:05:01 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ecf5c3dd-4398-4ebe-8230-1400c8f893d4 + - fc32186f-7605-4991-9412-a6419dc0ceba status: 404 Not Found code: 404 - duration: 21.193797ms - - id: 183 + duration: 27.176153ms + - id: 184 request: proto: HTTP/1.1 proto_major: 1 @@ -9100,7 +7713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c method: GET response: proto: HTTP/2.0 @@ -9110,30 +7723,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "cd79c443-b326-40ec-8302-54a4a213ae5c"}' headers: Content-Length: - "142" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:01 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5c403ee9-6289-4cef-ab6b-e1f6d8fc61f9 + - f42897e7-a3f7-4fc7-9c20-24991b6763d7 status: 404 Not Found code: 404 - duration: 30.335999ms - - id: 184 + duration: 36.844263ms + - id: 185 request: proto: HTTP/1.1 proto_major: 1 @@ -9149,7 +7754,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 method: GET response: proto: HTTP/2.0 @@ -9159,30 +7764,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 61e08f67-26ed-4977-b1c0-44004b889a4a + - fb47ca77-87bc-4462-93eb-71ff885682d8 status: 404 Not Found code: 404 - duration: 27.378834ms - - id: 185 + duration: 29.072158ms + - id: 186 request: proto: HTTP/1.1 proto_major: 1 @@ -9198,7 +7795,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da method: GET response: proto: HTTP/2.0 @@ -9208,30 +7805,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "f3a590b2-1472-48a8-8440-9b61afb933da"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b8ded8e0-77e5-438a-a6d1-1f066e11d01c + - eaa3c3fa-1ebf-4201-8805-e2677f112334 status: 404 Not Found code: 404 - duration: 30.215813ms - - id: 186 + duration: 30.09445ms + - id: 187 request: proto: HTTP/1.1 proto_major: 1 @@ -9247,7 +7836,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 method: GET response: proto: HTTP/2.0 @@ -9257,30 +7846,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "6f71a23e-7425-44e8-a038-232c22f44608"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3f1f17ad-d0d4-43b7-a650-65a731ee2e24 + - 40980755-3e7f-4573-89a3-0b4e7d8e467b status: 404 Not Found code: 404 - duration: 28.015107ms - - id: 187 + duration: 33.047684ms + - id: 188 request: proto: HTTP/1.1 proto_major: 1 @@ -9296,7 +7877,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 method: GET response: proto: HTTP/2.0 @@ -9306,30 +7887,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "42a9d058-3b14-4d28-a2b0-335b250ac818"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 83d5d353-b4ed-4fa0-9f48-c0ce39e71906 + - 3c3f06a4-d231-4c3d-801e-a0332801c947 status: 404 Not Found code: 404 - duration: 48.313014ms - - id: 188 + duration: 48.732316ms + - id: 189 request: proto: HTTP/1.1 proto_major: 1 @@ -9345,7 +7918,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 method: GET response: proto: HTTP/2.0 @@ -9355,30 +7928,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5d28368f-f7d0-4f73-93ff-63f352665ae4 + - 95ab38cd-703d-4f36-bff9-ea719709d89c status: 404 Not Found code: 404 - duration: 44.986107ms - - id: 189 + duration: 47.709804ms + - id: 190 request: proto: HTTP/1.1 proto_major: 1 @@ -9394,7 +7959,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 method: GET response: proto: HTTP/2.0 @@ -9404,26 +7969,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"7044ca01-7c67-4085-af04-f7482bca7f0a","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "78d779c0-0943-4794-9cfb-55cc019d8c65"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3f9f00b7-244e-482b-a29f-01b4f3a6c59b + - 0c70ba07-88ac-4567-ba9f-7fc39320d787 status: 404 Not Found code: 404 - duration: 38.540061ms + duration: 49.240827ms 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 59017c3df..d78b08eb9 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 @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:53:41 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1c6aec64-bd91-41e9-b171-55a965b3f055 + - 4d337452-fc6c-4ecf-a1dd-24f078c0cb9e X-Total-Count: - "68" status: 200 OK code: 200 - duration: 51.75114ms + duration: 64.709372ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:53:41 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e4f151d-717d-4157-89bf-ac39eecf1934 + - 2bc15180-6af1-4e63-9f51-e4801e775be7 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 40.829975ms + duration: 60.997972ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,43 +127,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b78b1a85-e474-4d4e-bbbb-62dfc4212af0 + - e3436892-613b-4ae7-be7b-a5f1208433a3 status: 200 OK code: 200 - duration: 50.001682ms + duration: 42.908569ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 148 + content_length: 149 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-tender-volhard","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":21000000000},"tags":[]}' + body: '{"name":"tf-volume-hardcore-bhabha","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":21000000000},"tags":[]}' form: {} headers: Content-Type: @@ -182,31 +170,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 422 uncompressed: false - 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"}' + body: '{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:41.625230Z", "updated_at":"2025-10-29T22:53:41.625230Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "421" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "422" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 143862fd-d205-4e57-89a0-fb49ae1453f4 + - 21bfe2aa-6af3-4155-ab02-bf8fdeec086f status: 200 OK code: 200 - duration: 1.733830938s + duration: 241.115961ms - id: 4 request: proto: HTTP/1.1 @@ -223,7 +203,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 method: GET response: proto: HTTP/2.0 @@ -231,43 +211,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 422 uncompressed: false - 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"}' + body: '{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:41.625230Z", "updated_at":"2025-10-29T22:53:41.625230Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "421" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "422" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cc73071a-6932-460e-9515-a569b38dba95 + - badd32ed-0a51-4974-adf6-464e425e8122 status: 200 OK code: 200 - duration: 89.846142ms + duration: 66.258378ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 239 + content_length: 244 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-condescending-keller","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: @@ -282,33 +254,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1744 + content_length: 1754 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: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"}}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:42.306143+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1744" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1754" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:53:42 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 491f2c56-2071-435b-8f62-9d3a1563de7d + - 06cb6d0c-e0c3-40a5-9cf9-f0dfa1444884 status: 201 Created code: 201 - duration: 2.694280095s + duration: 1.102773094s - id: 6 request: proto: HTTP/1.1 @@ -325,7 +289,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -333,31 +297,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1744 + content_length: 1754 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: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"}}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:42.306143+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1744" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1754" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bd232eac-fcfd-4feb-9606-f02e804f8f08 + - ddfa4906-8f19-47a3-8590-b55308c57333 status: 200 OK code: 200 - duration: 142.394679ms + duration: 148.151669ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -382,31 +338,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1744 + content_length: 1800 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: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"}}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:42.306143+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1744" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1800" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a0b0bf10-bb3c-4183-bbb4-913049ad6778 + - a1d6c822-5c9c-419f-85ea-f5f7efba6e12 status: 200 OK code: 200 - duration: 138.923564ms + duration: 138.356726ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: GET response: proto: HTTP/2.0 @@ -433,29 +381,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:42.453936Z", "updated_at":"2025-10-29T22:53:42.453936Z", "references":[{"id":"955be2ad-ae28-4bde-bc1d-a3e863628114", "product_resource_type":"instance_server", "product_resource_id":"86756a92-27ed-4ad6-9ff1-38e179ff638e", "created_at":"2025-10-29T22:53:42.453936Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:11 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d2819636-67d2-4823-87fd-395165c9a80d + - 2e3b551d-23bd-47d4-a956-482a1a371821 status: 200 OK code: 200 - duration: 89.656547ms + duration: 99.301843ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,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/31731a14-c18c-437b-ac5d-1dad59a6e124/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/action method: POST response: proto: HTTP/2.0 @@ -484,31 +424,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "354abc3e-10a2-4317-b4b8-18040f2a3f4e", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/action", "href_result": "/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e", "started_at": "2025-10-29T22:53:43.395561+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:53:43 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e38e1603-b598-41ff-9e1d-c9aadfa9431f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/354abc3e-10a2-4317-b4b8-18040f2a3f4e Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 205097a7-9b71-49c4-b631-dd01c0addde1 + - eb00cf39-9b58-419c-8130-3d0ea8292f84 status: 202 Accepted code: 202 - duration: 220.711195ms + duration: 241.833575ms - id: 10 request: proto: HTTP/1.1 @@ -525,7 +457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -533,31 +465,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1766 + content_length: 1776 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: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"}}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:43.208091+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1766" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1776" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9b54d3d1-54c4-44cf-b577-d0be83f6eab7 + - ed7d27e9-c18b-434a-bc2b-54743548cb74 status: 200 OK code: 200 - duration: 140.562967ms + duration: 144.880063ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 method: GET response: proto: HTTP/2.0 @@ -582,31 +506,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 423 uncompressed: false - 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"}' + body: '{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:41.625230Z", "updated_at":"2025-10-29T22:53:41.625230Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 37f31b20-5c0a-4f0b-9777-5e17de9a1090 + - 70490803-0f18-4afb-990c-3e38cbdffb89 status: 200 OK code: 200 - duration: 88.092329ms + duration: 90.736598ms - id: 12 request: proto: HTTP/1.1 @@ -623,7 +539,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 method: GET response: proto: HTTP/2.0 @@ -631,31 +547,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 423 uncompressed: false - 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"}' + body: '{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:41.625230Z", "updated_at":"2025-10-29T22:53:41.625230Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8e31ad8a-d4ff-4020-a835-7a25fe518cb9 + - 97adb1ca-dec1-437a-9e60-f7501ac1ea93 status: 200 OK code: 200 - duration: 82.221005ms + duration: 84.12214ms - id: 13 request: proto: HTTP/1.1 @@ -667,7 +575,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"c312ac33-5ca5-477b-8d00-28a444c676aa","name":"tf-snapshot-boring-chaplygin","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + body: '{"volume_id":"1fba214c-c419-4575-95b1-441eb5d5f493","name":"tf-snapshot-dazzling-mestorf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' form: {} headers: Content-Type: @@ -682,31 +590,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 465 + content_length: 466 uncompressed: false - 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"}' + body: '{"id":"99004b21-80cd-4ff3-bdfe-7848b9d29942", "name":"tf-snapshot-dazzling-mestorf", "parent_volume":{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "status":"available"}, "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.182626Z", "updated_at":"2025-10-29T22:53:47.182626Z", "references":[], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "465" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "466" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 25394cf2-d0e1-43b8-95fa-20011dae1d56 + - 2626937a-ac08-4401-9e05-14cbda4734a4 status: 200 OK code: 200 - duration: 1.208348237s + duration: 418.79597ms - id: 14 request: proto: HTTP/1.1 @@ -723,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/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 method: GET response: proto: HTTP/2.0 @@ -731,31 +631,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + 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-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"}}' + body: '{"id":"99004b21-80cd-4ff3-bdfe-7848b9d29942", "name":"tf-snapshot-dazzling-mestorf", "parent_volume":{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "status":"available"}, "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.182626Z", "updated_at":"2025-10-29T22:53:47.182626Z", "references":[], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "466" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e4d73bc1-41ee-404a-bc7b-1a7ea8be4295 + - 4850764b-295b-4b7e-967f-1303a42d65e6 status: 200 OK code: 200 - duration: 142.089165ms + duration: 230.828981ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -780,31 +672,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + 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-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"}}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:45.700599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1910" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8c84ade1-0b25-4d59-8536-1b73d67a20b5 + - 9466e657-9057-4f63-bc06-2816d7059be9 status: 200 OK code: 200 - duration: 133.486312ms + duration: 118.56438ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -829,31 +713,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1956 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","type":"not_found"}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:45.700599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1956" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0c9890f8-fd73-4c6f-a262-480d7e0b116e - status: 404 Not Found - code: 404 - duration: 29.830434ms + - 1af532f0-e2d0-4b08-a48d-4e644df30644 + status: 200 OK + code: 200 + duration: 135.771795ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: GET response: proto: HTTP/2.0 @@ -878,31 +754,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 465 + content_length: 143 uncompressed: false - 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5a6ca56c-04b9-421c-8777-7292ea40cefe"}' headers: Content-Length: - - "465" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3573c524-7ca2-43f6-a60a-8a3c38f74c89 - status: 200 OK - code: 200 - duration: 716.544288ms + - 8d22fe80-d3ad-45cf-ba6f-1db150e62542 + status: 404 Not Found + code: 404 + duration: 48.685812ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: GET response: proto: HTTP/2.0 @@ -929,29 +797,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:42.453936Z", "updated_at":"2025-10-29T22:53:42.453936Z", "references":[{"id":"955be2ad-ae28-4bde-bc1d-a3e863628114", "product_resource_type":"instance_server", "product_resource_id":"86756a92-27ed-4ad6-9ff1-38e179ff638e", "created_at":"2025-10-29T22:53:42.453936Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:17 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9d3c4029-3e48-41cb-86d1-ebb0b3a61740 + - b2d1ec95-239c-45d5-8106-51c2a8f08c2c status: 200 OK code: 200 - duration: 94.273696ms + duration: 81.595025ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +828,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/user_data method: GET response: proto: HTTP/2.0 @@ -978,29 +838,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:17 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f480a2e3-676c-4c8c-9bb6-d6fa7e505e8d + - c74c3013-51d1-49a1-b650-d664abd8b4a5 status: 200 OK code: 200 - duration: 109.760989ms + duration: 95.638855ms - id: 20 request: proto: HTTP/1.1 @@ -1017,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/31731a14-c18c-437b-ac5d-1dad59a6e124/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/private_nics method: GET response: proto: HTTP/2.0 @@ -1027,33 +879,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:17 GMT + - Wed, 29 Oct 2025 22:53:49 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6223a9db-feed-4ed6-84e7-77391d7903a1 + - 690936c4-ec53-49bf-98c0-1229a3183404 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 111.669766ms + duration: 101.731647ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 method: GET response: proto: HTTP/2.0 @@ -1078,31 +922,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 467 uncompressed: false - 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"}' + body: '{"id":"99004b21-80cd-4ff3-bdfe-7848b9d29942", "name":"tf-snapshot-dazzling-mestorf", "parent_volume":{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "status":"available"}, "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.182626Z", "updated_at":"2025-10-29T22:53:47.182626Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "466" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "467" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 097d2eba-f1b0-48b6-ab57-e0972a9911b8 + - 6aa94d7a-5cc0-423e-a102-8184a6f1aea3 status: 200 OK code: 200 - duration: 798.650582ms + duration: 253.542164ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 method: GET response: proto: HTTP/2.0 @@ -1127,31 +963,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 467 uncompressed: false - 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"}' + body: '{"id":"99004b21-80cd-4ff3-bdfe-7848b9d29942", "name":"tf-snapshot-dazzling-mestorf", "parent_volume":{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "status":"available"}, "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.182626Z", "updated_at":"2025-10-29T22:53:47.182626Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "466" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "467" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bbf22641-d666-4685-a81b-71eee8083a09 + - 3217b893-32cb-4eb3-8c8c-bfd2fe355db6 status: 200 OK code: 200 - duration: 626.831117ms + duration: 222.792209ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +996,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 method: GET response: proto: HTTP/2.0 @@ -1176,31 +1004,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 423 uncompressed: false - 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"}' + body: '{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:41.625230Z", "updated_at":"2025-10-29T22:53:41.625230Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2b8a1196-44de-418f-b98e-b13e0eb1f328 + - 8f1fafad-c7a9-40c6-b332-0d0f47e92103 status: 200 OK code: 200 - duration: 81.128044ms + duration: 104.962ms - id: 24 request: proto: HTTP/1.1 @@ -1217,7 +1037,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -1225,31 +1045,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + 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-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"}}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:45.700599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1910" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 06063791-37b5-4f06-ae11-a76d2a21cf29 + - dbf1b374-64e4-4908-b93e-4a196a9c51ae status: 200 OK code: 200 - duration: 148.768692ms + duration: 121.278708ms - id: 25 request: proto: HTTP/1.1 @@ -1266,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/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 method: GET response: proto: HTTP/2.0 @@ -1274,31 +1086,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 467 uncompressed: false - 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"}' + body: '{"id":"99004b21-80cd-4ff3-bdfe-7848b9d29942", "name":"tf-snapshot-dazzling-mestorf", "parent_volume":{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "status":"available"}, "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.182626Z", "updated_at":"2025-10-29T22:53:47.182626Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "466" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "467" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ac82dc69-9f67-4fa3-9597-f06f2827337b + - 3e1f6408-f57b-4619-bcb4-9a404819fcc7 status: 200 OK code: 200 - duration: 533.224742ms + duration: 204.520133ms - id: 26 request: proto: HTTP/1.1 @@ -1315,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/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 method: GET response: proto: HTTP/2.0 @@ -1323,31 +1127,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 423 uncompressed: false - 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"}' + body: '{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:41.625230Z", "updated_at":"2025-10-29T22:53:41.625230Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 806814d5-4b65-417a-b494-9d46147b3d70 + - a9f9fe00-7ea6-4ca7-9e52-0a8f58543699 status: 200 OK code: 200 - duration: 92.092984ms + duration: 76.356813ms - id: 27 request: proto: HTTP/1.1 @@ -1364,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/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -1372,31 +1168,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + 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":"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"}}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:45.700599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1956" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4df3dbce-85ea-4c71-b41a-f2f2bc9c459f + - 1af389f1-074a-49b1-99b7-3bf230d75b97 status: 200 OK code: 200 - duration: 181.490939ms + duration: 139.673762ms - id: 28 request: proto: HTTP/1.1 @@ -1413,7 +1201,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: GET response: proto: HTTP/2.0 @@ -1423,29 +1211,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5a6ca56c-04b9-421c-8777-7292ea40cefe"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 21ed4b0a-0e9e-4805-ba1d-0050e186604d + - 001e5b3c-b1f1-44d2-b6dc-1cf2087a1fea status: 404 Not Found code: 404 - duration: 26.206494ms + duration: 29.255112ms - id: 29 request: proto: HTTP/1.1 @@ -1462,7 +1242,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 method: GET response: proto: HTTP/2.0 @@ -1470,31 +1250,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 467 uncompressed: false - 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"}' + body: '{"id":"99004b21-80cd-4ff3-bdfe-7848b9d29942", "name":"tf-snapshot-dazzling-mestorf", "parent_volume":{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "status":"available"}, "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.182626Z", "updated_at":"2025-10-29T22:53:47.182626Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "467" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 274075a3-f845-40c4-9f50-097782e63a18 + - 1e9ab8a2-e039-47e5-9d85-18d0857fc796 status: 200 OK code: 200 - duration: 86.425263ms + duration: 141.085262ms - id: 30 request: proto: HTTP/1.1 @@ -1511,7 +1283,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: GET response: proto: HTTP/2.0 @@ -1519,31 +1291,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 701 uncompressed: false - 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"}' + body: '{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:42.453936Z", "updated_at":"2025-10-29T22:53:42.453936Z", "references":[{"id":"955be2ad-ae28-4bde-bc1d-a3e863628114", "product_resource_type":"instance_server", "product_resource_id":"86756a92-27ed-4ad6-9ff1-38e179ff638e", "created_at":"2025-10-29T22:53:42.453936Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "466" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 50140e9c-95ea-4bcc-8a92-edd347868a5b + - e7d2b697-b740-4860-b0fc-6976a5993903 status: 200 OK code: 200 - duration: 395.633773ms + duration: 104.322393ms - id: 31 request: proto: HTTP/1.1 @@ -1560,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/31731a14-c18c-437b-ac5d-1dad59a6e124/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/user_data method: GET response: proto: HTTP/2.0 @@ -1570,29 +1334,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f097f747-b76e-47a3-871a-b49429ffd7e0 + - c65d6e06-e7d3-42a9-9d69-3a1019e94c13 status: 200 OK code: 200 - duration: 1.702357854s + duration: 108.290914ms - id: 32 request: proto: HTTP/1.1 @@ -1609,7 +1365,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/private_nics method: GET response: proto: HTTP/2.0 @@ -1619,33 +1375,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 + - Wed, 29 Oct 2025 22:53:54 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a16f84fe-5bd8-4bf7-a89e-126025427087 + - 5eb6b26e-030b-443a-a8d9-585d3441fc3a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.68872ms + duration: 99.321182ms - id: 33 request: proto: HTTP/1.1 @@ -1662,7 +1410,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 method: GET response: proto: HTTP/2.0 @@ -1670,31 +1418,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 423 uncompressed: false - 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"}' + body: '{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:41.625230Z", "updated_at":"2025-10-29T22:53:41.625230Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 90e0949b-daed-4186-88aa-268b56999cf5 + - bbf51abe-98cd-47ec-adaf-bb6ae88c64e7 status: 200 OK code: 200 - duration: 90.711297ms + duration: 88.264808ms - id: 34 request: proto: HTTP/1.1 @@ -1711,7 +1451,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -1719,31 +1459,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + 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-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"}}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:45.700599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1910" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3004fcfa-95eb-4e6d-88bd-27ef9823141a + - 9f4a9fba-e77a-476c-9b9a-8802d4752d0f status: 200 OK code: 200 - duration: 119.833336ms + duration: 147.264466ms - id: 35 request: proto: HTTP/1.1 @@ -1760,7 +1492,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: GET response: proto: HTTP/2.0 @@ -1770,29 +1502,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5a6ca56c-04b9-421c-8777-7292ea40cefe"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f45a3a86-3f6d-46e1-83d7-89ab89bed100 + - a6edf542-8fed-44b5-9ea7-0f2b914ab7f9 status: 404 Not Found code: 404 - duration: 24.656901ms + duration: 27.905799ms - id: 36 request: proto: HTTP/1.1 @@ -1809,7 +1533,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 method: GET response: proto: HTTP/2.0 @@ -1817,31 +1541,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 467 uncompressed: false - 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"}' + body: '{"id":"99004b21-80cd-4ff3-bdfe-7848b9d29942", "name":"tf-snapshot-dazzling-mestorf", "parent_volume":{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "status":"available"}, "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.182626Z", "updated_at":"2025-10-29T22:53:47.182626Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "467" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2d2d6c69-9c4b-4e21-b79c-3ff8d2d14fac + - f5c65622-a84e-4abc-a585-2416765a329f status: 200 OK code: 200 - duration: 88.459016ms + duration: 136.454995ms - id: 37 request: proto: HTTP/1.1 @@ -1858,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/31731a14-c18c-437b-ac5d-1dad59a6e124/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: GET response: proto: HTTP/2.0 @@ -1866,31 +1582,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 701 uncompressed: false - body: '{"user_data":[]}' + body: '{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:42.453936Z", "updated_at":"2025-10-29T22:53:42.453936Z", "references":[{"id":"955be2ad-ae28-4bde-bc1d-a3e863628114", "product_resource_type":"instance_server", "product_resource_id":"86756a92-27ed-4ad6-9ff1-38e179ff638e", "created_at":"2025-10-29T22:53:42.453936Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8a5ea177-c660-41a0-826c-f02433ff8784 + - ab055813-ae6a-4666-b12a-0cca7f60ba30 status: 200 OK code: 200 - duration: 104.247577ms + duration: 88.881151ms - id: 38 request: proto: HTTP/1.1 @@ -1907,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/31731a14-c18c-437b-ac5d-1dad59a6e124/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/user_data method: GET response: proto: HTTP/2.0 @@ -1915,35 +1623,23 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 455c805d-0ea5-4db8-a92a-a411d4a3c8e6 - X-Total-Count: - - "0" + - b2a4fb7f-1f49-419c-8df6-c2b014e4c864 status: 200 OK code: 200 - duration: 91.388346ms + duration: 96.847908ms - id: 39 request: proto: HTTP/1.1 @@ -1960,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/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/private_nics method: GET response: proto: HTTP/2.0 @@ -1968,43 +1664,39 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 20 uncompressed: false - 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"}' + body: '{"private_nics": []}' headers: Content-Length: - - "466" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:53:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 108c849d-397d-41f2-a978-fb705565cb80 + - 0e4356af-d43c-4e84-bcca-cad89edb40f6 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 489.030079ms + duration: 89.498084ms - id: 40 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":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"tf-snapshot-jovial-pare","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + body: '{"volume_id":"5a6ca56c-04b9-421c-8777-7292ea40cefe","name":"tf-snapshot-hardcore-mclaren","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' form: {} headers: Content-Type: @@ -2019,31 +1711,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 470 + content_length: 475 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":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:28.046967Z","zone":"fr-par-1"}' + body: '{"id":"f2d46109-0b16-460b-a7c4-8f14a89f7d10", "name":"tf-snapshot-hardcore-mclaren", "parent_volume":{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.258678Z", "updated_at":"2025-10-29T22:53:55.258678Z", "references":[], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "470" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "475" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2e86586a-7f49-4cf9-9664-3db8a3a740ec + - 56f07a2f-cddf-449b-b405-26220014ccb7 status: 200 OK code: 200 - duration: 713.173154ms + duration: 408.965328ms - id: 41 request: proto: HTTP/1.1 @@ -2060,7 +1744,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 method: GET response: proto: HTTP/2.0 @@ -2068,31 +1752,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 706 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"}' + body: '{"id":"f2d46109-0b16-460b-a7c4-8f14a89f7d10", "name":"tf-snapshot-hardcore-mclaren", "parent_volume":{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.258678Z", "updated_at":"2025-10-29T22:53:55.258678Z", "references":[{"id":"1fa9a6cf-ad5f-4aad-89fe-c1cf48ee84eb", "product_resource_type":"internal", "product_resource_id":"00000000-0000-0000-0000-000000000000", "created_at":"2025-10-29T22:53:55.305545Z", "type":"unknown_type", "status":"attached"}], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "706" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1cc1d608-cd1c-4857-a7e7-94903b9ffafa + - 856d4b1b-9c48-47b1-bea2-7ff1f20ecb84 status: 200 OK code: 200 - duration: 397.754348ms + duration: 224.500143ms - id: 42 request: proto: HTTP/1.1 @@ -2109,7 +1785,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 method: GET response: proto: HTTP/2.0 @@ -2117,31 +1793,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 471 + content_length: 476 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":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:28.046967Z","zone":"fr-par-1"}' + body: '{"id":"f2d46109-0b16-460b-a7c4-8f14a89f7d10", "name":"tf-snapshot-hardcore-mclaren", "parent_volume":{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.258678Z", "updated_at":"2025-10-29T22:53:55.258678Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "471" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "476" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:56 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e4bc6c02-6e87-438a-a96a-e2ede989f377 + - 3b7ed07a-5585-4a5c-9eec-f9bffb8aea8e status: 200 OK code: 200 - duration: 471.316564ms + duration: 184.214667ms - id: 43 request: proto: HTTP/1.1 @@ -2158,7 +1826,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 method: GET response: proto: HTTP/2.0 @@ -2166,43 +1834,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 471 + content_length: 476 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":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:28.046967Z","zone":"fr-par-1"}' + body: '{"id":"f2d46109-0b16-460b-a7c4-8f14a89f7d10", "name":"tf-snapshot-hardcore-mclaren", "parent_volume":{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.258678Z", "updated_at":"2025-10-29T22:53:55.258678Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "471" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "476" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 58cb4106-1ff7-424d-ae70-f58a228eadd9 + - 7dbce0d7-813d-4909-b44c-bb053ae0b034 status: 200 OK code: 200 - duration: 846.488078ms + duration: 153.296691ms - id: 44 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-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}' + body: '{"name":"tf-image-wonderful-heyrovsky","root_volume":"f2d46109-0b16-460b-a7c4-8f14a89f7d10","arch":"x86_64","extra_volumes":{"1":{"id":"99004b21-80cd-4ff3-bdfe-7848b9d29942"}},"project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false}' form: {} headers: Content-Type: @@ -2217,33 +1877,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 693 uncompressed: false - 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"}}' + body: '{"image": {"id": "c993260b-9908-4683-b73c-139d208f851e", "name": "tf-image-wonderful-heyrovsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "f2d46109-0b16-460b-a7c4-8f14a89f7d10", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "99004b21-80cd-4ff3-bdfe-7848b9d29942", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:54.283999+00:00", "modification_date": "2025-10-29T22:54:54.283999+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:54:54 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bc466e83-96ec-460f-b084-fca9c8101f0c + - 6ff6ab55-a85b-48cf-9d61-f5d564f0e7c8 status: 201 Created code: 201 - duration: 1.33953532s + duration: 669.494681ms - id: 45 request: proto: HTTP/1.1 @@ -2260,7 +1912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e method: GET response: proto: HTTP/2.0 @@ -2268,31 +1920,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 693 uncompressed: false - 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"}}' + body: '{"image": {"id": "c993260b-9908-4683-b73c-139d208f851e", "name": "tf-image-wonderful-heyrovsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "f2d46109-0b16-460b-a7c4-8f14a89f7d10", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "99004b21-80cd-4ff3-bdfe-7848b9d29942", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:54.283999+00:00", "modification_date": "2025-10-29T22:54:54.283999+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c7bf0dc2-e4a6-41c6-a927-f17bba0d0513 + - fc99d72a-1b27-4212-844b-36886df9de29 status: 200 OK code: 200 - duration: 145.578178ms + duration: 127.238353ms - id: 46 request: proto: HTTP/1.1 @@ -2309,7 +1953,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e method: GET response: proto: HTTP/2.0 @@ -2317,31 +1961,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 693 uncompressed: false - 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"}}' + body: '{"image": {"id": "c993260b-9908-4683-b73c-139d208f851e", "name": "tf-image-wonderful-heyrovsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "f2d46109-0b16-460b-a7c4-8f14a89f7d10", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "99004b21-80cd-4ff3-bdfe-7848b9d29942", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:54.283999+00:00", "modification_date": "2025-10-29T22:54:54.283999+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2fc9111a-b003-49ca-aba3-b4942c06a80a + - 720ae4f6-6c20-4c7c-92f9-a64b1501356f status: 200 OK code: 200 - duration: 109.480134ms + duration: 106.902054ms - id: 47 request: proto: HTTP/1.1 @@ -2358,7 +1994,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 method: GET response: proto: HTTP/2.0 @@ -2366,31 +2002,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 423 uncompressed: false - 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"}' + body: '{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:41.625230Z", "updated_at":"2025-10-29T22:53:41.625230Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3cd5422f-8bdb-4bf6-a1d5-c41954fcea81 + - ed7dbe22-c261-4e13-b112-81189c624668 status: 200 OK code: 200 - duration: 85.43329ms + duration: 80.916683ms - id: 48 request: proto: HTTP/1.1 @@ -2407,7 +2035,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -2415,31 +2043,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + 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-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"}}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:45.700599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1910" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3c736862-0242-4de9-b0d1-4a5680c154ea + - 1f476d70-b613-4fcf-86db-d10b2ad6f649 status: 200 OK code: 200 - duration: 160.110237ms + duration: 134.468594ms - id: 49 request: proto: HTTP/1.1 @@ -2456,7 +2076,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 method: GET response: proto: HTTP/2.0 @@ -2464,31 +2084,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 693 uncompressed: false - 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"}' + body: '{"id":"99004b21-80cd-4ff3-bdfe-7848b9d29942", "name":"tf-snapshot-dazzling-mestorf", "parent_volume":{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "status":"available"}, "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.182626Z", "updated_at":"2025-10-29T22:54:54.579603Z", "references":[{"id":"fbc5139b-e0f6-49f3-abe2-d6513e4b3a0d", "product_resource_type":"instance_image", "product_resource_id":"c993260b-9908-4683-b73c-139d208f851e", "created_at":"2025-10-29T22:54:54.579603Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "692" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 98ebdb7c-033a-4756-8c72-5a8fcf98ba14 + - be632eec-8f55-4f3c-b49b-2eee4593fcef status: 200 OK code: 200 - duration: 148.810557ms + duration: 139.656244ms - id: 50 request: proto: HTTP/1.1 @@ -2505,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/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 method: GET response: proto: HTTP/2.0 @@ -2513,31 +2125,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 702 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: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"}' + body: '{"id":"f2d46109-0b16-460b-a7c4-8f14a89f7d10", "name":"tf-snapshot-hardcore-mclaren", "parent_volume":{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.258678Z", "updated_at":"2025-10-29T22:54:54.322144Z", "references":[{"id":"923053c2-c3f4-4b2c-928e-872fd018e461", "product_resource_type":"instance_image", "product_resource_id":"c993260b-9908-4683-b73c-139d208f851e", "created_at":"2025-10-29T22:54:54.322144Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "697" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "702" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9921cd2-05b4-4529-919e-8dfc31aa6641 + - c2e3948a-7c84-48b2-b1c1-a51c101a1a28 status: 200 OK code: 200 - duration: 159.564344ms + duration: 162.314776ms - id: 51 request: proto: HTTP/1.1 @@ -2554,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/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e method: GET response: proto: HTTP/2.0 @@ -2562,31 +2166,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 693 uncompressed: false - 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"}}' + body: '{"image": {"id": "c993260b-9908-4683-b73c-139d208f851e", "name": "tf-image-wonderful-heyrovsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "f2d46109-0b16-460b-a7c4-8f14a89f7d10", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "99004b21-80cd-4ff3-bdfe-7848b9d29942", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:54.283999+00:00", "modification_date": "2025-10-29T22:54:54.283999+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e2878915-2e0d-4e2e-a22e-07fb69cad528 + - 23ba7da5-6855-42eb-95ce-8b7b2edae536 status: 200 OK code: 200 - duration: 166.053179ms + duration: 110.618434ms - id: 52 request: proto: HTTP/1.1 @@ -2603,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/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 method: GET response: proto: HTTP/2.0 @@ -2611,31 +2207,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 423 uncompressed: false - 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"}' + body: '{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:41.625230Z", "updated_at":"2025-10-29T22:53:41.625230Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 12422547-a19d-4434-908b-408150bcf12d + - cb8d18aa-0386-4be3-b9bc-ce872be36403 status: 200 OK code: 200 - duration: 107.529479ms + duration: 105.647369ms - id: 53 request: proto: HTTP/1.1 @@ -2652,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/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -2660,31 +2248,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + 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":"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"}}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:45.700599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1956" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1c50373e-fa93-4200-9d45-691489b906a4 + - 49edad4c-8c47-46a8-84b8-62f359c5317a status: 200 OK code: 200 - duration: 151.331925ms + duration: 139.538676ms - id: 54 request: proto: HTTP/1.1 @@ -2701,7 +2281,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: GET response: proto: HTTP/2.0 @@ -2711,29 +2291,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5a6ca56c-04b9-421c-8777-7292ea40cefe"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 63a89735-6838-4508-a450-b4d2911c63b5 + - 986918c7-b239-4c49-8ed2-f8d2fbee03c7 status: 404 Not Found code: 404 - duration: 26.783464ms + duration: 30.590594ms - id: 55 request: proto: HTTP/1.1 @@ -2750,7 +2322,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: GET response: proto: HTTP/2.0 @@ -2760,29 +2332,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:42.453936Z", "updated_at":"2025-10-29T22:53:42.453936Z", "references":[{"id":"955be2ad-ae28-4bde-bc1d-a3e863628114", "product_resource_type":"instance_server", "product_resource_id":"86756a92-27ed-4ad6-9ff1-38e179ff638e", "created_at":"2025-10-29T22:53:42.453936Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:00 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 90163749-7446-4192-abe9-f58cc1a52b34 + - 766a93a2-38e6-410d-9275-485ceb1adf35 status: 200 OK code: 200 - duration: 75.218193ms + duration: 83.528876ms - id: 56 request: proto: HTTP/1.1 @@ -2799,7 +2363,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 method: GET response: proto: HTTP/2.0 @@ -2807,31 +2371,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 693 uncompressed: false - body: '{"user_data":[]}' + body: '{"id":"99004b21-80cd-4ff3-bdfe-7848b9d29942", "name":"tf-snapshot-dazzling-mestorf", "parent_volume":{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "status":"available"}, "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.182626Z", "updated_at":"2025-10-29T22:54:54.579603Z", "references":[{"id":"fbc5139b-e0f6-49f3-abe2-d6513e4b3a0d", "product_resource_type":"instance_image", "product_resource_id":"c993260b-9908-4683-b73c-139d208f851e", "created_at":"2025-10-29T22:54:54.579603Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1297533b-2e3f-4b8b-b658-608d813b78da + - 2466176b-9933-4a67-9bf0-c8ee27aa0b20 status: 200 OK code: 200 - duration: 94.377266ms + duration: 222.143513ms - id: 57 request: proto: HTTP/1.1 @@ -2848,7 +2404,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/user_data method: GET response: proto: HTTP/2.0 @@ -2856,35 +2412,23 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - faab3cf5-f724-43ae-9c04-cf16d789194d - X-Total-Count: - - "0" + - 2d980b57-34df-48cb-afb1-86a13af78e48 status: 200 OK code: 200 - duration: 109.784195ms + duration: 95.008455ms - id: 58 request: proto: HTTP/1.1 @@ -2901,7 +2445,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/private_nics method: GET response: proto: HTTP/2.0 @@ -2909,31 +2453,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 20 uncompressed: false - 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"}' + body: '{"private_nics": []}' headers: Content-Length: - - "692" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8a8743f8-0cbe-4eb9-bdcc-342d3f1bcd43 + - 64b6b5f1-9f83-4b39-ba2d-724c5ec9b05b + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 739.353514ms + duration: 92.002604ms - id: 59 request: proto: HTTP/1.1 @@ -2950,7 +2490,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 method: GET response: proto: HTTP/2.0 @@ -2958,31 +2498,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 702 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: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"}' + body: '{"id":"f2d46109-0b16-460b-a7c4-8f14a89f7d10", "name":"tf-snapshot-hardcore-mclaren", "parent_volume":{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.258678Z", "updated_at":"2025-10-29T22:54:54.322144Z", "references":[{"id":"923053c2-c3f4-4b2c-928e-872fd018e461", "product_resource_type":"instance_image", "product_resource_id":"c993260b-9908-4683-b73c-139d208f851e", "created_at":"2025-10-29T22:54:54.322144Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "697" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "702" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f029f2fc-07b6-4457-9337-c78a8cc492a9 + - 5eca0dc0-19b5-4538-bcf7-09f700f13d7a status: 200 OK code: 200 - duration: 752.832042ms + duration: 183.337528ms - id: 60 request: proto: HTTP/1.1 @@ -2999,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/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e method: GET response: proto: HTTP/2.0 @@ -3007,31 +2539,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 693 uncompressed: false - 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"}}' + body: '{"image": {"id": "c993260b-9908-4683-b73c-139d208f851e", "name": "tf-image-wonderful-heyrovsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "f2d46109-0b16-460b-a7c4-8f14a89f7d10", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "99004b21-80cd-4ff3-bdfe-7848b9d29942", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:54.283999+00:00", "modification_date": "2025-10-29T22:54:54.283999+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1d6c0324-ec7b-403f-94a7-be97679a8630 + - 316d3c46-2a54-42a9-ad82-89bcdf3c3090 status: 200 OK code: 200 - duration: 122.692222ms + duration: 142.641116ms - id: 61 request: proto: HTTP/1.1 @@ -3048,7 +2572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 method: GET response: proto: HTTP/2.0 @@ -3056,31 +2580,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 423 uncompressed: false - 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"}' + body: '{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:41.625230Z", "updated_at":"2025-10-29T22:53:41.625230Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - efc08b13-3dde-4961-8ffc-97e78ab11561 + - 8f25f19d-41dc-433d-83d7-a54853554e87 status: 200 OK code: 200 - duration: 106.575652ms + duration: 82.482411ms - id: 62 request: proto: HTTP/1.1 @@ -3097,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/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -3105,31 +2621,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + 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-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"}}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:45.700599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1910" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8fa2f223-ad4a-40e8-97d2-55fdfb753e7d + - 952cd947-2435-429a-9b9e-2e1312870341 status: 200 OK code: 200 - duration: 150.01101ms + duration: 158.579071ms - id: 63 request: proto: HTTP/1.1 @@ -3146,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/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: GET response: proto: HTTP/2.0 @@ -3154,31 +2662,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 143 uncompressed: false - 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5a6ca56c-04b9-421c-8777-7292ea40cefe"}' headers: Content-Length: - - "692" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 153a6f7b-68c2-4089-a9b6-3368efc32926 - status: 200 OK - code: 200 - duration: 660.0863ms + - e86f3545-b6a7-43af-8aa2-1bd1a9008202 + status: 404 Not Found + code: 404 + duration: 29.161391ms - id: 64 request: proto: HTTP/1.1 @@ -3195,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/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: GET response: proto: HTTP/2.0 @@ -3203,31 +2703,23 @@ 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":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","type":"not_found"}' + body: '{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:42.453936Z", "updated_at":"2025-10-29T22:53:42.453936Z", "references":[{"id":"955be2ad-ae28-4bde-bc1d-a3e863628114", "product_resource_type":"instance_server", "product_resource_id":"86756a92-27ed-4ad6-9ff1-38e179ff638e", "created_at":"2025-10-29T22:53:42.453936Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bfa3f681-50c5-46c4-8694-b01bd11c59c3 - status: 404 Not Found - code: 404 - duration: 1.105879557s + - b95dd8bb-9c65-4e3d-84d0-5eaaa53b4ac1 + status: 200 OK + code: 200 + duration: 93.194342ms - id: 65 request: proto: HTTP/1.1 @@ -3244,7 +2736,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 method: GET response: proto: HTTP/2.0 @@ -3252,31 +2744,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 693 uncompressed: false - 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"}' + body: '{"id":"99004b21-80cd-4ff3-bdfe-7848b9d29942", "name":"tf-snapshot-dazzling-mestorf", "parent_volume":{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "status":"available"}, "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.182626Z", "updated_at":"2025-10-29T22:54:54.579603Z", "references":[{"id":"fbc5139b-e0f6-49f3-abe2-d6513e4b3a0d", "product_resource_type":"instance_image", "product_resource_id":"c993260b-9908-4683-b73c-139d208f851e", "created_at":"2025-10-29T22:54:54.579603Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 01fef336-c79e-44ff-bbe0-c5f6d948ca30 + - 88cff9ee-0569-4269-8f32-207bea4aff22 status: 200 OK code: 200 - duration: 101.139584ms + duration: 226.096868ms - id: 66 request: proto: HTTP/1.1 @@ -3293,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/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/user_data method: GET response: proto: HTTP/2.0 @@ -3303,29 +2787,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e2a435f9-a6c9-4daa-94b7-8642cb3d3309 + - a3feeefc-cc05-41f4-a523-ac8986480e48 status: 200 OK code: 200 - duration: 92.697349ms + duration: 90.485877ms - id: 67 request: proto: HTTP/1.1 @@ -3342,7 +2818,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/private_nics method: GET response: proto: HTTP/2.0 @@ -3352,33 +2828,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:03 GMT + - Wed, 29 Oct 2025 22:54:57 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 16e8cfb4-22ed-4a5f-824e-f025ad0bd924 + - d8f4855a-1da6-44c3-9113-9eeec738bac7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 139.256322ms + duration: 91.742918ms - id: 68 request: proto: HTTP/1.1 @@ -3395,7 +2863,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 method: GET response: proto: HTTP/2.0 @@ -3403,31 +2871,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 702 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: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"}' + body: '{"id":"f2d46109-0b16-460b-a7c4-8f14a89f7d10", "name":"tf-snapshot-hardcore-mclaren", "parent_volume":{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.258678Z", "updated_at":"2025-10-29T22:54:54.322144Z", "references":[{"id":"923053c2-c3f4-4b2c-928e-872fd018e461", "product_resource_type":"instance_image", "product_resource_id":"c993260b-9908-4683-b73c-139d208f851e", "created_at":"2025-10-29T22:54:54.322144Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "697" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "702" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - abd44bd9-d4cd-46b6-859f-ca8e7ae206d4 + - 8657cac5-b7d3-42ca-b190-8ef38d584523 status: 200 OK code: 200 - duration: 587.618217ms + duration: 271.496335ms - id: 69 request: proto: HTTP/1.1 @@ -3444,7 +2904,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e method: GET response: proto: HTTP/2.0 @@ -3452,43 +2912,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 693 uncompressed: false - 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"}}' + body: '{"image": {"id": "c993260b-9908-4683-b73c-139d208f851e", "name": "tf-image-wonderful-heyrovsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "f2d46109-0b16-460b-a7c4-8f14a89f7d10", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "99004b21-80cd-4ff3-bdfe-7848b9d29942", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:54.283999+00:00", "modification_date": "2025-10-29T22:54:54.283999+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c12846a1-8211-43c7-9a81-b011dab8128a + - f5bad555-5767-439c-a6f2-13a35759abb5 status: 200 OK code: 200 - duration: 181.006835ms + duration: 118.898418ms - id: 70 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 154 + content_length: 149 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-intelligent-meitner","perf_iops":15000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":22000000000},"tags":[]}' + body: '{"name":"tf-volume-boring-ritchie","perf_iops":15000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":22000000000},"tags":[]}' form: {} headers: Content-Type: @@ -3503,31 +2955,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 428 + content_length: 423 uncompressed: false - 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"}' + body: '{"id":"9801e908-338b-499b-af2b-95f9fb3c2b69", "name":"tf-volume-boring-ritchie", "type":"sbs_15k", "size":22000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:58.161589Z", "updated_at":"2025-10-29T22:54:58.161589Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "428" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bc665e53-55ba-45a1-bf25-d91db63e12b1 + - 9c7568a2-f6e3-47aa-8cfe-d9b3af3ff0ea status: 200 OK code: 200 - duration: 789.006583ms + duration: 253.656906ms - id: 71 request: proto: HTTP/1.1 @@ -3544,7 +2988,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/911959ef-ca14-4d82-8371-e6528ccaa28b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 method: GET response: proto: HTTP/2.0 @@ -3552,31 +2996,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 429 + content_length: 423 uncompressed: false - 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"}' + body: '{"id":"9801e908-338b-499b-af2b-95f9fb3c2b69", "name":"tf-volume-boring-ritchie", "type":"sbs_15k", "size":22000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:58.161589Z", "updated_at":"2025-10-29T22:54:58.161589Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "429" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 48428068-ea27-4086-9d63-8cf212de75de + - 5f7fe27e-6270-49aa-8ec2-48fec566132c status: 200 OK code: 200 - duration: 94.17967ms + duration: 88.061615ms - id: 72 request: proto: HTTP/1.1 @@ -3593,7 +3029,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/911959ef-ca14-4d82-8371-e6528ccaa28b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 method: GET response: proto: HTTP/2.0 @@ -3601,131 +3037,107 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 429 + content_length: 424 uncompressed: false - 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"}' + body: '{"id":"9801e908-338b-499b-af2b-95f9fb3c2b69", "name":"tf-volume-boring-ritchie", "type":"sbs_15k", "size":22000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:58.161589Z", "updated_at":"2025-10-29T22:54:58.161589Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "429" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "424" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b3eb8f40-4746-4513-a3fe-fb08dc7c8492 + - 4b440475-c758-4880-a383-ca2f9fb85525 status: 200 OK code: 200 - duration: 90.677725ms + duration: 83.333694ms - id: 73 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":"911959ef-ca14-4d82-8371-e6528ccaa28b","name":"tf-snapshot-vigilant-villani","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/block/v1alpha1/zones/fr-par-1/snapshots - method: POST + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 471 + content_length: 424 uncompressed: false - 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"}' + body: '{"id":"9801e908-338b-499b-af2b-95f9fb3c2b69", "name":"tf-volume-boring-ritchie", "type":"sbs_15k", "size":22000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:58.161589Z", "updated_at":"2025-10-29T22:54:58.161589Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "471" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "424" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cdbbeefc-f80a-44f5-84ea-8892a69896d0 + - 243e82a8-bc68-455f-9d26-17a4ffac957f status: 200 OK code: 200 - duration: 635.085123ms + duration: 79.351117ms - id: 74 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 146 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"volume_id":"9801e908-338b-499b-af2b-95f9fb3c2b69","name":"tf-snapshot-sweet-saha","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/6fb2faf1-07e8-41fd-9c72-82893d486889 - 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: 471 + content_length: 460 uncompressed: false - 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"}' + body: '{"id":"0af01e12-a33b-4fd9-95e8-fc4ac6225897", "name":"tf-snapshot-sweet-saha", "parent_volume":{"id":"9801e908-338b-499b-af2b-95f9fb3c2b69", "name":"tf-volume-boring-ritchie", "type":"sbs_15k", "status":"available"}, "size":22000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:03.752142Z", "updated_at":"2025-10-29T22:55:03.752142Z", "references":[], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "471" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "460" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7b806e19-a9e7-4e5c-9219-a6b479e8a2e8 + - a0a5e8fa-a0e8-4f83-8fad-291a670cafd2 status: 200 OK code: 200 - duration: 619.347599ms + duration: 384.740496ms - id: 75 request: proto: HTTP/1.1 @@ -3742,7 +3154,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/6fb2faf1-07e8-41fd-9c72-82893d486889 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 method: GET response: proto: HTTP/2.0 @@ -3750,31 +3162,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 472 + content_length: 460 uncompressed: false - 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"}' + body: '{"id":"0af01e12-a33b-4fd9-95e8-fc4ac6225897", "name":"tf-snapshot-sweet-saha", "parent_volume":{"id":"9801e908-338b-499b-af2b-95f9fb3c2b69", "name":"tf-volume-boring-ritchie", "type":"sbs_15k", "status":"available"}, "size":22000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:03.752142Z", "updated_at":"2025-10-29T22:55:03.752142Z", "references":[], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "472" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "460" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2b485ac6-5a6c-4c89-939f-6fd41893d15a + - 892e55d2-a15a-413d-868c-9602a568668e status: 200 OK code: 200 - duration: 375.673197ms + duration: 256.224251ms - id: 76 request: proto: HTTP/1.1 @@ -3791,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/block/v1alpha1/zones/fr-par-1/snapshots/6fb2faf1-07e8-41fd-9c72-82893d486889 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 method: GET response: proto: HTTP/2.0 @@ -3799,31 +3203,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 472 + content_length: 461 uncompressed: false - 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"}' + body: '{"id":"0af01e12-a33b-4fd9-95e8-fc4ac6225897", "name":"tf-snapshot-sweet-saha", "parent_volume":{"id":"9801e908-338b-499b-af2b-95f9fb3c2b69", "name":"tf-volume-boring-ritchie", "type":"sbs_15k", "status":"available"}, "size":22000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:03.752142Z", "updated_at":"2025-10-29T22:55:03.752142Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "472" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "461" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8d7dcc46-01cc-46da-816f-a04e08b6790b + - 4b93515b-c7ec-4f7c-a0d3-1915ff2c7f20 status: 200 OK code: 200 - duration: 535.05028ms + duration: 209.252386ms - id: 77 request: proto: HTTP/1.1 @@ -3840,7 +3236,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 method: GET response: proto: HTTP/2.0 @@ -3848,31 +3244,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 461 uncompressed: false - 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"}}' + body: '{"id":"0af01e12-a33b-4fd9-95e8-fc4ac6225897", "name":"tf-snapshot-sweet-saha", "parent_volume":{"id":"9801e908-338b-499b-af2b-95f9fb3c2b69", "name":"tf-volume-boring-ritchie", "type":"sbs_15k", "status":"available"}, "size":22000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:03.752142Z", "updated_at":"2025-10-29T22:55:03.752142Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "461" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6059d172-7cd1-489c-b618-e74fb31370e7 + - 5003f4a0-163d-49b4-baae-2bae2a46de5c status: 200 OK code: 200 - duration: 143.881794ms + duration: 229.524304ms - id: 78 request: proto: HTTP/1.1 @@ -3889,7 +3277,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e method: GET response: proto: HTTP/2.0 @@ -3897,131 +3285,107 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 693 uncompressed: false - 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"}}' + body: '{"image": {"id": "c993260b-9908-4683-b73c-139d208f851e", "name": "tf-image-wonderful-heyrovsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "f2d46109-0b16-460b-a7c4-8f14a89f7d10", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "99004b21-80cd-4ff3-bdfe-7848b9d29942", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:54.283999+00:00", "modification_date": "2025-10-29T22:54:54.283999+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a38ce076-54ce-427a-891e-d2e6734d313c + - cfc831cc-5cf9-4753-8ce7-ae8bd0b5532c status: 200 OK code: 200 - duration: 128.337095ms + duration: 134.731711ms - id: 79 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: '{"name":"tf-image-relaxed-goldstine","arch":"x86_64","extra_volumes":{"1":{"id":"6fb2faf1-07e8-41fd-9c72-82893d486889"}},"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/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea - method: PATCH + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 693 uncompressed: false - 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"}}' + body: '{"image": {"id": "c993260b-9908-4683-b73c-139d208f851e", "name": "tf-image-wonderful-heyrovsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "f2d46109-0b16-460b-a7c4-8f14a89f7d10", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "99004b21-80cd-4ff3-bdfe-7848b9d29942", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:54.283999+00:00", "modification_date": "2025-10-29T22:54:54.283999+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 606317a8-ee79-4ca1-8531-3b3b87cb6094 + - 12a3a991-d61e-4dbc-b971-a2119ab9fabc status: 200 OK code: 200 - duration: 1.1529741s + duration: 114.645169ms - id: 80 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: '{"name":"tf-image-wonderful-heyrovsky","arch":"x86_64","extra_volumes":{"1":{"id":"0af01e12-a33b-4fd9-95e8-fc4ac6225897"}},"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/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 693 uncompressed: false - 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"}}' + body: '{"image": {"id": "c993260b-9908-4683-b73c-139d208f851e", "name": "tf-image-wonderful-heyrovsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "f2d46109-0b16-460b-a7c4-8f14a89f7d10", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "0af01e12-a33b-4fd9-95e8-fc4ac6225897", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:54.283999+00:00", "modification_date": "2025-10-29T22:54:54.283999+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4e2ab17-a8c9-4aa6-81b8-5100fb4233cb + - 951a1d63-da12-498e-ae63-07d4ad04523f status: 200 OK code: 200 - duration: 142.023873ms + duration: 520.228979ms - id: 81 request: proto: HTTP/1.1 @@ -4038,7 +3402,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e method: GET response: proto: HTTP/2.0 @@ -4046,31 +3410,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 693 uncompressed: false - 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"}}' + body: '{"image": {"id": "c993260b-9908-4683-b73c-139d208f851e", "name": "tf-image-wonderful-heyrovsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "f2d46109-0b16-460b-a7c4-8f14a89f7d10", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "0af01e12-a33b-4fd9-95e8-fc4ac6225897", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:54.283999+00:00", "modification_date": "2025-10-29T22:54:54.283999+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 704539f8-5290-4985-8783-3c7ea30abe22 + - 51a5c7f6-036f-4352-b68a-ac492ef64a57 status: 200 OK code: 200 - duration: 135.276004ms + duration: 106.867144ms - id: 82 request: proto: HTTP/1.1 @@ -4087,7 +3443,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e method: GET response: proto: HTTP/2.0 @@ -4095,31 +3451,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 693 uncompressed: false - 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"}' + body: '{"image": {"id": "c993260b-9908-4683-b73c-139d208f851e", "name": "tf-image-wonderful-heyrovsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "f2d46109-0b16-460b-a7c4-8f14a89f7d10", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "0af01e12-a33b-4fd9-95e8-fc4ac6225897", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:54.283999+00:00", "modification_date": "2025-10-29T22:54:54.283999+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c36d4315-cb1d-468f-9d8e-26cddbc2bd93 + - f1bffb35-853b-4bf3-8ee8-3dae27215a09 status: 200 OK code: 200 - duration: 85.439212ms + duration: 132.666669ms - id: 83 request: proto: HTTP/1.1 @@ -4136,7 +3484,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/911959ef-ca14-4d82-8371-e6528ccaa28b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 method: GET response: proto: HTTP/2.0 @@ -4144,31 +3492,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 429 + content_length: 423 uncompressed: false - 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"}' + body: '{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:41.625230Z", "updated_at":"2025-10-29T22:53:41.625230Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "429" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 21f8ec36-7e1b-4e23-9ad0-fe44f01a993d + - 0dc07dbf-5ba3-4cdd-a72d-302a6e1c799a status: 200 OK code: 200 - duration: 84.713171ms + duration: 77.527568ms - id: 84 request: proto: HTTP/1.1 @@ -4185,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/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 method: GET response: proto: HTTP/2.0 @@ -4193,31 +3533,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 424 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: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"}}' + body: '{"id":"9801e908-338b-499b-af2b-95f9fb3c2b69", "name":"tf-volume-boring-ritchie", "type":"sbs_15k", "size":22000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:58.161589Z", "updated_at":"2025-10-29T22:54:58.161589Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "424" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cf3efa8a-d685-4b28-affe-09213dfa2d3d + - aa68e8f6-97c9-49a7-bcc8-d02f282b6300 status: 200 OK code: 200 - duration: 140.614151ms + duration: 90.290264ms - id: 85 request: proto: HTTP/1.1 @@ -4234,7 +3566,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -4242,31 +3574,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 1956 uncompressed: false - 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"}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:45.700599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "692" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1956" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5475eee6-23a9-4462-818d-b64f89b0c50e + - a0f2d9b1-94b0-4fc2-b40e-bb35ed8430dd status: 200 OK code: 200 - duration: 1.188756654s + duration: 129.46372ms - id: 86 request: proto: HTTP/1.1 @@ -4283,7 +3607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/6fb2faf1-07e8-41fd-9c72-82893d486889 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 method: GET response: proto: HTTP/2.0 @@ -4291,31 +3615,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 698 + content_length: 467 uncompressed: false - 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"}' + body: '{"id":"99004b21-80cd-4ff3-bdfe-7848b9d29942", "name":"tf-snapshot-dazzling-mestorf", "parent_volume":{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "status":"available"}, "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.182626Z", "updated_at":"2025-10-29T22:55:10.464543Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "698" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "467" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:17 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5612c1ec-2b42-41dc-a079-75132c4beb03 + - 331abb80-3e6d-4823-9eda-031edbce439e status: 200 OK code: 200 - duration: 1.314878202s + duration: 162.747261ms - id: 87 request: proto: HTTP/1.1 @@ -4332,7 +3648,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 method: GET response: proto: HTTP/2.0 @@ -4340,31 +3656,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 687 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: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"}' + body: '{"id":"0af01e12-a33b-4fd9-95e8-fc4ac6225897", "name":"tf-snapshot-sweet-saha", "parent_volume":{"id":"9801e908-338b-499b-af2b-95f9fb3c2b69", "name":"tf-volume-boring-ritchie", "type":"sbs_15k", "status":"available"}, "size":22000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:03.752142Z", "updated_at":"2025-10-29T22:55:10.034465Z", "references":[{"id":"0a7970b4-c762-4708-acf8-98d08c2b69a2", "product_resource_type":"instance_image", "product_resource_id":"c993260b-9908-4683-b73c-139d208f851e", "created_at":"2025-10-29T22:55:10.034465Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "697" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "687" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:17 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 53c273ed-4f02-497e-b397-62c94a1c236a + - 796b6503-08b3-48e5-a9f7-6328f99bc35d status: 200 OK code: 200 - duration: 777.72577ms + duration: 148.608862ms - id: 88 request: proto: HTTP/1.1 @@ -4381,7 +3689,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 method: GET response: proto: HTTP/2.0 @@ -4389,31 +3697,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 702 uncompressed: false - 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"}}' + body: '{"id":"f2d46109-0b16-460b-a7c4-8f14a89f7d10", "name":"tf-snapshot-hardcore-mclaren", "parent_volume":{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.258678Z", "updated_at":"2025-10-29T22:54:54.322144Z", "references":[{"id":"923053c2-c3f4-4b2c-928e-872fd018e461", "product_resource_type":"instance_image", "product_resource_id":"c993260b-9908-4683-b73c-139d208f851e", "created_at":"2025-10-29T22:54:54.322144Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "702" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0b63415f-de7d-44ed-9753-86909a166fb8 + - dfd75b6f-6543-4b34-bd05-b1a72c54c29c status: 200 OK code: 200 - duration: 126.834313ms + duration: 143.98176ms - id: 89 request: proto: HTTP/1.1 @@ -4430,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/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e method: GET response: proto: HTTP/2.0 @@ -4438,31 +3738,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 693 uncompressed: false - 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"}' + body: '{"image": {"id": "c993260b-9908-4683-b73c-139d208f851e", "name": "tf-image-wonderful-heyrovsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "f2d46109-0b16-460b-a7c4-8f14a89f7d10", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "0af01e12-a33b-4fd9-95e8-fc4ac6225897", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:54.283999+00:00", "modification_date": "2025-10-29T22:54:54.283999+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7cd49bb9-756e-4807-9946-94d3cf351ed1 + - c0cf1fd9-8bdb-4693-a47c-062f9cf651e9 status: 200 OK code: 200 - duration: 79.203115ms + duration: 120.310715ms - id: 90 request: proto: HTTP/1.1 @@ -4479,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/block/v1alpha1/zones/fr-par-1/volumes/911959ef-ca14-4d82-8371-e6528ccaa28b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 method: GET response: proto: HTTP/2.0 @@ -4487,31 +3779,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 429 + content_length: 424 uncompressed: false - 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"}' + body: '{"id":"9801e908-338b-499b-af2b-95f9fb3c2b69", "name":"tf-volume-boring-ritchie", "type":"sbs_15k", "size":22000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:58.161589Z", "updated_at":"2025-10-29T22:54:58.161589Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "429" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "424" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fa470e09-b99d-41eb-8ac3-0bba43710685 + - 4106017c-c7bd-441a-8dfb-d843acb4f1ff status: 200 OK code: 200 - duration: 91.574136ms + duration: 81.645309ms - id: 91 request: proto: HTTP/1.1 @@ -4528,7 +3812,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 method: GET response: proto: HTTP/2.0 @@ -4536,31 +3820,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + 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":"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"}}' + body: '{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:41.625230Z", "updated_at":"2025-10-29T22:53:41.625230Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 38a713ac-f003-4917-a872-bfadbc0621ce + - 46fa8e2c-962b-41d3-9744-241661121bee status: 200 OK code: 200 - duration: 148.537369ms + duration: 103.241945ms - id: 92 request: proto: HTTP/1.1 @@ -4577,7 +3853,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -4585,31 +3861,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1956 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","type":"not_found"}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:45.700599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1956" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 83cb37e1-0d4e-46e2-bd49-a0b9b7c0d3cb - status: 404 Not Found - code: 404 - duration: 26.165089ms + - 39d773a5-ad42-4130-8c41-764d0df51e96 + status: 200 OK + code: 200 + duration: 137.432722ms - id: 93 request: proto: HTTP/1.1 @@ -4626,7 +3894,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: GET response: proto: HTTP/2.0 @@ -4634,31 +3902,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 143 uncompressed: false - 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5a6ca56c-04b9-421c-8777-7292ea40cefe"}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 38db5df4-d740-4b47-abb9-240a2a31ff4d - status: 200 OK - code: 200 - duration: 250.239129ms + - 78c5bd6e-f61f-43a1-b412-484c57c2880d + status: 404 Not Found + code: 404 + duration: 26.468156ms - id: 94 request: proto: HTTP/1.1 @@ -4675,7 +3935,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: GET response: proto: HTTP/2.0 @@ -4683,31 +3943,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 701 uncompressed: false - body: '{"user_data":[]}' + body: '{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:42.453936Z", "updated_at":"2025-10-29T22:53:42.453936Z", "references":[{"id":"955be2ad-ae28-4bde-bc1d-a3e863628114", "product_resource_type":"instance_server", "product_resource_id":"86756a92-27ed-4ad6-9ff1-38e179ff638e", "created_at":"2025-10-29T22:53:42.453936Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f46f18f9-6b40-48c5-9646-caea1451b8ef + - 488f3fc1-22c0-4efd-b39a-1b3e88dd0613 status: 200 OK code: 200 - duration: 120.033064ms + duration: 108.147979ms - id: 95 request: proto: HTTP/1.1 @@ -4724,7 +3976,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/private_nics + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 method: GET response: proto: HTTP/2.0 @@ -4732,35 +3984,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 687 uncompressed: false - body: '{"private_nics":[]}' + body: '{"id":"0af01e12-a33b-4fd9-95e8-fc4ac6225897", "name":"tf-snapshot-sweet-saha", "parent_volume":{"id":"9801e908-338b-499b-af2b-95f9fb3c2b69", "name":"tf-volume-boring-ritchie", "type":"sbs_15k", "status":"available"}, "size":22000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:03.752142Z", "updated_at":"2025-10-29T22:55:10.034465Z", "references":[{"id":"0a7970b4-c762-4708-acf8-98d08c2b69a2", "product_resource_type":"instance_image", "product_resource_id":"c993260b-9908-4683-b73c-139d208f851e", "created_at":"2025-10-29T22:55:10.034465Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "687" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cb9c496c-c4a1-4281-8aed-2724c30fe1a9 - X-Total-Count: - - "0" + - 51f0ce99-145a-4b69-9518-2f4c42d981ba status: 200 OK code: 200 - duration: 92.314884ms + duration: 254.065699ms - id: 96 request: proto: HTTP/1.1 @@ -4777,7 +4017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 method: GET response: proto: HTTP/2.0 @@ -4785,31 +4025,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 467 uncompressed: false - 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"}' + body: '{"id":"99004b21-80cd-4ff3-bdfe-7848b9d29942", "name":"tf-snapshot-dazzling-mestorf", "parent_volume":{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "status":"available"}, "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.182626Z", "updated_at":"2025-10-29T22:55:10.464543Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "466" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "467" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - af03d114-519e-49af-8226-6eddb1172fd1 + - 2e51c664-a554-4ba5-967a-0df62cdd1577 status: 200 OK code: 200 - duration: 870.174754ms + duration: 232.441311ms - id: 97 request: proto: HTTP/1.1 @@ -4826,7 +4058,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/6fb2faf1-07e8-41fd-9c72-82893d486889 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/user_data method: GET response: proto: HTTP/2.0 @@ -4834,31 +4066,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 698 + content_length: 17 uncompressed: false - 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"}' + body: '{"user_data": []}' headers: Content-Length: - - "698" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3116635f-9b5a-47e1-963e-497275043a4e + - 9efd0145-95bc-4931-a54a-17588aae3858 status: 200 OK code: 200 - duration: 856.433374ms + duration: 90.949498ms - id: 98 request: proto: HTTP/1.1 @@ -4875,7 +4099,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/private_nics method: GET response: proto: HTTP/2.0 @@ -4883,31 +4107,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 20 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: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"}' + body: '{"private_nics": []}' headers: Content-Length: - - "697" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:55:12 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f6f80b4b-4157-4606-95f1-03daa708c344 + - d64b1de0-a9f8-4220-8226-ff8ce8789839 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 483.677686ms + duration: 101.53358ms - id: 99 request: proto: HTTP/1.1 @@ -4924,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/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 method: GET response: proto: HTTP/2.0 @@ -4932,31 +4152,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 702 uncompressed: false - 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"}}' + body: '{"id":"f2d46109-0b16-460b-a7c4-8f14a89f7d10", "name":"tf-snapshot-hardcore-mclaren", "parent_volume":{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.258678Z", "updated_at":"2025-10-29T22:54:54.322144Z", "references":[{"id":"923053c2-c3f4-4b2c-928e-872fd018e461", "product_resource_type":"instance_image", "product_resource_id":"c993260b-9908-4683-b73c-139d208f851e", "created_at":"2025-10-29T22:54:54.322144Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "702" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f07a59d1-8fd0-4978-8028-a9d406b01d58 + - abd5ec82-85c1-43e0-a6fc-e4cb35a08be0 status: 200 OK code: 200 - duration: 122.373423ms + duration: 242.484252ms - id: 100 request: proto: HTTP/1.1 @@ -4973,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/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e method: GET response: proto: HTTP/2.0 @@ -4981,31 +4193,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 693 uncompressed: false - 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"}}' + body: '{"image": {"id": "c993260b-9908-4683-b73c-139d208f851e", "name": "tf-image-wonderful-heyrovsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "f2d46109-0b16-460b-a7c4-8f14a89f7d10", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "0af01e12-a33b-4fd9-95e8-fc4ac6225897", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:54.283999+00:00", "modification_date": "2025-10-29T22:54:54.283999+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 17cf50b6-ddb2-4e16-8134-af80f4186f73 + - 6ed7ece4-d5f5-4431-a505-9a9ae7e7f2db status: 200 OK code: 200 - duration: 120.268256ms + duration: 120.139073ms - id: 101 request: proto: HTTP/1.1 @@ -5022,7 +4226,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e method: GET response: proto: HTTP/2.0 @@ -5030,31 +4234,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 693 uncompressed: false - 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"}' + body: '{"image": {"id": "c993260b-9908-4683-b73c-139d208f851e", "name": "tf-image-wonderful-heyrovsky", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "f2d46109-0b16-460b-a7c4-8f14a89f7d10", "size": 0, "name": ""}, "extra_volumes": {"1": {"volume_type": "sbs_snapshot", "id": "0af01e12-a33b-4fd9-95e8-fc4ac6225897", "size": 0, "name": ""}}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:54:54.283999+00:00", "modification_date": "2025-10-29T22:54:54.283999+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "466" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "693" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 350595cb-da65-4f9f-ab84-2b700058965e + - f0e63ccb-c453-40b1-a5ee-3d12b83a697d status: 200 OK code: 200 - duration: 594.617409ms + duration: 127.629832ms - id: 102 request: proto: HTTP/1.1 @@ -5071,37 +4267,31 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 467 uncompressed: false - body: "" + body: '{"id":"99004b21-80cd-4ff3-bdfe-7848b9d29942", "name":"tf-snapshot-dazzling-mestorf", "parent_volume":{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "status":"available"}, "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:47.182626Z", "updated_at":"2025-10-29T22:55:10.464543Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "467" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 007360d3-05fd-4f2e-a4cd-da48c852cc62 - status: 204 No Content - code: 204 - duration: 517.958865ms + - 21c9fff7-fcb5-4861-b86f-2862afc0455b + status: 200 OK + code: 200 + duration: 244.522584ms - id: 103 request: proto: HTTP/1.1 @@ -5118,39 +4308,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 142 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","type":"not_found"}' + body: "" headers: - Content-Length: - - "142" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f3b288dd-f245-4da7-9c9f-de73a3218526 - status: 404 Not Found - code: 404 - duration: 28.453479ms + - 9b235107-2921-4705-a1a8-4820939471b3 + status: 204 No Content + code: 204 + duration: 357.910462ms - id: 104 request: proto: HTTP/1.1 @@ -5167,39 +4347,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 0 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: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"}' + body: "" headers: - Content-Length: - - "697" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3c0a77f4-ab15-42ed-97c3-ad0b9ee35e9a - status: 200 OK - code: 200 - duration: 438.771891ms + - beebcb53-0707-42f7-9413-4cd55afc6fb6 + status: 204 No Content + code: 204 + duration: 519.906189ms - id: 105 request: proto: HTTP/1.1 @@ -5216,7 +4386,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/6fb2faf1-07e8-41fd-9c72-82893d486889 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e method: GET response: proto: HTTP/2.0 @@ -5224,31 +4394,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 698 + content_length: 142 uncompressed: false - 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "c993260b-9908-4683-b73c-139d208f851e"}' headers: Content-Length: - - "698" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "142" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2f677846-9fb7-49ec-afae-f054e4651596 - status: 200 OK - code: 200 - duration: 446.33538ms + - e7ae3c6b-db3b-4053-aaff-37aebf5048bd + status: 404 Not Found + code: 404 + duration: 29.516036ms - id: 106 request: proto: HTTP/1.1 @@ -5265,37 +4427,31 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 129 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"99004b21-80cd-4ff3-bdfe-7848b9d29942","type":"not_found"}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "129" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a755c27c-1316-4404-97fc-b1a8efa3a366 - status: 204 No Content - code: 204 - duration: 535.161654ms + - ad5881e4-26f4-4e11-9043-c67feddf233e + status: 404 Not Found + code: 404 + duration: 88.524123ms - id: 107 request: proto: HTTP/1.1 @@ -5312,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/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 method: GET response: proto: HTTP/2.0 @@ -5320,31 +4476,23 @@ 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":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","type":"not_found"}' + body: '{"id":"1fba214c-c419-4575-95b1-441eb5d5f493", "name":"tf-volume-hardcore-bhabha", "type":"sbs_5k", "size":21000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:41.625230Z", "updated_at":"2025-10-29T22:53:41.625230Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 28c3b5fe-632e-4355-9f8f-07b0c26f8b28 - status: 404 Not Found - code: 404 - duration: 75.881589ms + - 5f8eaa6e-aa78-4f40-9b41-405b300d4cd7 + status: 200 OK + code: 200 + duration: 84.760143ms - id: 108 request: proto: HTTP/1.1 @@ -5361,7 +4509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 method: GET response: proto: HTTP/2.0 @@ -5369,31 +4517,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 702 uncompressed: false - 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"}' + body: '{"id":"f2d46109-0b16-460b-a7c4-8f14a89f7d10", "name":"tf-snapshot-hardcore-mclaren", "parent_volume":{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.258678Z", "updated_at":"2025-10-29T22:54:54.322144Z", "references":[{"id":"923053c2-c3f4-4b2c-928e-872fd018e461", "product_resource_type":"instance_image", "product_resource_id":"c993260b-9908-4683-b73c-139d208f851e", "created_at":"2025-10-29T22:54:54.322144Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "702" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 48a3accd-5a99-4ac1-8da8-c095393c5fec + - b8e868ae-8aef-4399-914c-f22e07497706 status: 200 OK code: 200 - duration: 88.297585ms + duration: 138.203194ms - id: 109 request: proto: HTTP/1.1 @@ -5410,7 +4550,48 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 458 + uncompressed: false + body: '{"id":"0af01e12-a33b-4fd9-95e8-fc4ac6225897", "name":"tf-snapshot-sweet-saha", "parent_volume":{"id":"9801e908-338b-499b-af2b-95f9fb3c2b69", "name":"tf-volume-boring-ritchie", "type":"sbs_15k", "status":"available"}, "size":22000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:03.752142Z", "updated_at":"2025-10-29T22:55:10.034465Z", "references":[], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' + headers: + Content-Length: + - "458" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:55:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - b84d1bf1-8fa2-4ed5-821a-e327e6a50afd + status: 200 OK + code: 200 + duration: 159.817674ms + - 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/1fba214c-c419-4575-95b1-441eb5d5f493 method: DELETE response: proto: HTTP/2.0 @@ -5422,26 +4603,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 84640118-b95c-417f-ac6a-fde251dbfab5 + - 4b3ee34f-d914-41b6-a476-d003c2871595 status: 204 No Content code: 204 - duration: 150.551989ms - - id: 110 + duration: 174.08773ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5457,7 +4630,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 method: GET response: proto: HTTP/2.0 @@ -5467,30 +4640,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"c312ac33-5ca5-477b-8d00-28a444c676aa","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"1fba214c-c419-4575-95b1-441eb5d5f493","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:21 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 719e555f-de2b-4914-88fa-f880379da7dc + - 73fba049-3d0f-415f-8fa1-d4100fe13a66 status: 404 Not Found code: 404 - duration: 105.029662ms - - id: 111 + duration: 91.826479ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5506,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/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 method: GET response: proto: HTTP/2.0 @@ -5514,32 +4679,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 471 + content_length: 476 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":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:20.368244Z","zone":"fr-par-1"}' + body: '{"id":"f2d46109-0b16-460b-a7c4-8f14a89f7d10", "name":"tf-snapshot-hardcore-mclaren", "parent_volume":{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.258678Z", "updated_at":"2025-10-29T22:55:13.716655Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "471" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "476" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5be25726-7341-4220-8355-eb3330cb72dd + - 43007d10-4b29-4d48-92dc-d7bfc26ea8b2 status: 200 OK code: 200 - duration: 664.749824ms - - id: 112 + duration: 316.062921ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5555,7 +4712,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/6fb2faf1-07e8-41fd-9c72-82893d486889 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 method: GET response: proto: HTTP/2.0 @@ -5563,32 +4720,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 472 + content_length: 461 uncompressed: false - 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"}' + body: '{"id":"0af01e12-a33b-4fd9-95e8-fc4ac6225897", "name":"tf-snapshot-sweet-saha", "parent_volume":{"id":"9801e908-338b-499b-af2b-95f9fb3c2b69", "name":"tf-volume-boring-ritchie", "type":"sbs_15k", "status":"available"}, "size":22000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:03.752142Z", "updated_at":"2025-10-29T22:55:13.621125Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "472" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "461" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 76fc341c-bc90-456a-8073-530d43166196 + - d95c0122-fbf6-4933-a64f-fc93e45048b7 status: 200 OK code: 200 - duration: 667.62771ms - - id: 113 + duration: 309.93922ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -5604,7 +4753,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 method: DELETE response: proto: HTTP/2.0 @@ -5616,26 +4765,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 69a0849e-a3c0-45a1-8ad7-fbf4c26d56ac + - 2660192a-eb0c-43a8-9ae4-5b3505c3a8b5 status: 204 No Content code: 204 - duration: 441.051345ms - - id: 114 + duration: 308.207692ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5651,7 +4792,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/6fb2faf1-07e8-41fd-9c72-82893d486889 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 method: DELETE response: proto: HTTP/2.0 @@ -5663,26 +4804,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c48996a5-4f24-4749-9853-56d89139c735 + - 10db83a4-932a-4ced-bd82-158867dd3e38 status: 204 No Content code: 204 - duration: 430.826116ms - - id: 115 + duration: 333.469864ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -5698,7 +4831,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/6fb2faf1-07e8-41fd-9c72-82893d486889 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 method: GET response: proto: HTTP/2.0 @@ -5708,30 +4841,22 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"6fb2faf1-07e8-41fd-9c72-82893d486889","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"0af01e12-a33b-4fd9-95e8-fc4ac6225897","type":"not_found"}' headers: Content-Length: - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 63e38859-25e2-4df9-9df6-1fb7634ccedb + - 44bdfd2b-eef1-44f1-86e7-52d2b723ed94 status: 404 Not Found code: 404 - duration: 68.925943ms - - id: 116 + duration: 83.20686ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -5747,7 +4872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 method: GET response: proto: HTTP/2.0 @@ -5757,30 +4882,22 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"f2d46109-0b16-460b-a7c4-8f14a89f7d10","type":"not_found"}' headers: Content-Length: - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8f8e398a-c1c0-4789-b44e-e23e657cfe15 + - a6e06476-3505-45c2-beda-10f14ac234c5 status: 404 Not Found code: 404 - duration: 77.801522ms - - id: 117 + duration: 78.043645ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -5796,7 +4913,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/911959ef-ca14-4d82-8371-e6528ccaa28b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 method: GET response: proto: HTTP/2.0 @@ -5804,32 +4921,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 429 + content_length: 424 uncompressed: false - 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"}' + body: '{"id":"9801e908-338b-499b-af2b-95f9fb3c2b69", "name":"tf-volume-boring-ritchie", "type":"sbs_15k", "size":22000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:58.161589Z", "updated_at":"2025-10-29T22:54:58.161589Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "429" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "424" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - feb7be58-7d41-4e5e-a30e-382262ef390c + - 10b86264-0e02-4780-a674-8e9e7d9b9015 status: 200 OK code: 200 - duration: 84.878349ms - - id: 118 + duration: 94.250082ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -5845,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/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -5853,32 +4962,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + 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":"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"}}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:45.700599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1956" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4d29f6ac-650c-4cc2-866a-54800c1aa89b + - f45eff07-9b9d-4b2c-86ca-8c108ebbd012 status: 200 OK code: 200 - duration: 141.998741ms - - id: 119 + duration: 145.16815ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -5894,7 +4995,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/911959ef-ca14-4d82-8371-e6528ccaa28b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 method: DELETE response: proto: HTTP/2.0 @@ -5906,26 +5007,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e32bc20b-1159-4bde-b8f9-911f9243ac31 + - 0f8ea085-47a9-4e9a-8fbd-77f8118a16d4 status: 204 No Content code: 204 - duration: 173.234859ms - - id: 120 + duration: 153.073003ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -5941,7 +5034,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -5949,32 +5042,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + 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-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"}}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:53:45.700599+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1910" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 31429eaf-0778-4b7b-9460-a984023414d6 + - 1f01b9db-92e8-4740-be5a-7c1b54a86907 status: 200 OK code: 200 - duration: 178.06252ms - - id: 121 + duration: 140.683795ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -5990,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/911959ef-ca14-4d82-8371-e6528ccaa28b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 method: GET response: proto: HTTP/2.0 @@ -6000,30 +5085,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"911959ef-ca14-4d82-8371-e6528ccaa28b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"9801e908-338b-499b-af2b-95f9fb3c2b69","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:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bc6b0ada-e748-41aa-9620-445a9bdf3723 + - baceb078-177a-42e8-baef-4d716213fdce status: 404 Not Found code: 404 - duration: 98.382766ms - - id: 122 + duration: 76.728015ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -6041,7 +5118,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/31731a14-c18c-437b-ac5d-1dad59a6e124/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/action method: POST response: proto: HTTP/2.0 @@ -6051,32 +5128,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "927709ad-ba1d-41f6-82b9-b5a61f9241a2", "description": "server_terminate", "status": "pending", "href_from": "/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/action", "href_result": "/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e", "started_at": "2025-10-29T22:55:20.196860+00:00", "terminated_at": null, "progress": 0, "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:27 GMT + - Wed, 29 Oct 2025 22:55:20 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b0b70986-0ed2-4a63-a141-0e9fb87a47c2 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/927709ad-ba1d-41f6-82b9-b5a61f9241a2 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 888a0b5d-a66e-4e98-b059-8a1a5a34a9f7 + - 674a9101-43ff-45d6-b787-15e1e206efcf status: 202 Accepted code: 202 - duration: 272.090332ms - - id: 123 + duration: 329.790093ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -6092,7 +5161,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -6100,32 +5169,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1862 + content_length: 1919 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: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"}}' + body: '{"server": {"id": "86756a92-27ed-4ad6-9ff1-38e179ff638e", "name": "tf-srv-condescending-keller", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-condescending-keller", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5a6ca56c-04b9-421c-8777-7292ea40cefe", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:42.306143+00:00", "modification_date": "2025-10-29T22:55:19.920602+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "901", "node_id": "45"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1862" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1919" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0653195f-e35e-4b1c-9c1a-f8d0f5619912 + - f87e447d-d122-4746-878d-5eac2b49dd53 status: 200 OK code: 200 - duration: 119.675533ms - - id: 124 + duration: 160.822405ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -6141,7 +5202,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -6151,30 +5212,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"31731a14-c18c-437b-ac5d-1dad59a6e124","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "86756a92-27ed-4ad6-9ff1-38e179ff638e"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 75b5f354-5993-4658-847b-1ff67d51ee7f + - 7ffbb3d2-7f25-4112-b70f-4f9c49956d30 status: 404 Not Found code: 404 - duration: 39.24309ms - - id: 125 + duration: 51.872915ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -6190,7 +5243,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: GET response: proto: HTTP/2.0 @@ -6200,30 +5253,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5a6ca56c-04b9-421c-8777-7292ea40cefe"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - afdbd84c-c8c9-415c-85b5-be094b082e69 + - a51a0bf3-957c-4b96-8e0c-5b74ec8d6a38 status: 404 Not Found code: 404 - duration: 36.462156ms - - id: 126 + duration: 28.395862ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -6239,7 +5284,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: GET response: proto: HTTP/2.0 @@ -6249,30 +5294,22 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"5a6ca56c-04b9-421c-8777-7292ea40cefe", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:42.453936Z", "updated_at":"2025-10-29T22:55:21.921419Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:21.921419Z", "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:04:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6b1cbc9c-9f08-4003-88f0-27f7f16fa928 + - 0923405a-cf87-4856-9942-b23f71dd807c status: 200 OK code: 200 - duration: 70.284544ms - - id: 127 + duration: 102.871165ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -6288,7 +5325,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe method: DELETE response: proto: HTTP/2.0 @@ -6300,26 +5337,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 417e503e-3c62-4856-8474-829175642121 + - 414855d6-a339-4c66-8f42-47836b987df2 status: 204 No Content code: 204 - duration: 165.917729ms - - id: 128 + duration: 165.273271ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -6335,7 +5364,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e method: GET response: proto: HTTP/2.0 @@ -6345,30 +5374,22 @@ interactions: trailer: {} content_length: 142 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "c993260b-9908-4683-b73c-139d208f851e"}' headers: Content-Length: - "142" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f7e0e951-b08f-4941-8a7b-4e5cf0f4319c + - 21cd7871-0c5f-492a-86cd-3c9669c4cefc status: 404 Not Found code: 404 - duration: 34.782678ms - - id: 129 + duration: 30.130456ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -6384,7 +5405,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/6fb2faf1-07e8-41fd-9c72-82893d486889 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 method: DELETE response: proto: HTTP/2.0 @@ -6394,30 +5415,22 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"6fb2faf1-07e8-41fd-9c72-82893d486889","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"99004b21-80cd-4ff3-bdfe-7848b9d29942","type":"not_found"}' headers: Content-Length: - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6d8bd6b0-2c72-4e6b-8b2c-27a665a4ca9e + - a26c87bc-fccb-409b-a1ac-d524941f7469 status: 404 Not Found code: 404 - duration: 235.376026ms - - id: 130 + duration: 154.873583ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -6433,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/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 method: DELETE response: proto: HTTP/2.0 @@ -6443,30 +5456,22 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"0af01e12-a33b-4fd9-95e8-fc4ac6225897","type":"not_found"}' headers: Content-Length: - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fc063947-a6a0-426e-97a5-2c06549b286b + - 32355851-e6b8-41b3-8cf5-d6c4149c0a75 status: 404 Not Found code: 404 - duration: 156.480257ms - - id: 131 + duration: 154.624747ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -6482,7 +5487,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 method: DELETE response: proto: HTTP/2.0 @@ -6492,30 +5497,22 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"f2d46109-0b16-460b-a7c4-8f14a89f7d10","type":"not_found"}' headers: Content-Length: - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 48c43181-a934-4d2b-a9ca-300b20bbe7c1 + - 2ce84817-2d64-4f4d-bf18-080c8297926e status: 404 Not Found code: 404 - duration: 142.893205ms - - id: 132 + duration: 142.001231ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -6531,7 +5528,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 method: DELETE response: proto: HTTP/2.0 @@ -6541,30 +5538,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"c312ac33-5ca5-477b-8d00-28a444c676aa","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"1fba214c-c419-4575-95b1-441eb5d5f493","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:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 078fc65f-722f-46f7-ac7b-5aa23cd368ea + - 67b6a362-79aa-4f2c-91a8-1a3477970d5e status: 404 Not Found code: 404 - duration: 167.271138ms - - id: 133 + duration: 138.718362ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -6580,7 +5569,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/911959ef-ca14-4d82-8371-e6528ccaa28b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 method: DELETE response: proto: HTTP/2.0 @@ -6590,30 +5579,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"911959ef-ca14-4d82-8371-e6528ccaa28b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"9801e908-338b-499b-af2b-95f9fb3c2b69","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:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4d1b1fde-9628-4b06-9b47-e46c205c189c + - daa307bc-7adf-4d79-ad42-a2d2a030b746 status: 404 Not Found code: 404 - duration: 181.14108ms - - id: 134 + duration: 161.518499ms + - id: 135 request: proto: HTTP/1.1 proto_major: 1 @@ -6629,7 +5610,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e method: GET response: proto: HTTP/2.0 @@ -6639,26 +5620,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"31731a14-c18c-437b-ac5d-1dad59a6e124","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "86756a92-27ed-4ad6-9ff1-38e179ff638e"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 818aca0e-3c7a-424f-ba25-7338f60ce5d2 + - 046c8e7f-787a-4746-a514-fd697476ac17 status: 404 Not Found code: 404 - duration: 46.224238ms + duration: 46.753301ms diff --git a/internal/services/instance/testdata/image-server.cassette.yaml b/internal/services/instance/testdata/image-server.cassette.yaml index fdcf15b93..a2f3ca0f0 100644 --- a/internal/services/instance/testdata/image-server.cassette.yaml +++ b/internal/services/instance/testdata/image-server.cassette.yaml @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:54:14 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 117ed2e0-26c3-49a3-8f1f-49028f8f4504 + - fbf17f62-cac1-4ed2-a8be-4e9c1632093f X-Total-Count: - "68" status: 200 OK code: 200 - duration: 35.874552ms + duration: 42.923601ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:54:14 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - df613a73-c02a-4954-bffb-62c350602cbb + - c80c5c28-fe0b-47e4-b0b7-2c08d674df4e X-Total-Count: - "68" status: 200 OK code: 200 - duration: 47.566414ms + duration: 53.726702ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,43 +127,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 092a4e02-4f9f-48a5-b5d8-72d27e23cdc4 + - 5b328cd3-c0e7-4d99-92a9-0d7d57deb42f status: 200 OK code: 200 - duration: 46.86512ms + duration: 42.316356ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 235 + content_length: 236 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-friendly-lehmann","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,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1740 + content_length: 1788 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: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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:54:15.191821+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1740" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1788" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:54:15 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4f813a9-c250-4e11-bfb1-9e8e48e532c2 + - fb1b9433-2e60-4b11-8e62-57f1ab3a8029 status: 201 Created code: 201 - duration: 955.812063ms + duration: 979.999151ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1740 + 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-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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:54:15.191821+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1740" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1742" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 13a38b37-49bc-4f6e-af9a-b47657578e75 + - 35d84da4-38b4-402d-9a3f-e0035a7f49d1 status: 200 OK code: 200 - duration: 132.908594ms + duration: 173.314115ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1740 + 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-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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:54:15.191821+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1740" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1742" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 790ecc87-611f-41a7-bc97-4503d1bbebb5 + - e4ae7f65-7178-4c6a-bab6-6e4a8c5aac51 status: 200 OK code: 200 - duration: 129.801722ms + duration: 138.915825ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f method: GET response: proto: HTTP/2.0 @@ -333,29 +297,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:15.319611Z", "updated_at":"2025-10-29T22:54:15.319611Z", "references":[{"id":"ab508c3f-d859-43f1-ba4b-e0eab22d8582", "product_resource_type":"instance_server", "product_resource_id":"f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "created_at":"2025-10-29T22:54:15.319611Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:21 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9798e5fe-d428-4120-b40f-281550e4bc25 + - 020bf9b0-2405-4e47-b7e8-fb70d1f37c71 status: 200 OK code: 200 - duration: 87.706922ms + duration: 90.204872ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +330,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/290e3695-3812-41ae-8c8e-0da8937db71a/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/action method: POST response: proto: HTTP/2.0 @@ -384,31 +340,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "34155613-d203-4cf6-998f-f1d88705c570", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/action", "href_result": "/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "started_at": "2025-10-29T22:54:16.146296+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:54:16 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bb163863-27d8-40a0-b4b9-d5ab1d20a794 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/34155613-d203-4cf6-998f-f1d88705c570 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 39932a1b-2563-49a9-8824-f9892ea0cd03 + - dcf2f70c-d3ea-4374-819b-242c78c4f71d status: 202 Accepted code: 202 - duration: 269.201502ms + duration: 220.655868ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1762 + content_length: 1867 uncompressed: 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":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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:54:15.980513+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "201", "node_id": "23"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1762" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1867" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3d8c81a0-195a-403b-8a43-385ee83ebb52 + - b01d5e80-c405-4784-acd8-2003bc128ef1 status: 200 OK code: 200 - duration: 172.866881ms + duration: 1.472533262s - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -482,31 +422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + 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":"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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:54:18.527234+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "201", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1896" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 072ddf98-32b7-471c-9491-37a6dbdefce4 + - 3a4a9c1f-2218-4de3-a2d7-502323047d02 status: 200 OK code: 200 - duration: 169.482467ms + duration: 165.911406ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -531,31 +463,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + content_length: 1944 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:54:18.527234+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "201", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1896" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1944" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2e3787d4-1302-437e-b7d8-0e2216f4d0df + - 2a47ef9e-cb4e-4b10-acdd-33690863c0b6 status: 200 OK code: 200 - duration: 166.769914ms + duration: 174.749011ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f method: GET response: proto: HTTP/2.0 @@ -582,29 +506,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1483899f-a466-4bb5-ae4a-216e8ae3902a + - 4b4666ea-6460-40ca-a816-fdc1ca975dc2 status: 404 Not Found code: 404 - duration: 33.035323ms + duration: 26.122456ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f method: GET response: proto: HTTP/2.0 @@ -631,29 +547,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:15.319611Z", "updated_at":"2025-10-29T22:54:15.319611Z", "references":[{"id":"ab508c3f-d859-43f1-ba4b-e0eab22d8582", "product_resource_type":"instance_server", "product_resource_id":"f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "created_at":"2025-10-29T22:54:15.319611Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 488ee6b8-43be-48bc-9d9b-e9230315dbc9 + - 595e3d70-66ca-416b-887b-9bb343ee3d84 status: 200 OK code: 200 - duration: 120.112549ms + duration: 86.95679ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/user_data method: GET response: proto: HTTP/2.0 @@ -680,29 +588,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 72813366-212f-46f7-900c-a0d338cd30fb + - 6fc078ef-c383-4384-9130-857cc4a1c258 status: 200 OK code: 200 - duration: 107.85128ms + duration: 117.949634ms - id: 14 request: proto: HTTP/1.1 @@ -719,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/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/private_nics method: GET response: proto: HTTP/2.0 @@ -729,45 +629,37 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 + - Wed, 29 Oct 2025 22:54:23 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5e02cbde-38d7-49e0-a538-1a46763cc838 + - 7bb514b1-5daa-4fc9-a710-265a941e13dd X-Total-Count: - "0" status: 200 OK code: 200 - duration: 98.231251ms + duration: 99.306203ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 148 + content_length: 150 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"tf-snapshot-keen-murdock","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + body: '{"volume_id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f","name":"tf-snapshot-pensive-liskov","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' form: {} headers: Content-Type: @@ -782,31 +674,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 471 + content_length: 473 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":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:27.977044Z","zone":"fr-par-1"}' + body: '{"id":"c57f9cd4-d633-4a32-a268-82b4c2214fe6", "name":"tf-snapshot-pensive-liskov", "parent_volume":{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.490795Z", "updated_at":"2025-10-29T22:54:23.490795Z", "references":[], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "471" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "473" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f888e8f1-f173-4633-abb0-e27887df8816 + - 9f4b29db-421f-45ed-8dfa-8f4d4b8dcb35 status: 200 OK code: 200 - duration: 789.653411ms + duration: 372.559818ms - id: 16 request: proto: HTTP/1.1 @@ -823,7 +707,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 method: GET response: proto: HTTP/2.0 @@ -831,31 +715,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 702 + content_length: 704 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"}' + body: '{"id":"c57f9cd4-d633-4a32-a268-82b4c2214fe6", "name":"tf-snapshot-pensive-liskov", "parent_volume":{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.490795Z", "updated_at":"2025-10-29T22:54:23.490795Z", "references":[{"id":"0f6bf104-79e8-4825-bf6a-f1391168c4bf", "product_resource_type":"internal", "product_resource_id":"00000000-0000-0000-0000-000000000000", "created_at":"2025-10-29T22:54:23.552149Z", "type":"unknown_type", "status":"attached"}], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "702" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "704" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab20ae43-2f87-4f23-bdb2-e2f51e747b80 + - 82dd6a66-09a0-4891-9ef3-05f19cf94f44 status: 200 OK code: 200 - duration: 393.715959ms + duration: 177.227287ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +748,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 method: GET response: proto: HTTP/2.0 @@ -880,31 +756,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 472 + content_length: 474 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":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:27.977044Z","zone":"fr-par-1"}' + body: '{"id":"c57f9cd4-d633-4a32-a268-82b4c2214fe6", "name":"tf-snapshot-pensive-liskov", "parent_volume":{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.490795Z", "updated_at":"2025-10-29T22:54:23.490795Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "472" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "474" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:56 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 72fff2d6-9fe3-4734-9a3a-a8426a1e0f18 + - 3fdf78b7-5c49-49a2-bf16-a5080beaef59 status: 200 OK code: 200 - duration: 467.631656ms + duration: 234.395512ms - id: 18 request: proto: HTTP/1.1 @@ -921,7 +789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 method: GET response: proto: HTTP/2.0 @@ -929,43 +797,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 472 + content_length: 474 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":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:27.977044Z","zone":"fr-par-1"}' + body: '{"id":"c57f9cd4-d633-4a32-a268-82b4c2214fe6", "name":"tf-snapshot-pensive-liskov", "parent_volume":{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.490795Z", "updated_at":"2025-10-29T22:54:23.490795Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "472" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "474" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2f62eccf-02bc-49ce-b74f-4b73c174c77f + - e842e2a8-a9c8-4a47-a257-f39b71aabc56 status: 200 OK code: 200 - duration: 852.078237ms + duration: 226.24496ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 199 + content_length: 190 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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}' + body: '{"name":"tf-image-bold-shaw","root_volume":"c57f9cd4-d633-4a32-a268-82b4c2214fe6","arch":"x86_64","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test_remove_tags"],"public":false}' form: {} headers: Content-Type: @@ -980,33 +840,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 596 uncompressed: false - 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"}}' + body: '{"image": {"id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed", "name": "tf-image-bold-shaw", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "c57f9cd4-d633-4a32-a268-82b4c2214fe6", "size": 0, "name": ""}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:06.173729+00:00", "modification_date": "2025-10-29T22:55:06.173729+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": ["test_remove_tags"], "zone": "fr-par-1"}}' headers: Content-Length: - - "605" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "596" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:55:06 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5f7ce4f8-eba1-4f58-8dce-b480502d11f2 + - cba5d7c7-8c20-4339-b1f4-f458932ba364 status: 201 Created code: 201 - duration: 800.104722ms + duration: 635.148785ms - id: 20 request: proto: HTTP/1.1 @@ -1023,7 +875,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: GET response: proto: HTTP/2.0 @@ -1031,31 +883,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 596 uncompressed: false - 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"}}' + body: '{"image": {"id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed", "name": "tf-image-bold-shaw", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "c57f9cd4-d633-4a32-a268-82b4c2214fe6", "size": 0, "name": ""}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:06.173729+00:00", "modification_date": "2025-10-29T22:55:06.173729+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": ["test_remove_tags"], "zone": "fr-par-1"}}' headers: Content-Length: - - "605" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "596" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 696d0a59-4570-44e4-915a-486a8d7c175d + - b00d17f7-79c2-4e16-8032-cd9030aefa40 status: 200 OK code: 200 - duration: 121.393043ms + duration: 94.409006ms - id: 21 request: proto: HTTP/1.1 @@ -1072,7 +916,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: GET response: proto: HTTP/2.0 @@ -1080,31 +924,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 596 uncompressed: false - 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"}}' + body: '{"image": {"id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed", "name": "tf-image-bold-shaw", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "c57f9cd4-d633-4a32-a268-82b4c2214fe6", "size": 0, "name": ""}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:06.173729+00:00", "modification_date": "2025-10-29T22:55:06.173729+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": ["test_remove_tags"], "zone": "fr-par-1"}}' headers: Content-Length: - - "605" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "596" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ccf04e8a-eb5d-4e78-80ec-bbd0da5e1b21 + - 68563dd0-07f7-4060-9341-43ddc894c780 status: 200 OK code: 200 - duration: 101.642182ms + duration: 99.473376ms - id: 22 request: proto: HTTP/1.1 @@ -1121,7 +957,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -1129,31 +965,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + 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":"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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:54:18.527234+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "201", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1896" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0b1e7b3c-dcdc-4ca8-83bc-28fb2e3b60bb + - e6059096-10b2-43df-b40c-d71165cefda9 status: 200 OK code: 200 - duration: 181.846049ms + duration: 147.241593ms - id: 23 request: proto: HTTP/1.1 @@ -1170,7 +998,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 method: GET response: proto: HTTP/2.0 @@ -1178,31 +1006,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 698 + content_length: 700 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: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"}' + body: '{"id":"c57f9cd4-d633-4a32-a268-82b4c2214fe6", "name":"tf-snapshot-pensive-liskov", "parent_volume":{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.490795Z", "updated_at":"2025-10-29T22:55:06.215280Z", "references":[{"id":"39997d79-5126-451a-85db-f1e043bf0db7", "product_resource_type":"instance_image", "product_resource_id":"e518c7b6-3b24-4733-92eb-06fc4f0128ed", "created_at":"2025-10-29T22:55:06.215280Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "698" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "700" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3f149822-76eb-424f-beaf-609ac046886c + - 51c3902a-af91-4da6-afa4-25e300ba39a8 status: 200 OK code: 200 - duration: 255.045479ms + duration: 261.484149ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1039,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: GET response: proto: HTTP/2.0 @@ -1227,31 +1047,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 596 uncompressed: false - 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"}}' + body: '{"image": {"id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed", "name": "tf-image-bold-shaw", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "c57f9cd4-d633-4a32-a268-82b4c2214fe6", "size": 0, "name": ""}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:06.173729+00:00", "modification_date": "2025-10-29T22:55:06.173729+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": ["test_remove_tags"], "zone": "fr-par-1"}}' headers: Content-Length: - - "605" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "596" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bf616cea-6004-48fa-81e2-647102d399f8 + - 6e983afe-c2f3-42ac-abb6-f13115ca90b9 status: 200 OK code: 200 - duration: 112.899564ms + duration: 99.389369ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1080,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -1276,31 +1088,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + 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":"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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:54:18.527234+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "201", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1896" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bde34574-5fc0-40a6-9bd7-764b1de1a688 + - cff7ea1b-cd54-4131-a1cb-62d92f997021 status: 200 OK code: 200 - duration: 162.39509ms + duration: 135.797332ms - id: 26 request: proto: HTTP/1.1 @@ -1317,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/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f method: GET response: proto: HTTP/2.0 @@ -1327,29 +1131,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:59 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 86a30da1-a5f9-4724-b17d-14500dba5caa + - ced790c0-cce9-4d96-937e-583918464b3c status: 404 Not Found code: 404 - duration: 30.748436ms + duration: 33.17624ms - id: 27 request: proto: HTTP/1.1 @@ -1366,7 +1162,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f method: GET response: proto: HTTP/2.0 @@ -1376,29 +1172,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:15.319611Z", "updated_at":"2025-10-29T22:54:15.319611Z", "references":[{"id":"ab508c3f-d859-43f1-ba4b-e0eab22d8582", "product_resource_type":"instance_server", "product_resource_id":"f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "created_at":"2025-10-29T22:54:15.319611Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:59 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c425328f-5e5c-4608-9b1f-daaece2fb00f + - 9460dad0-d399-467e-b66f-8c80a5b6c021 status: 200 OK code: 200 - duration: 70.648106ms + duration: 79.759071ms - id: 28 request: proto: HTTP/1.1 @@ -1415,7 +1203,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/user_data method: GET response: proto: HTTP/2.0 @@ -1425,29 +1213,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:59 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4b8daf25-2ab4-40aa-b349-c6116d4ef98f + - ce09e26d-0e32-4303-948f-cbf49b9616db status: 200 OK code: 200 - duration: 93.919818ms + duration: 87.008617ms - id: 29 request: proto: HTTP/1.1 @@ -1464,7 +1244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/private_nics method: GET response: proto: HTTP/2.0 @@ -1474,33 +1254,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:00 GMT + - Wed, 29 Oct 2025 22:55:08 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 49fa510c-a35e-4499-af5c-61cc07dc0cc2 + - f4c0de29-f788-4bc6-b805-f2a2bfb6160d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 106.888868ms + duration: 104.851034ms - id: 30 request: proto: HTTP/1.1 @@ -1517,7 +1289,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 method: GET response: proto: HTTP/2.0 @@ -1525,31 +1297,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 698 + content_length: 700 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: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"}' + body: '{"id":"c57f9cd4-d633-4a32-a268-82b4c2214fe6", "name":"tf-snapshot-pensive-liskov", "parent_volume":{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.490795Z", "updated_at":"2025-10-29T22:55:06.215280Z", "references":[{"id":"39997d79-5126-451a-85db-f1e043bf0db7", "product_resource_type":"instance_image", "product_resource_id":"e518c7b6-3b24-4733-92eb-06fc4f0128ed", "created_at":"2025-10-29T22:55:06.215280Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "698" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "700" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ed4d1859-1fc8-4699-9874-8021c5cbd143 + - b9bef1ee-5899-4996-b2bb-b30c1e18a818 status: 200 OK code: 200 - duration: 129.87782ms + duration: 223.379152ms - id: 31 request: proto: HTTP/1.1 @@ -1566,7 +1330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: GET response: proto: HTTP/2.0 @@ -1574,31 +1338,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 596 uncompressed: false - 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"}}' + body: '{"image": {"id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed", "name": "tf-image-bold-shaw", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "c57f9cd4-d633-4a32-a268-82b4c2214fe6", "size": 0, "name": ""}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:06.173729+00:00", "modification_date": "2025-10-29T22:55:06.173729+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": ["test_remove_tags"], "zone": "fr-par-1"}}' headers: Content-Length: - - "605" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "596" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3d8c35bd-0aec-4770-ab1b-4e1c94ead627 + - fc494b28-66e4-4528-b933-54bbfc8b46a6 status: 200 OK code: 200 - duration: 138.844176ms + duration: 105.638656ms - id: 32 request: proto: HTTP/1.1 @@ -1615,7 +1371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -1623,31 +1379,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + 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":"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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:54:18.527234+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "201", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1896" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fbe09856-0176-4e5b-acf3-1ec39822ccf6 + - 8fff8dfb-a0fc-41fa-95c5-66736911108d status: 200 OK code: 200 - duration: 140.572176ms + duration: 134.468739ms - id: 33 request: proto: HTTP/1.1 @@ -1664,7 +1412,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f method: GET response: proto: HTTP/2.0 @@ -1674,29 +1422,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9c7faa29-8126-41da-8023-a7874464fe99 + - 9ab8f06f-bc06-4060-8e5e-0a5daa0aa770 status: 404 Not Found code: 404 - duration: 30.940917ms + duration: 25.320249ms - id: 34 request: proto: HTTP/1.1 @@ -1713,7 +1453,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f method: GET response: proto: HTTP/2.0 @@ -1723,29 +1463,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:15.319611Z", "updated_at":"2025-10-29T22:54:15.319611Z", "references":[{"id":"ab508c3f-d859-43f1-ba4b-e0eab22d8582", "product_resource_type":"instance_server", "product_resource_id":"f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "created_at":"2025-10-29T22:54:15.319611Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:00 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d257434d-2f15-4081-9605-bfe32d64b50c + - 82ae5e98-990b-48b4-b838-b8082d4711d6 status: 200 OK code: 200 - duration: 77.213362ms + duration: 80.347511ms - id: 35 request: proto: HTTP/1.1 @@ -1762,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/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/user_data method: GET response: proto: HTTP/2.0 @@ -1772,29 +1504,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:00 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2d6f8824-e8b8-43af-a86a-89c0a714af1b + - d00a2f4f-0d5c-4c91-8520-e7fd29850efd status: 200 OK code: 200 - duration: 93.78744ms + duration: 97.724556ms - id: 36 request: proto: HTTP/1.1 @@ -1811,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/290e3695-3812-41ae-8c8e-0da8937db71a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/private_nics method: GET response: proto: HTTP/2.0 @@ -1821,33 +1545,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:00 GMT + - Wed, 29 Oct 2025 22:55:09 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a20f6aba-3f07-4107-bdbb-34ac28663dc1 + - 98b36b92-e8f4-428f-a8d0-995fe495abae X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.645317ms + duration: 93.240621ms - id: 37 request: proto: HTTP/1.1 @@ -1864,7 +1580,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 method: GET response: proto: HTTP/2.0 @@ -1872,31 +1588,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 698 + content_length: 700 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: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"}' + body: '{"id":"c57f9cd4-d633-4a32-a268-82b4c2214fe6", "name":"tf-snapshot-pensive-liskov", "parent_volume":{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.490795Z", "updated_at":"2025-10-29T22:55:06.215280Z", "references":[{"id":"39997d79-5126-451a-85db-f1e043bf0db7", "product_resource_type":"instance_image", "product_resource_id":"e518c7b6-3b24-4733-92eb-06fc4f0128ed", "created_at":"2025-10-29T22:55:06.215280Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "698" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "700" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 82d8f729-34bb-4d86-b75a-30b432baf080 + - cdd582c2-8091-419c-9333-48e0d5d6672c status: 200 OK code: 200 - duration: 653.224883ms + duration: 233.828123ms - id: 38 request: proto: HTTP/1.1 @@ -1913,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/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: GET response: proto: HTTP/2.0 @@ -1921,31 +1629,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 596 uncompressed: false - 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"}}' + body: '{"image": {"id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed", "name": "tf-image-bold-shaw", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "c57f9cd4-d633-4a32-a268-82b4c2214fe6", "size": 0, "name": ""}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:06.173729+00:00", "modification_date": "2025-10-29T22:55:06.173729+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": ["test_remove_tags"], "zone": "fr-par-1"}}' headers: Content-Length: - - "605" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "596" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ee55dc53-2d90-4677-a4b5-3f43c6bda85a + - ed2f0e3e-d77d-4295-9d5c-3a3b2b2d0f9b status: 200 OK code: 200 - duration: 108.320262ms + duration: 103.033524ms - id: 39 request: proto: HTTP/1.1 @@ -1962,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/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: GET response: proto: HTTP/2.0 @@ -1970,31 +1670,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 596 uncompressed: false - 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"}}' + body: '{"image": {"id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed", "name": "tf-image-bold-shaw", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "c57f9cd4-d633-4a32-a268-82b4c2214fe6", "size": 0, "name": ""}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:06.173729+00:00", "modification_date": "2025-10-29T22:55:06.173729+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": ["test_remove_tags"], "zone": "fr-par-1"}}' headers: Content-Length: - - "605" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "596" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fd4e0af8-96d3-49e9-a889-566b4089ce00 + - 7395919a-3ef4-4347-9afd-d27c281a9b3a status: 200 OK code: 200 - duration: 101.872526ms + duration: 111.272982ms - id: 40 request: proto: HTTP/1.1 @@ -2011,7 +1703,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: GET response: proto: HTTP/2.0 @@ -2019,50 +1711,42 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 596 uncompressed: false - 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"}}' + body: '{"image": {"id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed", "name": "tf-image-bold-shaw", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "c57f9cd4-d633-4a32-a268-82b4c2214fe6", "size": 0, "name": ""}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:06.173729+00:00", "modification_date": "2025-10-29T22:55:06.173729+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": ["test_remove_tags"], "zone": "fr-par-1"}}' headers: Content-Length: - - "605" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "596" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 03130356-21e5-4cec-81fc-426d464bcccf + - 81bdcbdd-f288-4f04-a79c-a5dae146bef9 status: 200 OK code: 200 - duration: 112.774522ms + duration: 134.93979ms - id: 41 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 64 + content_length: 55 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-image-magical-heisenberg","arch":"x86_64","tags":[]}' + body: '{"name":"tf-image-bold-shaw","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/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: PATCH response: proto: HTTP/2.0 @@ -2070,31 +1754,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 587 + content_length: 578 uncompressed: false - 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"}}' + body: '{"image": {"id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed", "name": "tf-image-bold-shaw", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "c57f9cd4-d633-4a32-a268-82b4c2214fe6", "size": 0, "name": ""}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:06.173729+00:00", "modification_date": "2025-10-29T22:55:09.944920+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "587" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "578" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 381d8d83-1da9-497e-b1e1-475a64ab76dc + - 70702deb-25c2-4aad-9c3b-ad553711a1e3 status: 200 OK code: 200 - duration: 129.395087ms + duration: 128.240261ms - id: 42 request: proto: HTTP/1.1 @@ -2111,7 +1787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: GET response: proto: HTTP/2.0 @@ -2119,31 +1795,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 587 + content_length: 578 uncompressed: false - 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"}}' + body: '{"image": {"id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed", "name": "tf-image-bold-shaw", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "c57f9cd4-d633-4a32-a268-82b4c2214fe6", "size": 0, "name": ""}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:06.173729+00:00", "modification_date": "2025-10-29T22:55:09.944920+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "587" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "578" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3ed3b151-efdc-4a8e-be30-499a728fb527 + - 0ecc3e94-2c87-494e-a584-535331664b49 status: 200 OK code: 200 - duration: 97.86798ms + duration: 97.396053ms - id: 43 request: proto: HTTP/1.1 @@ -2160,7 +1828,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: GET response: proto: HTTP/2.0 @@ -2168,31 +1836,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 587 + content_length: 578 uncompressed: false - 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"}}' + body: '{"image": {"id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed", "name": "tf-image-bold-shaw", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "c57f9cd4-d633-4a32-a268-82b4c2214fe6", "size": 0, "name": ""}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:06.173729+00:00", "modification_date": "2025-10-29T22:55:09.944920+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "587" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "578" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eb1c76ca-13af-4fd7-9721-d4a13d2bc2b1 + - e5bcd86f-666d-4ae5-922f-74eedd6bbc1b status: 200 OK code: 200 - duration: 119.554892ms + duration: 101.353664ms - id: 44 request: proto: HTTP/1.1 @@ -2209,7 +1869,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -2217,31 +1877,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + 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":"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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:54:18.527234+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "201", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1896" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab8433de-b986-4849-91db-9b2812868128 + - 60822072-0429-4871-945a-715401aa90df status: 200 OK code: 200 - duration: 155.924435ms + duration: 139.586289ms - id: 45 request: proto: HTTP/1.1 @@ -2258,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/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 method: GET response: proto: HTTP/2.0 @@ -2266,31 +1918,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 698 + content_length: 700 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: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"}' + body: '{"id":"c57f9cd4-d633-4a32-a268-82b4c2214fe6", "name":"tf-snapshot-pensive-liskov", "parent_volume":{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.490795Z", "updated_at":"2025-10-29T22:55:06.215280Z", "references":[{"id":"39997d79-5126-451a-85db-f1e043bf0db7", "product_resource_type":"instance_image", "product_resource_id":"e518c7b6-3b24-4733-92eb-06fc4f0128ed", "created_at":"2025-10-29T22:55:06.215280Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "698" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "700" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ff22dcc7-fa1c-4ba2-802b-1c7d964cc2a6 + - 72b57199-0dcd-4466-9ad4-2aa6323fb76b status: 200 OK code: 200 - duration: 508.165351ms + duration: 160.183947ms - id: 46 request: proto: HTTP/1.1 @@ -2307,7 +1951,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: GET response: proto: HTTP/2.0 @@ -2315,31 +1959,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 587 + content_length: 578 uncompressed: false - 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"}}' + body: '{"image": {"id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed", "name": "tf-image-bold-shaw", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "c57f9cd4-d633-4a32-a268-82b4c2214fe6", "size": 0, "name": ""}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:06.173729+00:00", "modification_date": "2025-10-29T22:55:09.944920+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "587" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "578" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 014edc69-ad01-4ec7-897a-f641a3bc7f0e + - 7d0373a5-8b5e-4f38-a1b8-75eea9720402 status: 200 OK code: 200 - duration: 110.071306ms + duration: 98.472405ms - id: 47 request: proto: HTTP/1.1 @@ -2356,7 +1992,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -2364,31 +2000,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + content_length: 1944 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:54:18.527234+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "201", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1896" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1944" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 37f40d7c-0faa-4b42-9e1d-0acf635abe1c + - f2880fd0-5e49-486c-b9f0-99d444972875 status: 200 OK code: 200 - duration: 162.090555ms + duration: 118.749765ms - id: 48 request: proto: HTTP/1.1 @@ -2405,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/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f method: GET response: proto: HTTP/2.0 @@ -2415,29 +2043,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6fe955b3-4312-43e2-a897-2e58eb20b1e1 + - 933240ee-eaa1-48e4-89cf-2c424645650f status: 404 Not Found code: 404 - duration: 21.5899ms + duration: 40.148569ms - id: 49 request: proto: HTTP/1.1 @@ -2454,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/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f method: GET response: proto: HTTP/2.0 @@ -2464,29 +2084,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:15.319611Z", "updated_at":"2025-10-29T22:54:15.319611Z", "references":[{"id":"ab508c3f-d859-43f1-ba4b-e0eab22d8582", "product_resource_type":"instance_server", "product_resource_id":"f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "created_at":"2025-10-29T22:54:15.319611Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:03 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa56f5fa-ce7b-4b87-94fb-7ac87342b8f9 + - fd7f9d0c-e680-4734-b15c-14074f19183c status: 200 OK code: 200 - duration: 84.99469ms + duration: 84.777406ms - id: 50 request: proto: HTTP/1.1 @@ -2503,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/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/user_data method: GET response: proto: HTTP/2.0 @@ -2513,29 +2125,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:03 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0a58004d-5716-4db1-83df-44bb301c3133 + - 1950f54e-1cb6-4136-ba4d-e1d0889c13fa status: 200 OK code: 200 - duration: 100.160789ms + duration: 106.729387ms - id: 51 request: proto: HTTP/1.1 @@ -2552,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/290e3695-3812-41ae-8c8e-0da8937db71a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/private_nics method: GET response: proto: HTTP/2.0 @@ -2562,33 +2166,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:03 GMT + - Wed, 29 Oct 2025 22:55:11 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 75f1e6ca-e03e-44d1-a33b-b5475feea603 + - 70a7eef5-4d8d-45f6-b5b4-9de108d01f12 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 84.904722ms + duration: 87.540131ms - id: 52 request: proto: HTTP/1.1 @@ -2605,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/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 method: GET response: proto: HTTP/2.0 @@ -2613,31 +2209,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 698 + content_length: 700 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: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"}' + body: '{"id":"c57f9cd4-d633-4a32-a268-82b4c2214fe6", "name":"tf-snapshot-pensive-liskov", "parent_volume":{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.490795Z", "updated_at":"2025-10-29T22:55:06.215280Z", "references":[{"id":"39997d79-5126-451a-85db-f1e043bf0db7", "product_resource_type":"instance_image", "product_resource_id":"e518c7b6-3b24-4733-92eb-06fc4f0128ed", "created_at":"2025-10-29T22:55:06.215280Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "698" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "700" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cd300eb2-3820-4472-a8a6-ac4c210da9d3 + - 6dba6c60-f266-4910-91c0-ee7d8a462433 status: 200 OK code: 200 - duration: 909.598939ms + duration: 145.033125ms - id: 53 request: proto: HTTP/1.1 @@ -2654,7 +2242,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: GET response: proto: HTTP/2.0 @@ -2662,31 +2250,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 587 + content_length: 578 uncompressed: false - 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"}}' + body: '{"image": {"id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed", "name": "tf-image-bold-shaw", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "c57f9cd4-d633-4a32-a268-82b4c2214fe6", "size": 0, "name": ""}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:06.173729+00:00", "modification_date": "2025-10-29T22:55:09.944920+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "587" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "578" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6a7efc9f-c2c3-4289-9ad8-eb1429f3c92a + - 1b6790a9-6f2a-4ec5-869e-7a8f9e2981af status: 200 OK code: 200 - duration: 108.654661ms + duration: 116.23422ms - id: 54 request: proto: HTTP/1.1 @@ -2703,7 +2283,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: GET response: proto: HTTP/2.0 @@ -2711,31 +2291,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 587 + content_length: 578 uncompressed: false - 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"}}' + body: '{"image": {"id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed", "name": "tf-image-bold-shaw", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "root_volume": {"volume_type": "sbs_snapshot", "id": "c57f9cd4-d633-4a32-a268-82b4c2214fe6", "size": 0, "name": ""}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-10-29T22:55:06.173729+00:00", "modification_date": "2025-10-29T22:55:09.944920+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "587" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "578" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ec2604c0-e957-41eb-a48e-e90410468f6f + - 2b5838b6-9b13-4236-beee-34d415309bd0 status: 200 OK code: 200 - duration: 121.034899ms + duration: 106.911056ms - id: 55 request: proto: HTTP/1.1 @@ -2752,7 +2324,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: DELETE response: proto: HTTP/2.0 @@ -2764,25 +2336,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 724a5e69-15f1-4251-a932-32ffa0d2a324 + - 62483bdc-94a9-4579-937a-db7b63ac1d7d status: 204 No Content code: 204 - duration: 397.066889ms + duration: 444.756656ms - id: 56 request: proto: HTTP/1.1 @@ -2799,7 +2363,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: GET response: proto: HTTP/2.0 @@ -2809,29 +2373,21 @@ interactions: trailer: {} content_length: 142 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed"}' headers: Content-Length: - "142" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ac5d444d-0c24-4b47-a622-8a14b3ffc1a8 + - 970c4c00-fee2-4d70-b5a0-dc23b9424c62 status: 404 Not Found code: 404 - duration: 32.016124ms + duration: 24.857193ms - id: 57 request: proto: HTTP/1.1 @@ -2848,7 +2404,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 method: GET response: proto: HTTP/2.0 @@ -2856,31 +2412,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 698 + content_length: 700 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: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"}' + body: '{"id":"c57f9cd4-d633-4a32-a268-82b4c2214fe6", "name":"tf-snapshot-pensive-liskov", "parent_volume":{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.490795Z", "updated_at":"2025-10-29T22:55:06.215280Z", "references":[{"id":"39997d79-5126-451a-85db-f1e043bf0db7", "product_resource_type":"instance_image", "product_resource_id":"e518c7b6-3b24-4733-92eb-06fc4f0128ed", "created_at":"2025-10-29T22:55:06.215280Z", "type":"link", "status":"attached"}], "status":"in_use", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "698" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "700" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4066da9b-0f49-46c2-abe2-71847b31b2d8 + - cd2c5c56-4a81-466a-846f-fb059e19efd0 status: 200 OK code: 200 - duration: 363.881875ms + duration: 232.130199ms - id: 58 request: proto: HTTP/1.1 @@ -2897,7 +2445,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 method: GET response: proto: HTTP/2.0 @@ -2905,31 +2453,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 472 + content_length: 474 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":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:05.664604Z","zone":"fr-par-1"}' + body: '{"id":"c57f9cd4-d633-4a32-a268-82b4c2214fe6", "name":"tf-snapshot-pensive-liskov", "parent_volume":{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.490795Z", "updated_at":"2025-10-29T22:55:12.590059Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "472" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "474" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cdead153-6525-4f1a-a6e4-8b259dc72119 + - be2663cd-1bc2-4985-a84d-16fe5a68fce4 status: 200 OK code: 200 - duration: 401.000253ms + duration: 258.221484ms - id: 59 request: proto: HTTP/1.1 @@ -2946,7 +2486,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 method: DELETE response: proto: HTTP/2.0 @@ -2958,25 +2498,17 @@ interactions: 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 118d0f2b-8e7d-4343-b944-77fa8630c9f5 + - a06fa33d-aef0-41a1-9bd8-3f5d8ed9ad18 status: 204 No Content code: 204 - duration: 375.831052ms + duration: 347.672793ms - id: 60 request: proto: HTTP/1.1 @@ -2993,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/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 method: GET response: proto: HTTP/2.0 @@ -3003,29 +2535,21 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"c57f9cd4-d633-4a32-a268-82b4c2214fe6","type":"not_found"}' headers: Content-Length: - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 48e06796-7900-49c1-bf92-9df25a93d438 + - 1665d789-745a-45a6-a9a5-c044ea4ad4a4 status: 404 Not Found code: 404 - duration: 91.729451ms + duration: 75.687759ms - id: 61 request: proto: HTTP/1.1 @@ -3042,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/290e3695-3812-41ae-8c8e-0da8937db71a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -3050,31 +2574,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + 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":"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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:54:18.527234+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "201", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1896" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3406b93f-277d-4cf6-882e-9920746e901b + - 117da4c3-c3b9-4a91-8087-64b3dface26c status: 200 OK code: 200 - duration: 145.732673ms + duration: 162.456159ms - id: 62 request: proto: HTTP/1.1 @@ -3091,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/290e3695-3812-41ae-8c8e-0da8937db71a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -3099,31 +2615,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + content_length: 1944 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:54:18.527234+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "201", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1896" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1944" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5862cd6f-c1d4-4abe-84ee-67a328866883 + - 1dfbfbd3-f4d0-4813-8ce0-265748f11bc9 status: 200 OK code: 200 - duration: 161.768073ms + duration: 160.334683ms - id: 63 request: proto: HTTP/1.1 @@ -3142,7 +2650,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/290e3695-3812-41ae-8c8e-0da8937db71a/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/action method: POST response: proto: HTTP/2.0 @@ -3152,31 +2660,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "0710f44b-582b-4ed1-846b-e5e3a546adcc", "description": "server_terminate", "status": "pending", "href_from": "/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/action", "href_result": "/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "started_at": "2025-10-29T22:55:19.083111+00:00", "terminated_at": null, "progress": 0, "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:12 GMT + - Wed, 29 Oct 2025 22:55:19 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ffbc8b11-b63c-4a3f-9055-24e71ca89e61 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0710f44b-582b-4ed1-846b-e5e3a546adcc Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 78495ba8-948a-4d60-858c-ce62e3759d8b + - 512eaad9-009a-45e3-b3d1-9063e0a8dde3 status: 202 Accepted code: 202 - duration: 306.14768ms + duration: 275.339216ms - id: 64 request: proto: HTTP/1.1 @@ -3193,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/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -3201,31 +2701,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1859 + 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-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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:55:18.867139+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "201", "node_id": "23"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1859" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1861" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7c83138c-8161-4235-844f-b56282bbf313 + - 0c35d71d-2ac0-4108-97f1-7c8e796beddb status: 200 OK code: 200 - duration: 151.484837ms + duration: 154.875044ms - id: 65 request: proto: HTTP/1.1 @@ -3242,7 +2734,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -3250,31 +2742,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1859 + content_length: 1907 uncompressed: 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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:55:18.867139+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "201", "node_id": "23"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1859" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1907" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:17 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 864065ac-1be6-4af4-8373-4e0d09e13d5d + - 5ae652e1-f865-4d6d-9125-6d801b86f665 status: 200 OK code: 200 - duration: 160.210039ms + duration: 153.518779ms - id: 66 request: proto: HTTP/1.1 @@ -3291,7 +2775,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -3299,31 +2783,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1859 + 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-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"}}' + body: '{"server": {"id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba", "name": "tf-srv-friendly-lehmann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-friendly-lehmann", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:15.191821+00:00", "modification_date": "2025-10-29T22:55:18.867139+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "201", "node_id": "23"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1859" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1861" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e6e04b16-d89a-4014-a5eb-c486093e001b + - 468825e0-2e7f-49b1-a617-8298a309f251 status: 200 OK code: 200 - duration: 136.195658ms + duration: 141.792362ms - id: 67 request: proto: HTTP/1.1 @@ -3340,7 +2816,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -3350,29 +2826,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"290e3695-3812-41ae-8c8e-0da8937db71a","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0208e1f5-88ab-4d05-9595-b5601aaf7ace + - 855282e7-4c1e-4159-a855-f94928aebce4 status: 404 Not Found code: 404 - duration: 42.87635ms + duration: 42.971841ms - id: 68 request: proto: HTTP/1.1 @@ -3389,7 +2857,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f method: GET response: proto: HTTP/2.0 @@ -3399,29 +2867,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dbe9bc35-e5cf-43c4-ac64-b2f104929a67 + - bb48c607-dc23-4f70-b5fd-edb28ada34cc status: 404 Not Found code: 404 - duration: 28.942227ms + duration: 26.445716ms - id: 69 request: proto: HTTP/1.1 @@ -3438,7 +2898,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f method: GET response: proto: HTTP/2.0 @@ -3448,29 +2908,21 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"a7cec1a2-f9f2-4078-a7be-3c1014d0b60f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:15.319611Z", "updated_at":"2025-10-29T22:55:30.517715Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:30.517715Z", "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:04:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a7eacb25-65fb-448c-8f22-d4ac40a400d6 + - 0148bcce-1b1f-4fca-8fe1-9f194ddb9d88 status: 200 OK code: 200 - duration: 83.407242ms + duration: 78.773473ms - id: 70 request: proto: HTTP/1.1 @@ -3487,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/block/v1alpha1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f method: DELETE response: proto: HTTP/2.0 @@ -3499,25 +2951,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a02455a3-8971-4973-adb2-e0a49a06763e + - e33193e2-3707-4f08-9b6b-73983d9195b5 status: 204 No Content code: 204 - duration: 178.870245ms + duration: 162.28705ms - id: 71 request: proto: HTTP/1.1 @@ -3534,7 +2978,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/ec67478d-9fa1-456d-a511-5ba5ddf60582 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed method: GET response: proto: HTTP/2.0 @@ -3544,29 +2988,21 @@ interactions: trailer: {} content_length: 142 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed"}' headers: Content-Length: - "142" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8c59d1d6-df35-4b12-bc96-4d3bf82ec4ae + - d21a7c82-f665-4d7a-b742-ee852b1afcc1 status: 404 Not Found code: 404 - duration: 29.862543ms + duration: 29.194516ms - id: 72 request: proto: HTTP/1.1 @@ -3583,7 +3019,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 method: DELETE response: proto: HTTP/2.0 @@ -3593,29 +3029,21 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"c57f9cd4-d633-4a32-a268-82b4c2214fe6","type":"not_found"}' headers: Content-Length: - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2022eef7-95a5-4166-bf05-51b4ee4d6e55 + - ace3ccc3-deb7-48b2-96d2-47de4174249f status: 404 Not Found code: 404 - duration: 154.150253ms + duration: 168.526348ms - id: 73 request: proto: HTTP/1.1 @@ -3632,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/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba method: GET response: proto: HTTP/2.0 @@ -3642,26 +3070,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"290e3695-3812-41ae-8c8e-0da8937db71a","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4b6f441f-ed24-431d-9913-8860fdc1d237 + - 0cdb26d1-d5e2-487d-8f32-6b31d8ccaa55 status: 404 Not Found code: 404 - duration: 53.430736ms + duration: 55.62285ms diff --git a/internal/services/instance/testdata/ip-basic.cassette.yaml b/internal/services/instance/testdata/ip-basic.cassette.yaml index b76aef7b6..f9f2009e3 100644 --- a/internal/services/instance/testdata/ip-basic.cassette.yaml +++ b/internal/services/instance/testdata/ip-basic.cassette.yaml @@ -27,135 +27,111 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 364 uncompressed: false - 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"}}' + body: '{"ip": {"id": "aede723a-ffe8-427b-b809-eea14206f331", "address": "51.158.97.50", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "e99b94b9-0d23-4497-9626-4c476913e24e"}}' headers: Content-Length: - - "367" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "364" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53:43 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 + - 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: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9501039a-c530-423e-9b9d-58ab9de83576 + - e4fa39df-967d-451d-824d-28b5cf4ad2c5 status: 201 Created code: 201 - duration: 503.137097ms + duration: 1.288379098s - id: 1 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/aede723a-ffe8-427b-b809-eea14206f331 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 364 uncompressed: false - 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"}}' + body: '{"ip": {"id": "aede723a-ffe8-427b-b809-eea14206f331", "address": "51.158.97.50", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "e99b94b9-0d23-4497-9626-4c476913e24e"}}' headers: Content-Length: - - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "364" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 79493963-225c-41e2-b5fc-9b9344a7b2c8 - status: 201 Created - code: 201 - duration: 651.029586ms + - 3a5e554e-b922-443b-a2c6-32bf894de23a + status: 200 OK + code: 200 + duration: 131.750153ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 50 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + 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/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET + 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: 367 + content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "1d2e96c2-a32c-4233-a580-b2f48aea84ec", "address": "51.158.76.222", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "339602fd-d6c2-4fed-aed2-49561add13b8"}}' headers: Content-Length: - - "367" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "365" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53:43 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d8eda11f-e0ad-440b-8682-41976e1489fd - status: 200 OK - code: 200 - duration: 147.637932ms + - 8bca0a67-1845-4e02-a544-706d34025d32 + status: 201 Created + code: 201 + duration: 1.501585196s - id: 3 request: proto: HTTP/1.1 @@ -172,7 +148,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec method: GET response: proto: HTTP/2.0 @@ -182,29 +158,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "1d2e96c2-a32c-4233-a580-b2f48aea84ec", "address": "51.158.76.222", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "339602fd-d6c2-4fed-aed2-49561add13b8"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 352cec01-9eb8-40b8-91d7-f7dcf75459ed + - 4eae58b6-ccd4-413a-ae07-46aaf95857cb status: 200 OK code: 200 - duration: 138.499918ms + duration: 114.841649ms - id: 4 request: proto: HTTP/1.1 @@ -221,7 +189,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec method: GET response: proto: HTTP/2.0 @@ -231,29 +199,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "1d2e96c2-a32c-4233-a580-b2f48aea84ec", "address": "51.158.76.222", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "339602fd-d6c2-4fed-aed2-49561add13b8"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2f2053fb-f6e8-4970-8d2e-816b43408296 + - e7a8d99a-79a0-49c7-a603-52f49c5347af status: 200 OK code: 200 - duration: 155.686645ms + duration: 117.464923ms - id: 5 request: proto: HTTP/1.1 @@ -270,7 +230,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -278,31 +238,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 364 uncompressed: false - 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"}}' + body: '{"ip": {"id": "aede723a-ffe8-427b-b809-eea14206f331", "address": "51.158.97.50", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "e99b94b9-0d23-4497-9626-4c476913e24e"}}' headers: Content-Length: - - "367" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "364" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dce82a64-0c72-4568-b636-b0aa8f57479d + - 0e4eda75-2b93-40ee-9588-5a3c68119893 status: 200 OK code: 200 - duration: 116.720595ms + duration: 116.665118ms - id: 6 request: proto: HTTP/1.1 @@ -319,7 +271,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec method: GET response: proto: HTTP/2.0 @@ -329,29 +281,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "1d2e96c2-a32c-4233-a580-b2f48aea84ec", "address": "51.158.76.222", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "339602fd-d6c2-4fed-aed2-49561add13b8"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bfd3bf7b-8bf1-4ae1-b30c-aa311011091c + - 6db70959-f746-4e63-b21b-c9c89580c076 status: 200 OK code: 200 - duration: 112.796473ms + duration: 141.509411ms - id: 7 request: proto: HTTP/1.1 @@ -368,7 +312,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -376,31 +320,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 364 uncompressed: false - 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"}}' + body: '{"ip": {"id": "aede723a-ffe8-427b-b809-eea14206f331", "address": "51.158.97.50", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "e99b94b9-0d23-4497-9626-4c476913e24e"}}' headers: Content-Length: - - "367" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "364" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 34ad2d79-f18e-4eb7-a114-6dec807351ba + - 29eb82d2-97ef-4689-80f9-4e74273e8440 status: 200 OK code: 200 - duration: 122.570849ms + duration: 154.098069ms - id: 8 request: proto: HTTP/1.1 @@ -417,7 +353,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: DELETE response: proto: HTTP/2.0 @@ -429,25 +365,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 05838984-07a7-48ce-8750-60f8bae64fa8 + - 93f45cbb-6067-4819-8174-38966560aeee status: 204 No Content code: 204 - duration: 334.044927ms + duration: 313.251421ms - id: 9 request: proto: HTTP/1.1 @@ -464,7 +392,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec method: DELETE response: proto: HTTP/2.0 @@ -476,25 +404,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2bc673c4-3779-474a-b761-483988231b4f + - 1157fcae-d233-40e5-9041-f3acc41cc136 status: 204 No Content code: 204 - duration: 337.863644ms + duration: 314.656729ms - id: 10 request: proto: HTTP/1.1 @@ -511,7 +431,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec method: GET response: proto: HTTP/2.0 @@ -521,29 +441,21 @@ interactions: trailer: {} content_length: 139 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_ip", "resource_id": "1d2e96c2-a32c-4233-a580-b2f48aea84ec"}' headers: Content-Length: - "139" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6b670cb5-3199-422f-95da-634ebc448965 + - d7a38142-23be-4ac0-bdd1-96190cd2e074 status: 404 Not Found code: 404 - duration: 46.118423ms + duration: 45.891968ms - id: 11 request: proto: HTTP/1.1 @@ -560,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/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -570,26 +482,18 @@ interactions: trailer: {} content_length: 139 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"5e1fe2cf-537e-4763-9643-89980a20a0b0","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_ip", "resource_id": "aede723a-ffe8-427b-b809-eea14206f331"}' headers: Content-Length: - "139" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1c22c82e-0892-444b-a919-dc21b30ddb1b + - 0d1729e9-cc7e-4397-bae6-c0f6e0ae3887 status: 404 Not Found code: 404 - duration: 44.370988ms + duration: 53.67988ms 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 c71aeb660..95f2f6cde 100644 --- a/internal/services/instance/testdata/ip-reverse-dns-basic.cassette.yaml +++ b/internal/services/instance/testdata/ip-reverse-dns-basic.cassette.yaml @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1b472bbd-97c8-4237-94d2-2b55d4b7872b"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:25 GMT + - Wed, 29 Oct 2025 22:53:43 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/8f457b60-852b-44a2-9bba-c98d7f41b8c3 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aaea60ca-bc92-4454-aa99-0398e6ac4c7f + - 0c6fc3e2-84f9-4cb8-828d-7c8dbf2f3973 status: 201 Created code: 201 - duration: 540.643409ms + duration: 938.8727ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -80,29 +72,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1b472bbd-97c8-4237-94d2-2b55d4b7872b"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c0711535-4b47-4ae4-840d-775d7fb0fcda + - 55b479c6-700e-4240-9358-806358ab7383 status: 200 OK code: 200 - duration: 141.859552ms + duration: 119.034067ms - id: 2 request: proto: HTTP/1.1 @@ -114,7 +98,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - 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}' + body: '{"changes":[{"add":{"records":[{"data":"51.15.230.164","name":"","priority":1,"ttl":3600,"type":"A","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: @@ -131,29 +115,21 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.15.236.240","id":"c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d","name":"","priority":1,"ttl":3600,"type":"A"}]}' + body: '{"records":[{"id":"938cf943-e547-46dd-8895-742abf737e9b", "data":"51.15.230.164", "name":"", "priority":1, "ttl":3600, "type":"A", "comment":null}]}' headers: Content-Length: - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9080ed7d-2bfd-445b-becb-0c3f2c160676 + - 26c5eac4-a5ba-4cf8-b45d-ab752a19fdc2 status: 200 OK code: 200 - duration: 176.695229ms + duration: 150.359358ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +142,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - "" + order_by: + - name_asc + type: + - A headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -180,29 +162,21 @@ interactions: trailer: {} content_length: 165 uncompressed: false - 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}' + body: '{"total_count":1, "records":[{"id":"938cf943-e547-46dd-8895-742abf737e9b", "data":"51.15.230.164", "name":"", "priority":1, "ttl":3600, "type":"A", "comment":null}]}' headers: Content-Length: - "165" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e3ff1ea3-3aea-4b81-a4cb-0cd7d9086d27 + - 2bf3196c-27f4-45ed-a0cd-ace98251a6fa status: 200 OK code: 200 - duration: 78.599638ms + duration: 103.17277ms - id: 4 request: proto: HTTP/1.1 @@ -215,7 +189,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + name: + - "" + order_by: + - name_asc + page: + - "1" + type: + - A headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -229,29 +211,21 @@ interactions: trailer: {} content_length: 165 uncompressed: false - 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}' + body: '{"total_count":1, "records":[{"id":"938cf943-e547-46dd-8895-742abf737e9b", "data":"51.15.230.164", "name":"", "priority":1, "ttl":3600, "type":"A", "comment":null}]}' headers: Content-Length: - "165" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e46f88a-4c0c-424d-a083-417aaf140b98 + - 6d150e7c-ceca-45c8-ab6a-9c676341c0fe status: 200 OK code: 200 - duration: 100.228474ms + duration: 88.249427ms - id: 5 request: proto: HTTP/1.1 @@ -264,11 +238,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + id: + - 938cf943-e547-46dd-8895-742abf737e9b + name: + - "" + order_by: + - name_asc + page: + - "1" + type: + - unknown headers: User-Agent: - scaleway-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=c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d&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=938cf943-e547-46dd-8895-742abf737e9b&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -278,29 +262,21 @@ interactions: trailer: {} content_length: 165 uncompressed: false - 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}' + body: '{"total_count":1, "records":[{"id":"938cf943-e547-46dd-8895-742abf737e9b", "data":"51.15.230.164", "name":"", "priority":1, "ttl":3600, "type":"A", "comment":null}]}' headers: Content-Length: - "165" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 04233da3-6b41-4767-8510-d4e3dc29e2f9 + - 93190b70-6173-497c-91d1-9f218e3e415d status: 200 OK code: 200 - duration: 97.02363ms + duration: 89.288029ms - id: 6 request: proto: HTTP/1.1 @@ -313,7 +289,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + dns_zones: + - tf-reverse-instance.scaleway-terraform.com + domain: + - "" + order_by: + - domain_asc + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -327,29 +311,21 @@ 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:39:25Z"}],"total_count":1}' + body: '{"total_count":1, "dns_zones":[{"domain":"scaleway-terraform.com", "subdomain":"tf-reverse-instance", "ns":["ns0.dom.scw.cloud", "ns1.dom.scw.cloud"], "ns_default":["ns0.dom.scw.cloud", "ns1.dom.scw.cloud"], "ns_master":[], "status":"pending", "message":null, "updated_at":"2025-10-29T22:53:43Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "linked_products":[]}]}' headers: Content-Length: - "373" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1ef588d3-708d-42ea-9997-936b4ee558f5 + - 6035989a-f64b-4e35-9abc-320e387bb374 status: 200 OK code: 200 - duration: 91.534691ms + duration: 87.749452ms - id: 7 request: proto: HTTP/1.1 @@ -366,7 +342,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -376,29 +352,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1b472bbd-97c8-4237-94d2-2b55d4b7872b"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 68df2618-66cc-4ed1-9f1d-406c701628e5 + - 51ec49ba-1db2-47f1-9668-46c0a5d43b56 status: 200 OK code: 200 - duration: 122.072764ms + duration: 110.230967ms - id: 8 request: proto: HTTP/1.1 @@ -411,11 +379,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + id: + - 938cf943-e547-46dd-8895-742abf737e9b + name: + - "" + order_by: + - name_asc + page: + - "1" + type: + - A headers: User-Agent: - scaleway-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=c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d&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=938cf943-e547-46dd-8895-742abf737e9b&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -425,29 +403,21 @@ interactions: trailer: {} content_length: 165 uncompressed: false - 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}' + body: '{"total_count":1, "records":[{"id":"938cf943-e547-46dd-8895-742abf737e9b", "data":"51.15.230.164", "name":"", "priority":1, "ttl":3600, "type":"A", "comment":null}]}' headers: Content-Length: - "165" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e9d24ac9-b5b9-45f6-9447-264b0672b521 + - 64839ce6-be6d-408c-8579-40d1e9fea57e status: 200 OK code: 200 - duration: 100.593358ms + duration: 143.946137ms - id: 9 request: proto: HTTP/1.1 @@ -460,7 +430,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + dns_zones: + - tf-reverse-instance.scaleway-terraform.com + domain: + - "" + order_by: + - domain_asc + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -474,29 +452,21 @@ 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:39:25Z"}],"total_count":1}' + body: '{"total_count":1, "dns_zones":[{"domain":"scaleway-terraform.com", "subdomain":"tf-reverse-instance", "ns":["ns0.dom.scw.cloud", "ns1.dom.scw.cloud"], "ns_default":["ns0.dom.scw.cloud", "ns1.dom.scw.cloud"], "ns_master":[], "status":"pending", "message":null, "updated_at":"2025-10-29T22:53:43Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "linked_products":[]}]}' headers: Content-Length: - "373" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fc9a98c5-5d62-45ac-bf1c-7e81c1f7307f + - b23b84ad-c454-405f-bb05-3765277bdb22 status: 200 OK code: 200 - duration: 104.773763ms + duration: 76.714419ms - id: 10 request: proto: HTTP/1.1 @@ -513,7 +483,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -523,29 +493,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1b472bbd-97c8-4237-94d2-2b55d4b7872b"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 27bd4cd6-721e-45d0-94bf-3d4e0962705e + - 7ec5c074-1a6f-4845-9eb3-8a1d44eeccf0 status: 200 OK code: 200 - duration: 125.7747ms + duration: 112.741382ms - id: 11 request: proto: HTTP/1.1 @@ -558,11 +520,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + id: + - 938cf943-e547-46dd-8895-742abf737e9b + name: + - "" + order_by: + - name_asc + page: + - "1" + type: + - A headers: User-Agent: - scaleway-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=c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d&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=938cf943-e547-46dd-8895-742abf737e9b&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -572,29 +544,21 @@ interactions: trailer: {} content_length: 165 uncompressed: false - 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}' + body: '{"total_count":1, "records":[{"id":"938cf943-e547-46dd-8895-742abf737e9b", "data":"51.15.230.164", "name":"", "priority":1, "ttl":3600, "type":"A", "comment":null}]}' headers: Content-Length: - "165" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f3aec574-c39c-4277-ab5e-9f7d1441eefc + - 3990495b-f73b-4227-87dd-996983875efc status: 200 OK code: 200 - duration: 85.050123ms + duration: 86.268093ms - id: 12 request: proto: HTTP/1.1 @@ -607,7 +571,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + dns_zones: + - tf-reverse-instance.scaleway-terraform.com + domain: + - "" + order_by: + - domain_asc + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -621,29 +593,21 @@ 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:39:25Z"}],"total_count":1}' + body: '{"total_count":1, "dns_zones":[{"domain":"scaleway-terraform.com", "subdomain":"tf-reverse-instance", "ns":["ns0.dom.scw.cloud", "ns1.dom.scw.cloud"], "ns_default":["ns0.dom.scw.cloud", "ns1.dom.scw.cloud"], "ns_master":[], "status":"pending", "message":null, "updated_at":"2025-10-29T22:53:43Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "linked_products":[]}]}' headers: Content-Length: - "373" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ff0acbf6-bb4c-4e13-b919-4f95db4345c1 + - 68e3a29e-9ff6-42c1-8262-f68d14c32bdd status: 200 OK code: 200 - duration: 90.016411ms + duration: 106.887386ms - id: 13 request: proto: HTTP/1.1 @@ -660,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/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -670,29 +634,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1b472bbd-97c8-4237-94d2-2b55d4b7872b"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e29440f-767b-4a0d-a144-8742f76c1252 + - 3e772a19-c950-4366-ba95-613925ac89c8 status: 200 OK code: 200 - duration: 106.689117ms + duration: 124.378721ms - id: 14 request: proto: HTTP/1.1 @@ -711,7 +667,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/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: PATCH response: proto: HTTP/2.0 @@ -721,29 +677,21 @@ interactions: trailer: {} content_length: 405 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": "tf-reverse-instance.scaleway-terraform.com", "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1b472bbd-97c8-4237-94d2-2b55d4b7872b"}}' headers: Content-Length: - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:32 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 342650e5-55d9-4f2d-9ad5-0269d026df43 + - 75bd6b80-61e9-49f8-870d-22e982cc008c status: 200 OK code: 200 - duration: 485.472124ms + duration: 375.646924ms - id: 15 request: proto: HTTP/1.1 @@ -760,7 +708,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -770,29 +718,21 @@ interactions: trailer: {} content_length: 405 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": "tf-reverse-instance.scaleway-terraform.com", "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1b472bbd-97c8-4237-94d2-2b55d4b7872b"}}' headers: Content-Length: - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:32 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1bc3578f-2505-4d10-8f5c-d47d88bf805c + - b5f901f1-ccbf-4125-9611-39838a5d7e5c status: 200 OK code: 200 - duration: 104.746393ms + duration: 112.425463ms - id: 16 request: proto: HTTP/1.1 @@ -809,7 +749,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -819,29 +759,21 @@ interactions: trailer: {} content_length: 405 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": "tf-reverse-instance.scaleway-terraform.com", "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1b472bbd-97c8-4237-94d2-2b55d4b7872b"}}' headers: Content-Length: - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:32 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 732c1879-fd50-4a9a-9feb-7b77c3429e1b + - b3fef289-e12c-4436-b900-079ba4249f3c status: 200 OK code: 200 - duration: 126.975576ms + duration: 106.304428ms - id: 17 request: proto: HTTP/1.1 @@ -854,11 +786,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + id: + - 938cf943-e547-46dd-8895-742abf737e9b + name: + - "" + order_by: + - name_asc + page: + - "1" + type: + - A headers: User-Agent: - scaleway-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=c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d&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=938cf943-e547-46dd-8895-742abf737e9b&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -868,29 +810,21 @@ interactions: trailer: {} content_length: 165 uncompressed: false - 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}' + body: '{"total_count":1, "records":[{"id":"938cf943-e547-46dd-8895-742abf737e9b", "data":"51.15.230.164", "name":"", "priority":1, "ttl":3600, "type":"A", "comment":null}]}' headers: Content-Length: - "165" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:33 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1a454a9f-121e-4e8b-ac24-b851199f42c8 + - f598a837-db51-4d09-959c-1b6a37e26c19 status: 200 OK code: 200 - duration: 94.946294ms + duration: 90.285936ms - id: 18 request: proto: HTTP/1.1 @@ -903,7 +837,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + dns_zones: + - tf-reverse-instance.scaleway-terraform.com + domain: + - "" + order_by: + - domain_asc + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -917,29 +859,21 @@ interactions: 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-10-15T15:39:27Z"}],"total_count":1}' + body: '{"total_count":1, "dns_zones":[{"domain":"scaleway-terraform.com", "subdomain":"tf-reverse-instance", "ns":["ns0.dom.scw.cloud", "ns1.dom.scw.cloud"], "ns_default":["ns0.dom.scw.cloud", "ns1.dom.scw.cloud"], "ns_master":[], "status":"active", "message":null, "updated_at":"2025-10-29T22:53:48Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "linked_products":[]}]}' headers: Content-Length: - "372" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:33 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e2c34c47-6609-4844-8851-e34c967f4187 + - 9e61546c-5693-416e-aa8d-7538f7c3be08 status: 200 OK code: 200 - duration: 95.637ms + duration: 97.47049ms - id: 19 request: proto: HTTP/1.1 @@ -956,7 +890,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -966,29 +900,21 @@ interactions: trailer: {} content_length: 405 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": "tf-reverse-instance.scaleway-terraform.com", "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1b472bbd-97c8-4237-94d2-2b55d4b7872b"}}' headers: Content-Length: - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:33 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c8fc7d37-0771-448b-a349-433d11f2537a + - c108433c-27c8-4c07-a595-af9487be6bff status: 200 OK code: 200 - duration: 104.355621ms + duration: 109.676985ms - id: 20 request: proto: HTTP/1.1 @@ -1005,7 +931,7 @@ interactions: headers: User-Agent: - scaleway-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=c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d&name=&order_by=name_asc&page=1&type=A + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -1013,31 +939,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 165 + content_length: 405 uncompressed: false - 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}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": "tf-reverse-instance.scaleway-terraform.com", "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1b472bbd-97c8-4237-94d2-2b55d4b7872b"}}' headers: Content-Length: - - "165" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "405" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:33 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a5d23643-7aa4-49af-a699-295b518d8dd5 + - ed2f56a5-3971-428e-8f72-2946a47f1fb4 status: 200 OK code: 200 - duration: 94.732173ms + duration: 110.294358ms - id: 21 request: proto: HTTP/1.1 @@ -1050,11 +968,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + id: + - 938cf943-e547-46dd-8895-742abf737e9b + name: + - "" + order_by: + - name_asc + page: + - "1" + type: + - A headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=938cf943-e547-46dd-8895-742abf737e9b&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -1062,31 +990,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 165 uncompressed: false - 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"}}' + body: '{"total_count":1, "records":[{"id":"938cf943-e547-46dd-8895-742abf737e9b", "data":"51.15.230.164", "name":"", "priority":1, "ttl":3600, "type":"A", "comment":null}]}' headers: Content-Length: - - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "165" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:33 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 10ae3ea2-6bb0-4d91-8a6b-0a0534e9f665 + - b0587d69-2d1f-4a56-951f-f18f40aa4740 status: 200 OK code: 200 - duration: 104.388363ms + duration: 116.917553ms - id: 22 request: proto: HTTP/1.1 @@ -1103,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/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -1113,29 +1033,21 @@ interactions: trailer: {} content_length: 405 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": "tf-reverse-instance.scaleway-terraform.com", "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1b472bbd-97c8-4237-94d2-2b55d4b7872b"}}' headers: Content-Length: - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:33 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7ddc5bcd-f66f-4102-a654-d89b4b43c2c1 + - a20d8f01-2c3f-4dbd-bc5f-626c75868b88 status: 200 OK code: 200 - duration: 107.145054ms + duration: 120.580953ms - id: 23 request: proto: HTTP/1.1 @@ -1148,7 +1060,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + dns_zones: + - tf-reverse-instance.scaleway-terraform.com + domain: + - "" + order_by: + - domain_asc + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1162,29 +1082,21 @@ interactions: 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-10-15T15:39:27Z"}],"total_count":1}' + body: '{"total_count":1, "dns_zones":[{"domain":"scaleway-terraform.com", "subdomain":"tf-reverse-instance", "ns":["ns0.dom.scw.cloud", "ns1.dom.scw.cloud"], "ns_default":["ns0.dom.scw.cloud", "ns1.dom.scw.cloud"], "ns_master":[], "status":"active", "message":null, "updated_at":"2025-10-29T22:53:48Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "linked_products":[]}]}' headers: Content-Length: - "372" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:33 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f085b502-0ad6-42bd-a374-cb8764e9e51c + - eaca5ecc-be6c-4117-a87a-37fab42cecac status: 200 OK code: 200 - duration: 89.79068ms + duration: 79.976991ms - id: 24 request: proto: HTTP/1.1 @@ -1203,7 +1115,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/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: PATCH response: proto: HTTP/2.0 @@ -1213,29 +1125,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1b472bbd-97c8-4237-94d2-2b55d4b7872b"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:34 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fde1357b-2c11-4264-9629-12c85e911de4 + - 0c5ee8dc-3e8a-4382-8800-e8e8e9b259af status: 200 OK code: 200 - duration: 306.781748ms + duration: 296.819514ms - id: 25 request: proto: HTTP/1.1 @@ -1247,7 +1151,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"938cf943-e547-46dd-8895-742abf737e9b"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: @@ -1268,125 +1172,101 @@ interactions: headers: Content-Length: - "14" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:34 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b37ac643-4194-45b7-92ee-0b726bf70d2d + - 96e6a155-c1b1-4f40-aa0d-c8415c11976f status: 200 OK code: 200 - duration: 117.180426ms + duration: 117.733388ms - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 50 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + 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/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: DELETE + 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: 0 + content_length: 365 uncompressed: false - body: "" + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "dcc29974-a7f6-48fc-8d9b-2818587b3f1b"}}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "365" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:34 GMT + - Wed, 29 Oct 2025 22:53:52 GMT + Location: + - 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: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 74fe06c2-a157-4cd7-8f34-f4165633996e - status: 204 No Content - code: 204 - duration: 322.685633ms + - fe46729f-57dc-4908-8ac1-e978e79c598e + status: 201 Created + code: 201 + duration: 721.45472ms - id: 27 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/8f457b60-852b-44a2-9bba-c98d7f41b8c3 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 0 uncompressed: false - 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"}}' + body: "" headers: - Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - 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 + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cd639088-b3d7-4f5a-bb00-15a58620cde7 - status: 201 Created - code: 201 - duration: 1.064600898s + - c88e14e3-b107-439c-8524-a150562fb99d + status: 204 No Content + code: 204 + duration: 304.204354ms - id: 28 request: proto: HTTP/1.1 @@ -1403,7 +1283,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 @@ -1411,31 +1291,23 @@ 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":"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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "dcc29974-a7f6-48fc-8d9b-2818587b3f1b"}}' headers: Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "365" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:34 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9b8dc857-88bc-44c3-b3fc-497d02a5d164 + - 88f6d468-a114-4b6b-83f4-63fab68287f3 status: 200 OK code: 200 - duration: 123.560689ms + duration: 109.49875ms - id: 29 request: proto: HTTP/1.1 @@ -1452,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/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 @@ -1460,31 +1332,23 @@ 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":"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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "dcc29974-a7f6-48fc-8d9b-2818587b3f1b"}}' headers: Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "365" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:35 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 455d324a-b11d-4a13-aad2-42fadeb5532c + - 3b57dc7b-f281-486e-9c9d-2f935e57e264 status: 200 OK code: 200 - duration: 130.699044ms + duration: 127.338619ms - id: 30 request: proto: HTTP/1.1 @@ -1501,7 +1365,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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: DELETE response: proto: HTTP/2.0 @@ -1513,25 +1377,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:35 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - af7d1750-99d4-4298-91fb-e7c9407cc836 + - 52a786ac-fbd6-49ef-b278-32860ad29652 status: 204 No Content code: 204 - duration: 338.957668ms + duration: 298.885118ms - id: 31 request: proto: HTTP/1.1 @@ -1548,7 +1404,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 @@ -1558,26 +1414,18 @@ interactions: trailer: {} content_length: 139 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"aede723a-ffe8-427b-b809-eea14206f331","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_ip", "resource_id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3"}' headers: Content-Length: - "139" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:39:35 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 06b2b947-96df-4d3e-8776-a3ae270ce33f + - 462fbde1-7f34-4a02-a38b-c3a2e6e67c83 status: 404 Not Found code: 404 - duration: 59.105721ms + duration: 56.636429ms diff --git a/internal/services/instance/testdata/ip-routed-ipv6-attached.cassette.yaml b/internal/services/instance/testdata/ip-routed-ipv6-attached.cassette.yaml index 2a8456eed..c6999b5cf 100644 --- a/internal/services/instance/testdata/ip-routed-ipv6-attached.cassette.yaml +++ b/internal/services/instance/testdata/ip-routed-ipv6-attached.cassette.yaml @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 374 uncompressed: false - body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","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"}}' + body: '{"ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": null, "prefix": "2001:bc8:710:4201::/64", "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv6", "state": "detached", "tags": [], "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}}' headers: Content-Length: - "374" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:09 GMT + - Wed, 29 Oct 2025 22:54:36 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d5693730-d0e2-4e04-9427-65be435510a6 + - c9eeca50-ddf9-4344-8d4c-a4d585c76ba0 status: 201 Created code: 201 - duration: 722.005316ms + duration: 2.840368247s - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + 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,29 +72,21 @@ interactions: trailer: {} content_length: 374 uncompressed: false - body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","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"}}' + body: '{"ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": null, "prefix": "2001:bc8:710:4201::/64", "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv6", "state": "detached", "tags": [], "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}}' headers: Content-Length: - "374" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4d3c0e27-bbf0-4258-8bf8-678f02cddf87 + - 118456fd-5bab-462a-9344-c36999a547f2 status: 200 OK code: 200 - duration: 120.188507ms + duration: 235.144514ms - id: 2 request: proto: HTTP/1.1 @@ -115,7 +99,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -127,35 +113,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:09 GMT + - Wed, 29 Oct 2025 22:54:36 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0291fa78-3b38-46d4-bdec-06746279004b + - d78c2c09-0538-4ed0-942d-884b89f9e0a6 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 52.054784ms + duration: 53.104281ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +146,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -182,33 +162,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:09 GMT + - Wed, 29 Oct 2025 22:54:36 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b7cd676b-37af-456c-87a2-c4e3ec77ccba + - df34c562-1704-428e-a02e-50f0cb01719f X-Total-Count: - "68" status: 200 OK code: 200 - duration: 144.148967ms + duration: 197.471127ms - id: 4 request: proto: HTTP/1.1 @@ -221,7 +193,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_noble + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -233,43 +213,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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":"90e47fab-efa3-46d8-9607-f327a0ea65bb","label":"ubuntu_noble","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":"f29fccee-005e-46f1-bfa1-9af73fd318c3","label":"ubuntu_noble","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"id":"90e47fab-efa3-46d8-9607-f327a0ea65bb", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_noble", "type":"instance_sbs"}, {"id":"f29fccee-005e-46f1-bfa1-9af73fd318c3", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_noble", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3c5f611a-4e73-47da-8a96-f63a92f094f9 + - 30277144-cdbf-4231-84b0-f912e4e2c5dc status: 200 OK code: 200 - duration: 49.464332ms + duration: 55.009284ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 289 + content_length: 285 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-hardcore-shamir","dynamic_ip_required":false,"commercial_type":"PRO2-S","image":"90e47fab-efa3-46d8-9607-f327a0ea65bb","volumes":{"0":{"boot":false}},"public_ips":["88201074-761e-4ed1-83b4-f7fc97b5599f"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-srv-keen-liskov","dynamic_ip_required":false,"commercial_type":"PRO2-S","image":"90e47fab-efa3-46d8-9607-f327a0ea65bb","volumes":{"0":{"boot":false}},"public_ips":["2a2afa1d-f9d6-4e74-b39b-6c001dfdb154"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -284,33 +256,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + content_length: 2333 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:10.008136+00:00","name":"tf-srv-hardcore-shamir","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:b031","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b032","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b031","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b032","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov", "arch": "x86_64", "commercial_type": "PRO2-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-keen-liskov", "image": {"id": "90e47fab-efa3-46d8-9607-f327a0ea65bb", "name": "Ubuntu 24.04 Noble Numbat", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "a7614e65-45a6-4223-80fe-15ef119f5311", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:03:37.920310+00:00", "modification_date": "2025-09-12T09:03:37.920310+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "01528513-1a22-4afc-90e0-d2fbfaced70a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:4193", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:4194", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:4193", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:4194", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}], "mac_address": "de:00:00:d0:41:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:37.682659+00:00", "modification_date": "2025-10-29T22:54:37.682659+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2333" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:11 GMT + - Wed, 29 Oct 2025 22:54:38 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c04bf576-d7b5-4396-bb38-92f4ba46356a + - d1b7a481-e206-47d4-8791-09348b0d46a8 status: 201 Created code: 201 - duration: 1.837028071s + duration: 1.648113792s - id: 6 request: proto: HTTP/1.1 @@ -327,7 +291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 method: GET response: proto: HTTP/2.0 @@ -335,31 +299,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + content_length: 2333 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:10.008136+00:00","name":"tf-srv-hardcore-shamir","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:b031","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b032","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b031","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b032","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov", "arch": "x86_64", "commercial_type": "PRO2-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-keen-liskov", "image": {"id": "90e47fab-efa3-46d8-9607-f327a0ea65bb", "name": "Ubuntu 24.04 Noble Numbat", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "a7614e65-45a6-4223-80fe-15ef119f5311", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:03:37.920310+00:00", "modification_date": "2025-09-12T09:03:37.920310+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "01528513-1a22-4afc-90e0-d2fbfaced70a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:4193", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:4194", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:4193", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:4194", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}], "mac_address": "de:00:00:d0:41:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:37.682659+00:00", "modification_date": "2025-10-29T22:54:37.682659+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2333" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 474822fb-2de5-46be-b98a-b768e38138d6 + - d5262ba9-9e56-47fb-b4ae-972c2c4f8464 status: 200 OK code: 200 - duration: 156.355671ms + duration: 134.020139ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 method: GET response: proto: HTTP/2.0 @@ -384,31 +340,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + content_length: 2379 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:10.008136+00:00","name":"tf-srv-hardcore-shamir","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:b031","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b032","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b031","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b032","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov", "arch": "x86_64", "commercial_type": "PRO2-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-keen-liskov", "image": {"id": "90e47fab-efa3-46d8-9607-f327a0ea65bb", "name": "Ubuntu 24.04 Noble Numbat", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "a7614e65-45a6-4223-80fe-15ef119f5311", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:03:37.920310+00:00", "modification_date": "2025-09-12T09:03:37.920310+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "01528513-1a22-4afc-90e0-d2fbfaced70a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:4193", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:4194", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:4193", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:4194", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}], "mac_address": "de:00:00:d0:41:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:37.682659+00:00", "modification_date": "2025-10-29T22:54:37.682659+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2379" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6b536662-b003-49fa-981f-0b2b1fe553fe + - 6d053f03-f564-4fd7-9a8e-735e64a96e68 status: 200 OK code: 200 - duration: 132.567586ms + duration: 272.12695ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1746ecca-a961-498d-9fea-dff3fae23b24 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a method: GET response: proto: HTTP/2.0 @@ -435,29 +383,21 @@ interactions: trailer: {} content_length: 702 uncompressed: false - body: '{"created_at":"2025-10-15T13:30:10.180418Z","id":"1746ecca-a961-498d-9fea-dff3fae23b24","last_detached_at":null,"name":"Ubuntu 24.04 Noble Numbat_sbs_volume_0","parent_snapshot_id":"a7614e65-45a6-4223-80fe-15ef119f5311","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T13:30:10.180418Z","id":"e92f93d6-d232-44c3-ad17-c865be4a384f","product_resource_id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T13:30:10.180418Z","zone":"fr-par-1"}' + body: '{"id":"01528513-1a22-4afc-90e0-d2fbfaced70a", "name":"Ubuntu 24.04 Noble Numbat_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:37.823602Z", "updated_at":"2025-10-29T22:54:37.823602Z", "references":[{"id":"347b3e30-ffbc-413e-8c7b-4ea32963ad65", "product_resource_type":"instance_server", "product_resource_id":"cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "created_at":"2025-10-29T22:54:37.823602Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"a7614e65-45a6-4223-80fe-15ef119f5311", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 13:30:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b112f345-85d7-4ad6-81a4-504c4d034c32 + - 46e90ef9-0d7b-4c3a-b5e1-a43ec3a8b13e status: 200 OK code: 200 - duration: 106.628755ms + duration: 101.708499ms - id: 9 request: proto: HTTP/1.1 @@ -476,7 +416,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/a9e2f923-5823-4d5a-86cd-044c95eaf4c1/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0/action method: POST response: proto: HTTP/2.0 @@ -486,31 +426,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1/action","href_result":"/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1","id":"ac18cffb-82dc-49f3-87fb-d572d0cc86db","progress":0,"started_at":"2025-10-15T13:30:11.866409+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task": {"id": "e6f5d42d-7cdd-4542-8de8-218e8bb5e584", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0/action", "href_result": "/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "started_at": "2025-10-29T22:54:39.530446+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:11 GMT + - Wed, 29 Oct 2025 22:54:39 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ac18cffb-82dc-49f3-87fb-d572d0cc86db + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e6f5d42d-7cdd-4542-8de8-218e8bb5e584 Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4a5428f9-ccb1-4369-af18-568cc192ea48 + - 3bd90ad9-011c-4f25-85fb-c35390573594 status: 202 Accepted code: 202 - duration: 265.532198ms + duration: 323.548396ms - id: 10 request: proto: HTTP/1.1 @@ -527,7 +459,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 method: GET response: proto: HTTP/2.0 @@ -535,31 +467,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2363 + content_length: 2401 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:11.668354+00:00","name":"tf-srv-hardcore-shamir","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:b031","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b032","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b031","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b032","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov", "arch": "x86_64", "commercial_type": "PRO2-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-keen-liskov", "image": {"id": "90e47fab-efa3-46d8-9607-f327a0ea65bb", "name": "Ubuntu 24.04 Noble Numbat", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "a7614e65-45a6-4223-80fe-15ef119f5311", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:03:37.920310+00:00", "modification_date": "2025-09-12T09:03:37.920310+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "01528513-1a22-4afc-90e0-d2fbfaced70a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:4193", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:4194", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:4193", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:4194", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}], "mac_address": "de:00:00:d0:41:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:37.682659+00:00", "modification_date": "2025-10-29T22:54:39.297043+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2363" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2401" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 55e35abd-d6a3-41a2-bdd6-1c429361da54 + - a7baf09b-1359-4866-bc57-ccf5a31518f1 status: 200 OK code: 200 - duration: 138.646638ms + duration: 191.062675ms - id: 11 request: proto: HTTP/1.1 @@ -576,7 +500,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 method: GET response: proto: HTTP/2.0 @@ -584,31 +508,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2497 + content_length: 2489 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"501","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:14.109470+00:00","name":"tf-srv-hardcore-shamir","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:b031","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b032","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b031","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b032","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov", "arch": "x86_64", "commercial_type": "PRO2-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-keen-liskov", "image": {"id": "90e47fab-efa3-46d8-9607-f327a0ea65bb", "name": "Ubuntu 24.04 Noble Numbat", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "a7614e65-45a6-4223-80fe-15ef119f5311", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:03:37.920310+00:00", "modification_date": "2025-09-12T09:03:37.920310+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "01528513-1a22-4afc-90e0-d2fbfaced70a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:4193", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:4194", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:4193", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:4194", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}], "mac_address": "de:00:00:d0:41:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:37.682659+00:00", "modification_date": "2025-10-29T22:54:42.348563+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "59", "hypervisor_id": "401", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2497" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2489" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:17 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 82b6f943-de74-42c2-af5a-c9f4076d1d2d + - 846f02ac-d08d-454e-b9bd-e105fd174723 status: 200 OK code: 200 - duration: 264.28153ms + duration: 135.615233ms - id: 12 request: proto: HTTP/1.1 @@ -625,7 +541,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 method: GET response: proto: HTTP/2.0 @@ -633,31 +549,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2497 + content_length: 2489 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"501","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:14.109470+00:00","name":"tf-srv-hardcore-shamir","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:b031","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b032","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b031","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b032","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov", "arch": "x86_64", "commercial_type": "PRO2-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-keen-liskov", "image": {"id": "90e47fab-efa3-46d8-9607-f327a0ea65bb", "name": "Ubuntu 24.04 Noble Numbat", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "a7614e65-45a6-4223-80fe-15ef119f5311", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:03:37.920310+00:00", "modification_date": "2025-09-12T09:03:37.920310+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "01528513-1a22-4afc-90e0-d2fbfaced70a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:4193", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:4194", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:4193", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:4194", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}], "mac_address": "de:00:00:d0:41:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:37.682659+00:00", "modification_date": "2025-10-29T22:54:42.348563+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "59", "hypervisor_id": "401", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2497" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2489" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:17 GMT + - Wed, 29 Oct 2025 22:54:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9439a79-e20b-40ea-9a15-6f1246b77c34 + - 84557e5f-7c47-4612-a6ab-960c0a28aaa2 status: 200 OK code: 200 - duration: 202.024743ms + duration: 136.156106ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1746ecca-a961-498d-9fea-dff3fae23b24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a method: GET response: proto: HTTP/2.0 @@ -684,29 +592,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1746ecca-a961-498d-9fea-dff3fae23b24","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "01528513-1a22-4afc-90e0-d2fbfaced70a"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:17 GMT + - Wed, 29 Oct 2025 22:54:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5b12dc90-ea4d-4330-8d10-2866497f6cc3 + - 5ccbf52d-b0a8-45ad-9efc-02967ca0515a status: 404 Not Found code: 404 - duration: 55.570103ms + duration: 27.452374ms - id: 14 request: proto: HTTP/1.1 @@ -723,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/1746ecca-a961-498d-9fea-dff3fae23b24 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a method: GET response: proto: HTTP/2.0 @@ -733,29 +633,21 @@ interactions: trailer: {} content_length: 702 uncompressed: false - body: '{"created_at":"2025-10-15T13:30:10.180418Z","id":"1746ecca-a961-498d-9fea-dff3fae23b24","last_detached_at":null,"name":"Ubuntu 24.04 Noble Numbat_sbs_volume_0","parent_snapshot_id":"a7614e65-45a6-4223-80fe-15ef119f5311","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T13:30:10.180418Z","id":"e92f93d6-d232-44c3-ad17-c865be4a384f","product_resource_id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T13:30:10.180418Z","zone":"fr-par-1"}' + body: '{"id":"01528513-1a22-4afc-90e0-d2fbfaced70a", "name":"Ubuntu 24.04 Noble Numbat_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:37.823602Z", "updated_at":"2025-10-29T22:54:37.823602Z", "references":[{"id":"347b3e30-ffbc-413e-8c7b-4ea32963ad65", "product_resource_type":"instance_server", "product_resource_id":"cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "created_at":"2025-10-29T22:54:37.823602Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"a7614e65-45a6-4223-80fe-15ef119f5311", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 13:30:17 GMT + - Wed, 29 Oct 2025 22:54:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2679daaf-f8a2-4abd-9b9f-dd3b83b359d7 + - d7ada278-f8fb-4a77-9ec0-56d18f8b0ec6 status: 200 OK code: 200 - duration: 93.027545ms + duration: 127.449905ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0/user_data method: GET response: proto: HTTP/2.0 @@ -782,29 +674,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 13:30:17 GMT + - Wed, 29 Oct 2025 22:54:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b1c8a1a2-1f72-4e51-b60a-989e87b67e00 + - d335a8f0-b257-47f0-8486-a50f47731a61 status: 200 OK code: 200 - duration: 110.743631ms + duration: 118.2434ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0/private_nics method: GET response: proto: HTTP/2.0 @@ -831,33 +715,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 13:30:17 GMT + - Wed, 29 Oct 2025 22:54:45 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 58393bb1-73b5-4c8a-a0e7-4ad55ec0892e + - 8c6a75a3-c3c0-492e-8ff5-8b03ec8a75e7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 152.23033ms + duration: 189.499044ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +750,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 method: GET response: proto: HTTP/2.0 @@ -882,31 +758,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 450 + content_length: 446 uncompressed: false - body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404a::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","name":"tf-srv-hardcore-shamir"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": null, "prefix": "2001:bc8:710:4201::/64", "reverse": null, "server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv6", "state": "attached", "tags": [], "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}}' headers: Content-Length: - - "450" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "446" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:18 GMT + - Wed, 29 Oct 2025 22:54:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aff1b7ed-2230-4a46-9a33-9c091cbba164 + - b9a0ec0e-f6aa-4cff-bc74-c28579a565c0 status: 200 OK code: 200 - duration: 162.309515ms + duration: 220.693907ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +791,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 method: GET response: proto: HTTP/2.0 @@ -931,31 +799,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 450 + content_length: 446 uncompressed: false - body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404a::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","name":"tf-srv-hardcore-shamir"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": null, "prefix": "2001:bc8:710:4201::/64", "reverse": null, "server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv6", "state": "attached", "tags": [], "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}}' headers: Content-Length: - - "450" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "446" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bad42833-967c-4aed-9486-cc59b78375ec + - 888f85b8-67ef-4759-87ac-7e47b4f2c8f9 status: 200 OK code: 200 - duration: 175.72347ms + duration: 257.918867ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 method: GET response: proto: HTTP/2.0 @@ -980,31 +840,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2497 + content_length: 2489 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"501","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:14.109470+00:00","name":"tf-srv-hardcore-shamir","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:b031","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b032","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b031","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b032","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov", "arch": "x86_64", "commercial_type": "PRO2-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-keen-liskov", "image": {"id": "90e47fab-efa3-46d8-9607-f327a0ea65bb", "name": "Ubuntu 24.04 Noble Numbat", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "a7614e65-45a6-4223-80fe-15ef119f5311", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:03:37.920310+00:00", "modification_date": "2025-09-12T09:03:37.920310+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "01528513-1a22-4afc-90e0-d2fbfaced70a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:4193", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:4194", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:4193", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:4194", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}], "mac_address": "de:00:00:d0:41:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:37.682659+00:00", "modification_date": "2025-10-29T22:54:42.348563+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "59", "hypervisor_id": "401", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2497" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2489" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0bf8b908-65f0-4fa6-b08c-cf0768b02957 + - 379161b6-64d8-46f8-bbd1-490c80461a5a status: 200 OK code: 200 - duration: 229.139333ms + duration: 153.945281ms - id: 20 request: proto: HTTP/1.1 @@ -1021,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/volumes/1746ecca-a961-498d-9fea-dff3fae23b24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a method: GET response: proto: HTTP/2.0 @@ -1031,29 +883,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1746ecca-a961-498d-9fea-dff3fae23b24","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "01528513-1a22-4afc-90e0-d2fbfaced70a"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6a1e4739-bcb5-448f-a6c1-05f0d68c0822 + - 3a50b13f-2359-4145-af41-9019e27b83cc status: 404 Not Found code: 404 - duration: 49.933984ms + duration: 38.241019ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1746ecca-a961-498d-9fea-dff3fae23b24 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a method: GET response: proto: HTTP/2.0 @@ -1080,29 +924,21 @@ interactions: trailer: {} content_length: 702 uncompressed: false - body: '{"created_at":"2025-10-15T13:30:10.180418Z","id":"1746ecca-a961-498d-9fea-dff3fae23b24","last_detached_at":null,"name":"Ubuntu 24.04 Noble Numbat_sbs_volume_0","parent_snapshot_id":"a7614e65-45a6-4223-80fe-15ef119f5311","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T13:30:10.180418Z","id":"e92f93d6-d232-44c3-ad17-c865be4a384f","product_resource_id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T13:30:10.180418Z","zone":"fr-par-1"}' + body: '{"id":"01528513-1a22-4afc-90e0-d2fbfaced70a", "name":"Ubuntu 24.04 Noble Numbat_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:37.823602Z", "updated_at":"2025-10-29T22:54:37.823602Z", "references":[{"id":"347b3e30-ffbc-413e-8c7b-4ea32963ad65", "product_resource_type":"instance_server", "product_resource_id":"cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "created_at":"2025-10-29T22:54:37.823602Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"a7614e65-45a6-4223-80fe-15ef119f5311", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 13:30:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eecccc26-a574-4ca1-a0f4-7a9aae1d7064 + - d06cee3d-17b3-4e44-820a-16e88350a34e status: 200 OK code: 200 - duration: 89.779066ms + duration: 88.537861ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0/user_data method: GET response: proto: HTTP/2.0 @@ -1129,29 +965,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 13:30:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3faf5595-88f5-4df9-931b-f8fb9e4361a5 + - 325e014e-7e18-4268-b489-40285720c81f status: 200 OK code: 200 - duration: 105.240312ms + duration: 114.671862ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +996,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0/private_nics method: GET response: proto: HTTP/2.0 @@ -1178,33 +1006,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 13:30:19 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d1ba1f92-514e-42b6-9bdb-1ffe19be4c91 + - 618b26f2-0e27-4dcf-a255-839bf2ba918e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 112.066379ms + duration: 92.786506ms - id: 24 request: proto: HTTP/1.1 @@ -1223,7 +1043,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/88201074-761e-4ed1-83b4-f7fc97b5599f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 method: PATCH response: proto: HTTP/2.0 @@ -1233,29 +1053,21 @@ interactions: trailer: {} content_length: 374 uncompressed: false - body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"3b39545c-4e62-463c-83c6-563d45de07d5","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"}}' + body: '{"ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": null, "prefix": "2001:bc8:710:4201::/64", "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv6", "state": "detached", "tags": [], "ipam_id": "22bab039-b4ae-4ec2-9a8a-3114fa387c15"}}' headers: Content-Length: - "374" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:20 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cff734cf-7452-4bb1-88ef-e47a27ece3f5 + - dc1b2d5f-31ce-4a42-bcb5-8d4f4489472c status: 200 OK code: 200 - duration: 837.05114ms + duration: 572.597214ms - id: 25 request: proto: HTTP/1.1 @@ -1272,7 +1084,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 method: GET response: proto: HTTP/2.0 @@ -1280,31 +1092,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1897 + content_length: 1889 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"501","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:14.109470+00:00","name":"tf-srv-hardcore-shamir","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov", "arch": "x86_64", "commercial_type": "PRO2-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-keen-liskov", "image": {"id": "90e47fab-efa3-46d8-9607-f327a0ea65bb", "name": "Ubuntu 24.04 Noble Numbat", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "a7614e65-45a6-4223-80fe-15ef119f5311", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:03:37.920310+00:00", "modification_date": "2025-09-12T09:03:37.920310+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "01528513-1a22-4afc-90e0-d2fbfaced70a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:37.682659+00:00", "modification_date": "2025-10-29T22:54:42.348563+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "59", "hypervisor_id": "401", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1897" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1889" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:20 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d1d3f4f5-12f3-47ac-be34-528a9ef28543 + - 44e383f6-b331-4d0a-836f-f0e9eac7dece status: 200 OK code: 200 - duration: 201.10474ms + duration: 146.580219ms - id: 26 request: proto: HTTP/1.1 @@ -1321,7 +1125,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1746ecca-a961-498d-9fea-dff3fae23b24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 method: GET response: proto: HTTP/2.0 @@ -1329,50 +1133,42 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 702 + content_length: 1935 uncompressed: false - body: '{"created_at":"2025-10-15T13:30:10.180418Z","id":"1746ecca-a961-498d-9fea-dff3fae23b24","last_detached_at":null,"name":"Ubuntu 24.04 Noble Numbat_sbs_volume_0","parent_snapshot_id":"a7614e65-45a6-4223-80fe-15ef119f5311","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T13:30:10.180418Z","id":"e92f93d6-d232-44c3-ad17-c865be4a384f","product_resource_id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T13:30:10.180418Z","zone":"fr-par-1"}' + body: '{"server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov", "arch": "x86_64", "commercial_type": "PRO2-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-keen-liskov", "image": {"id": "90e47fab-efa3-46d8-9607-f327a0ea65bb", "name": "Ubuntu 24.04 Noble Numbat", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "a7614e65-45a6-4223-80fe-15ef119f5311", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:03:37.920310+00:00", "modification_date": "2025-09-12T09:03:37.920310+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "01528513-1a22-4afc-90e0-d2fbfaced70a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:37.682659+00:00", "modification_date": "2025-10-29T22:54:42.348563+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "59", "hypervisor_id": "401", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "702" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1935" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:20 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8f386a64-1da8-4f83-b310-da3f63b1d800 + - aa48b881-ff27-4364-a26e-8512fcad2f0e status: 200 OK code: 200 - duration: 109.318321ms + duration: 155.356861ms - id: 27 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0/action method: POST response: proto: HTTP/2.0 @@ -1380,33 +1176,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1/action","href_result":"/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1","id":"c122d01c-a502-4152-b6ad-205151ac6a2d","progress":0,"started_at":"2025-10-15T13:30:20.860990+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task": {"id": "dcb6dbf6-2316-4b99-a7e5-ff56681e1bdc", "description": "server_terminate", "status": "pending", "href_from": "/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0/action", "href_result": "/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "started_at": "2025-10-29T22:54:48.230351+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "353" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:21 GMT + - Wed, 29 Oct 2025 22:54:48 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c122d01c-a502-4152-b6ad-205151ac6a2d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/dcb6dbf6-2316-4b99-a7e5-ff56681e1bdc Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 96a5f245-db82-46ea-af94-7ba796aacdc9 + - aa94db5c-4244-41b9-bfbd-dc20b255d79c status: 202 Accepted code: 202 - duration: 567.482316ms + duration: 284.798944ms - id: 28 request: proto: HTTP/1.1 @@ -1423,7 +1211,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 method: GET response: proto: HTTP/2.0 @@ -1431,31 +1219,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1857 + content_length: 1898 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"501","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:20.504813+00:00","name":"tf-srv-hardcore-shamir","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov", "arch": "x86_64", "commercial_type": "PRO2-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-keen-liskov", "image": {"id": "90e47fab-efa3-46d8-9607-f327a0ea65bb", "name": "Ubuntu 24.04 Noble Numbat", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "a7614e65-45a6-4223-80fe-15ef119f5311", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:03:37.920310+00:00", "modification_date": "2025-09-12T09:03:37.920310+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "01528513-1a22-4afc-90e0-d2fbfaced70a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:37.682659+00:00", "modification_date": "2025-10-29T22:54:48.001693+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "59", "hypervisor_id": "401", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1857" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:21 GMT + - Wed, 29 Oct 2025 22:54:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - abcfff77-f255-44c1-ab28-4430de8311dd + - 920a80bb-b1df-46f2-b19c-966ca109e71b status: 200 OK code: 200 - duration: 282.401884ms + duration: 142.137331ms - id: 29 request: proto: HTTP/1.1 @@ -1472,7 +1252,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 method: GET response: proto: HTTP/2.0 @@ -1480,31 +1260,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1857 + content_length: 1898 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"501","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:20.504813+00:00","name":"tf-srv-hardcore-shamir","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov", "arch": "x86_64", "commercial_type": "PRO2-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-keen-liskov", "image": {"id": "90e47fab-efa3-46d8-9607-f327a0ea65bb", "name": "Ubuntu 24.04 Noble Numbat", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "a7614e65-45a6-4223-80fe-15ef119f5311", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:03:37.920310+00:00", "modification_date": "2025-09-12T09:03:37.920310+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "01528513-1a22-4afc-90e0-d2fbfaced70a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:37.682659+00:00", "modification_date": "2025-10-29T22:54:48.001693+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "59", "hypervisor_id": "401", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1857" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:26 GMT + - Wed, 29 Oct 2025 22:54:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 78f1a5c7-9149-4ca6-b8d6-c9587c737501 + - 41ace05c-5c8e-43dd-a529-542ae96a2725 status: 200 OK code: 200 - duration: 181.348143ms + duration: 132.582225ms - id: 30 request: proto: HTTP/1.1 @@ -1521,7 +1293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 method: GET response: proto: HTTP/2.0 @@ -1529,31 +1301,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1857 + content_length: 1898 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"501","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:20.504813+00:00","name":"tf-srv-hardcore-shamir","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov", "arch": "x86_64", "commercial_type": "PRO2-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-keen-liskov", "image": {"id": "90e47fab-efa3-46d8-9607-f327a0ea65bb", "name": "Ubuntu 24.04 Noble Numbat", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "a7614e65-45a6-4223-80fe-15ef119f5311", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:03:37.920310+00:00", "modification_date": "2025-09-12T09:03:37.920310+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "01528513-1a22-4afc-90e0-d2fbfaced70a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:37.682659+00:00", "modification_date": "2025-10-29T22:54:48.001693+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "59", "hypervisor_id": "401", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1857" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:31 GMT + - Wed, 29 Oct 2025 22:54:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d4b8f82a-c04c-4bf6-9cb1-ffceb6394ee1 + - 3f240f8a-be24-4654-beef-6a485771d012 status: 200 OK code: 200 - duration: 154.81799ms + duration: 151.78679ms - id: 31 request: proto: HTTP/1.1 @@ -1570,7 +1334,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 method: GET response: proto: HTTP/2.0 @@ -1578,31 +1342,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1857 + content_length: 1852 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"501","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:20.504813+00:00","name":"tf-srv-hardcore-shamir","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov", "arch": "x86_64", "commercial_type": "PRO2-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-keen-liskov", "image": {"id": "90e47fab-efa3-46d8-9607-f327a0ea65bb", "name": "Ubuntu 24.04 Noble Numbat", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "a7614e65-45a6-4223-80fe-15ef119f5311", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:03:37.920310+00:00", "modification_date": "2025-09-12T09:03:37.920310+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "01528513-1a22-4afc-90e0-d2fbfaced70a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:37.682659+00:00", "modification_date": "2025-10-29T22:54:48.001693+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "59", "hypervisor_id": "401", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1857" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1852" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:36 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a3de1c2e-b5de-4b48-9e4b-5d8520016476 + - fe792467-3066-4e95-b149-0c4a384f02e0 status: 200 OK code: 200 - duration: 156.664289ms + duration: 138.866791ms - id: 32 request: proto: HTTP/1.1 @@ -1619,7 +1375,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 method: GET response: proto: HTTP/2.0 @@ -1627,31 +1383,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1857 + content_length: 1898 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"501","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:20.504813+00:00","name":"tf-srv-hardcore-shamir","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0", "name": "tf-srv-keen-liskov", "arch": "x86_64", "commercial_type": "PRO2-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-keen-liskov", "image": {"id": "90e47fab-efa3-46d8-9607-f327a0ea65bb", "name": "Ubuntu 24.04 Noble Numbat", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "a7614e65-45a6-4223-80fe-15ef119f5311", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:03:37.920310+00:00", "modification_date": "2025-09-12T09:03:37.920310+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "01528513-1a22-4afc-90e0-d2fbfaced70a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:37.682659+00:00", "modification_date": "2025-10-29T22:54:48.001693+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "59", "hypervisor_id": "401", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1857" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:30:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e58f5ce8-242a-4308-addd-06ddc0a39104 + - 6663f28b-54fd-4865-a62e-7cda0d8b8efd status: 200 OK code: 200 - duration: 158.84633ms + duration: 140.535273ms - id: 33 request: proto: HTTP/1.1 @@ -1668,446 +1416,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1857 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"501","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:20.504813+00:00","name":"tf-srv-hardcore-shamir","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1857" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 13:30: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: - - 2ae0149a-b491-43f9-af8d-e12ba7144fa8 - status: 200 OK - code: 200 - duration: 162.147885ms - - 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/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1857 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"501","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:20.504813+00:00","name":"tf-srv-hardcore-shamir","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1857" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 13:30: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: - - 5eed67cb-ba3d-495e-90f6-d8b2a71db174 - status: 200 OK - code: 200 - duration: 145.160198ms - - 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/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1857 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"501","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:20.504813+00:00","name":"tf-srv-hardcore-shamir","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1857" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 13:30: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: - - 3cfe2308-ef9e-4579-8bab-2c3ea4d194af - status: 200 OK - code: 200 - duration: 130.737655ms - - 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/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1857 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"501","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:20.504813+00:00","name":"tf-srv-hardcore-shamir","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1857" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 13:31: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: - - ca81fca1-c93d-4339-bae1-e93bcea3ed15 - status: 200 OK - code: 200 - duration: 144.835192ms - - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1857 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"501","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:20.504813+00:00","name":"tf-srv-hardcore-shamir","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1857" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 13:31: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: - - 4f618335-0079-423b-8786-4ef84257b730 - status: 200 OK - code: 200 - duration: 161.158765ms - - 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/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1857 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"501","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:30:20.504813+00:00","name":"tf-srv-hardcore-shamir","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_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":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1857" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 13:31: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: - - c93bf054-b945-4e32-8a10-ab338fd42c9d - status: 200 OK - code: 200 - duration: 155.867523ms - - 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/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1741 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:31:12.991425+00:00","name":"tf-srv-hardcore-shamir","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1741" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 13:31: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: - - 49ccb019-6238-4c69-bb8d-8bec8bd54acc - status: 200 OK - code: 200 - duration: 140.046271ms - - 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/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1741 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-S","creation_date":"2025-10-15T13:30:10.008136+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-shamir","id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:03:37.920310+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"90e47fab-efa3-46d8-9607-f327a0ea65bb","modification_date":"2025-09-12T09:03:37.920310+00:00","name":"Ubuntu 24.04 Noble Numbat","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a7614e65-45a6-4223-80fe-15ef119f5311","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b0:31","maintenances":[],"modification_date":"2025-10-15T13:31:12.991425+00:00","name":"tf-srv-hardcore-shamir","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1746ecca-a961-498d-9fea-dff3fae23b24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1741" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 13:31: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: - - 061d82da-7899-485f-8ac6-214af9678d83 - status: 200 OK - code: 200 - duration: 162.428047ms - - 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/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 - 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 13:31: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: - - 129f9f52-4651-402c-bfe6-6652a40db8e9 - status: 204 No Content - code: 204 - duration: 249.364621ms - - 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/a9e2f923-5823-4d5a-86cd-044c95eaf4c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 method: GET response: proto: HTTP/2.0 @@ -2117,30 +1426,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a9e2f923-5823-4d5a-86cd-044c95eaf4c1","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:31:18 GMT + - Wed, 29 Oct 2025 22:55:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 81f771f6-f7c8-4dc2-ad0f-8536b7557cb6 + - fc851852-c904-488e-a0f0-026dec500ef6 status: 404 Not Found code: 404 - duration: 45.543249ms - - id: 43 + duration: 53.689381ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2156,7 +1457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1746ecca-a961-498d-9fea-dff3fae23b24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a method: GET response: proto: HTTP/2.0 @@ -2166,30 +1467,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1746ecca-a961-498d-9fea-dff3fae23b24","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "01528513-1a22-4afc-90e0-d2fbfaced70a"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:31:18 GMT + - Wed, 29 Oct 2025 22:55:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 58016b30-391a-49d5-9e36-b2bf080f716e + - 75fa7650-1fa8-4219-aee6-b180b89282ee status: 404 Not Found code: 404 - duration: 25.179397ms - - id: 44 + duration: 34.6252ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2205,7 +1498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1746ecca-a961-498d-9fea-dff3fae23b24 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a method: GET response: proto: HTTP/2.0 @@ -2215,30 +1508,22 @@ interactions: trailer: {} content_length: 495 uncompressed: false - body: '{"created_at":"2025-10-15T13:30:10.180418Z","id":"1746ecca-a961-498d-9fea-dff3fae23b24","last_detached_at":"2025-10-15T13:31:18.494459Z","name":"Ubuntu 24.04 Noble Numbat_sbs_volume_0","parent_snapshot_id":"a7614e65-45a6-4223-80fe-15ef119f5311","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-15T13:31:18.494459Z","zone":"fr-par-1"}' + body: '{"id":"01528513-1a22-4afc-90e0-d2fbfaced70a", "name":"Ubuntu 24.04 Noble Numbat_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:37.823602Z", "updated_at":"2025-10-29T22:55:10.205995Z", "references":[], "parent_snapshot_id":"a7614e65-45a6-4223-80fe-15ef119f5311", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:10.205995Z", "zone":"fr-par-1"}' headers: Content-Length: - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:31:18 GMT + - Wed, 29 Oct 2025 22:55:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f31f30ae-912a-4dc4-adf3-db85b80b6483 + - 4b0f103f-aade-4612-a597-97e1ec888e33 status: 200 OK code: 200 - duration: 88.895678ms - - id: 45 + duration: 82.519113ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2254,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/block/v1alpha1/zones/fr-par-1/volumes/1746ecca-a961-498d-9fea-dff3fae23b24 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a method: DELETE response: proto: HTTP/2.0 @@ -2266,26 +1551,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:31:18 GMT + - Wed, 29 Oct 2025 22:55:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4ed77a1-e3b0-4de3-81a5-f217a1fd5ad8 + - 209bc70e-ab86-414f-99d3-1bcd2d3aacf5 status: 204 No Content code: 204 - duration: 149.453089ms - - id: 46 + duration: 179.66522ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2301,7 +1578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 method: DELETE response: proto: HTTP/2.0 @@ -2313,26 +1590,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:31:19 GMT + - Wed, 29 Oct 2025 22:55:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 95f025fb-392c-4cc9-ba00-9c48e8a7ee72 + - 71f9dfee-0573-408b-94f3-9f3833ebc892 status: 204 No Content code: 204 - duration: 446.348365ms - - id: 47 + duration: 337.138309ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2348,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/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 method: GET response: proto: HTTP/2.0 @@ -2358,26 +1627,18 @@ interactions: trailer: {} content_length: 139 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"88201074-761e-4ed1-83b4-f7fc97b5599f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_ip", "resource_id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154"}' headers: Content-Length: - "139" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 13:31:19 GMT + - Wed, 29 Oct 2025 22:55:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 63ab9473-ae90-4055-ad3e-bc6b7d3fde42 + - b602f945-7399-4790-b488-2cbd5162b728 status: 404 Not Found code: 404 - duration: 56.611972ms + duration: 49.95661ms diff --git a/internal/services/instance/testdata/ip-routed-ipv6.cassette.yaml b/internal/services/instance/testdata/ip-routed-ipv6.cassette.yaml index 13c716326..a3b41b3e1 100644 --- a/internal/services/instance/testdata/ip-routed-ipv6.cassette.yaml +++ b/internal/services/instance/testdata/ip-routed-ipv6.cassette.yaml @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 374 uncompressed: false - 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"}}' + body: '{"ip": {"id": "6e0fde74-7588-46f5-9ca0-c0791b471188", "address": null, "prefix": "2001:bc8:710:404b::/64", "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv6", "state": "detached", "tags": [], "ipam_id": "40b52619-5794-4a71-84cc-6db0d763704f"}}' headers: Content-Length: - "374" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:54:48 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 21cb6f92-93f0-44fc-aef8-57a6d7fa6e93 + - c36bb486-db4f-472f-ab11-e544c4edc148 status: 201 Created code: 201 - duration: 397.184395ms + duration: 386.473831ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 method: GET response: proto: HTTP/2.0 @@ -80,29 +72,21 @@ interactions: trailer: {} content_length: 374 uncompressed: false - 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"}}' + body: '{"ip": {"id": "6e0fde74-7588-46f5-9ca0-c0791b471188", "address": null, "prefix": "2001:bc8:710:404b::/64", "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv6", "state": "detached", "tags": [], "ipam_id": "40b52619-5794-4a71-84cc-6db0d763704f"}}' headers: Content-Length: - "374" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:53 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4dbcdde8-2242-4c9b-9cac-204e0c0c6a44 + - 2c60e00a-0b73-4f07-af7f-0d6aee6166b6 status: 200 OK code: 200 - duration: 119.589427ms + duration: 109.603064ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 method: GET response: proto: HTTP/2.0 @@ -129,29 +113,21 @@ interactions: trailer: {} content_length: 374 uncompressed: false - 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"}}' + body: '{"ip": {"id": "6e0fde74-7588-46f5-9ca0-c0791b471188", "address": null, "prefix": "2001:bc8:710:404b::/64", "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv6", "state": "detached", "tags": [], "ipam_id": "40b52619-5794-4a71-84cc-6db0d763704f"}}' headers: Content-Length: - "374" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:53 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 59211579-de6a-4024-b826-90e24017542a + - 9d92f3f7-8440-459a-9083-844d3a8e15cf status: 200 OK code: 200 - duration: 136.532946ms + duration: 126.243751ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 method: GET response: proto: HTTP/2.0 @@ -178,29 +154,21 @@ interactions: trailer: {} content_length: 374 uncompressed: false - 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"}}' + body: '{"ip": {"id": "6e0fde74-7588-46f5-9ca0-c0791b471188", "address": null, "prefix": "2001:bc8:710:404b::/64", "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv6", "state": "detached", "tags": [], "ipam_id": "40b52619-5794-4a71-84cc-6db0d763704f"}}' headers: Content-Length: - "374" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:53 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1cd53a3c-7be5-4bde-8d7b-d65d97262fee + - 28b4ab15-ec59-47c5-8646-92d857065d2f status: 200 OK code: 200 - duration: 119.656333ms + duration: 112.252248ms - id: 4 request: proto: HTTP/1.1 @@ -217,7 +185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 method: DELETE response: proto: HTTP/2.0 @@ -229,25 +197,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 26bd4e95-4555-4a45-845c-e8000f2a283b + - 4d02aa08-77a5-494d-b37c-3fe5d2bd1e54 status: 204 No Content code: 204 - duration: 396.835556ms + duration: 314.093344ms - id: 5 request: proto: HTTP/1.1 @@ -264,7 +224,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 method: GET response: proto: HTTP/2.0 @@ -274,26 +234,18 @@ interactions: trailer: {} content_length: 139 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"88201074-761e-4ed1-83b4-f7fc97b5599f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_ip", "resource_id": "6e0fde74-7588-46f5-9ca0-c0791b471188"}' headers: Content-Length: - "139" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0d68ff1c-cf33-4d64-8a1e-5c98b24b73b9 + - 4761fd66-ef46-4d73-aa0a-3ab85539c882 status: 404 Not Found code: 404 - duration: 39.761589ms + duration: 50.554636ms diff --git a/internal/services/instance/testdata/ip-tags.cassette.yaml b/internal/services/instance/testdata/ip-tags.cassette.yaml index 472bcbcf3..460d1191c 100644 --- a/internal/services/instance/testdata/ip-tags.cassette.yaml +++ b/internal/services/instance/testdata/ip-tags.cassette.yaml @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "ff178611-98f9-4c6b-900b-e613b726eb13"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:18 GMT + - Wed, 29 Oct 2025 22:53:39 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/8f457b60-852b-44a2-9bba-c98d7f41b8c3 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 793cd24e-301e-4246-a3b4-23a305e6a964 + - 98491379-2dcf-4ebe-abfe-1c64e5b0831a status: 201 Created code: 201 - duration: 342.324802ms + duration: 1.51095805s - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -80,29 +72,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "ff178611-98f9-4c6b-900b-e613b726eb13"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:18 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 224d3be5-27fb-449c-b887-69709039c418 + - 2f7f5251-4c41-4772-bca2-60c7e4ec40d1 status: 200 OK code: 200 - duration: 105.568183ms + duration: 479.020235ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -129,29 +113,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "ff178611-98f9-4c6b-900b-e613b726eb13"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ac908699-0817-4291-a7b9-1d3fbab4d5bc + - 628e2327-3361-482c-a92b-7e205859881b status: 200 OK code: 200 - duration: 118.015941ms + duration: 169.531544ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -178,29 +154,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "ff178611-98f9-4c6b-900b-e613b726eb13"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f750a17-b5bd-49f7-963a-f36bdd98e9c7 + - 33b7d369-a3e4-4c96-a621-ea8ea2af44ca status: 200 OK code: 200 - duration: 100.706653ms + duration: 113.811662ms - id: 4 request: proto: HTTP/1.1 @@ -217,7 +185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -227,29 +195,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "ff178611-98f9-4c6b-900b-e613b726eb13"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1ce26b19-9493-41cf-ab2f-a2c6a07c8c63 + - 312dcc00-a6c7-420e-9ec8-8878df777e9b status: 200 OK code: 200 - duration: 104.726386ms + duration: 118.914272ms - id: 5 request: proto: HTTP/1.1 @@ -268,7 +228,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/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: PATCH response: proto: HTTP/2.0 @@ -278,29 +238,21 @@ interactions: trailer: {} content_length: 377 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": ["foo", "bar"], "ipam_id": "ff178611-98f9-4c6b-900b-e613b726eb13"}}' headers: Content-Length: - "377" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a67c6e7f-8dbd-46b7-ac57-ea6a4663db34 + - cefe1879-1a18-4ab5-9b86-754a50c76c5d status: 200 OK code: 200 - duration: 182.600909ms + duration: 183.223566ms - id: 6 request: proto: HTTP/1.1 @@ -317,7 +269,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -327,29 +279,21 @@ interactions: trailer: {} content_length: 377 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": ["foo", "bar"], "ipam_id": "ff178611-98f9-4c6b-900b-e613b726eb13"}}' headers: Content-Length: - "377" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6bea8386-43f2-4b05-95fa-0e0bbfb94878 + - aa6626ea-ceae-4566-bc52-6a8b96251d23 status: 200 OK code: 200 - duration: 109.776661ms + duration: 115.312227ms - id: 7 request: proto: HTTP/1.1 @@ -366,7 +310,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -376,29 +320,21 @@ interactions: trailer: {} content_length: 377 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": ["foo", "bar"], "ipam_id": "ff178611-98f9-4c6b-900b-e613b726eb13"}}' headers: Content-Length: - "377" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7594e854-8695-498a-a3ab-34cc5d41df9f + - 00ec1416-8e19-4654-936e-5bf6bbab3d0e status: 200 OK code: 200 - duration: 105.503574ms + duration: 105.348196ms - id: 8 request: proto: HTTP/1.1 @@ -415,7 +351,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -425,29 +361,21 @@ interactions: trailer: {} content_length: 377 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": ["foo", "bar"], "ipam_id": "ff178611-98f9-4c6b-900b-e613b726eb13"}}' headers: Content-Length: - "377" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bcb5ca0e-f0c2-4762-9749-7853badc5fd0 + - d5482740-5bed-4406-8eeb-b02c1429399f status: 200 OK code: 200 - duration: 124.450532ms + duration: 126.775641ms - id: 9 request: proto: HTTP/1.1 @@ -464,7 +392,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: DELETE response: proto: HTTP/2.0 @@ -476,25 +404,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dca9771d-11a2-42fe-98b8-11131277ced8 + - 8c1452e0-1c40-4d5c-a2c3-38b7480e6a14 status: 204 No Content code: 204 - duration: 345.373762ms + duration: 343.848056ms - id: 10 request: proto: HTTP/1.1 @@ -511,7 +431,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -521,26 +441,18 @@ interactions: trailer: {} content_length: 139 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_ip", "resource_id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3"}' headers: Content-Length: - "139" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8f59899d-8b5d-4fa8-86f7-95fb20214d15 + - 3ca7abe9-350c-4f9f-bcea-3dc3fe03db6d status: 404 Not Found code: 404 - duration: 53.747468ms + duration: 52.64831ms diff --git a/internal/services/instance/testdata/ip-with-zone.cassette.yaml b/internal/services/instance/testdata/ip-with-zone.cassette.yaml index 7cae2e7d9..dbcec86f6 100644 --- a/internal/services/instance/testdata/ip-with-zone.cassette.yaml +++ b/internal/services/instance/testdata/ip-with-zone.cassette.yaml @@ -27,33 +27,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - 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"}}' + body: '{"ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "5f252f01-c0af-493d-b723-0258438f33b2"}}' headers: Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "367" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53:43 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/5e1fe2cf-537e-4763-9643-89980a20a0b0 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d1fc72ed-f03b-4994-ab3f-d4d122cf82f0 + - 4a55cb6b-3d70-4861-89ed-d8bd67e78945 status: 201 Created code: 201 - duration: 421.233885ms + duration: 1.665939582s - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -78,31 +70,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - 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"}}' + body: '{"ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "5f252f01-c0af-493d-b723-0258438f33b2"}}' headers: Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "367" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 082aeadf-4112-46ea-8404-472d13f9abb8 + - 0b21f911-ce9b-4b83-8abc-f9bb05ac24e2 status: 200 OK code: 200 - duration: 132.255165ms + duration: 114.337836ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -127,31 +111,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - 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"}}' + body: '{"ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "5f252f01-c0af-493d-b723-0258438f33b2"}}' headers: Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "367" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5ff08295-5973-445b-913d-c2d07e66cc3d + - a7f5bab0-d481-4a20-98b3-04901f6dc41c status: 200 OK code: 200 - duration: 103.463012ms + duration: 111.297532ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -176,31 +152,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - 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"}}' + body: '{"ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "5f252f01-c0af-493d-b723-0258438f33b2"}}' headers: Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "367" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0b29f88e-9e97-4a08-baab-3b15403e4337 + - 5f919dbe-fc52-4923-a992-02965f0a423f status: 200 OK code: 200 - duration: 120.990306ms + duration: 126.413255ms - id: 4 request: proto: HTTP/1.1 @@ -217,7 +185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -225,31 +193,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - 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"}}' + body: '{"ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "5f252f01-c0af-493d-b723-0258438f33b2"}}' headers: Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "367" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 87cb2de2-9297-47ad-8f3a-0edf0f7a6654 + - 43b2a197-55aa-4379-9b44-c49228e9eeb5 status: 200 OK code: 200 - duration: 106.155608ms + duration: 98.763226ms - id: 5 request: proto: HTTP/1.1 @@ -266,7 +226,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: DELETE response: proto: HTTP/2.0 @@ -278,25 +238,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 51e724f4-6eb6-4cd9-9349-83931eab5160 + - 2cd85fcb-8987-408b-befb-059abb58170e status: 204 No Content code: 204 - duration: 407.192619ms + duration: 375.289189ms - id: 6 request: proto: HTTP/1.1 @@ -325,31 +277,23 @@ interactions: trailer: {} content_length: 366 uncompressed: false - 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"}}' + body: '{"ip": {"id": "568e7532-0df9-41a9-987e-26c056725953", "address": "51.158.170.116", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "nl-ams-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1050ce6d-75ac-4654-8a72-973f8f1392ac"}}' headers: Content-Length: - "366" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53:45 GMT Location: - https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 27e75c1e-44dd-475c-9122-be5ef483cae4 + - 79160b2e-f7f1-4b3f-ac38-fef86c9f3bfd status: 201 Created code: 201 - duration: 679.412983ms + duration: 618.61209ms - id: 7 request: proto: HTTP/1.1 @@ -376,29 +320,21 @@ interactions: trailer: {} content_length: 366 uncompressed: false - 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"}}' + body: '{"ip": {"id": "568e7532-0df9-41a9-987e-26c056725953", "address": "51.158.170.116", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "nl-ams-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1050ce6d-75ac-4654-8a72-973f8f1392ac"}}' headers: Content-Length: - "366" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 278fad44-1b93-4920-93af-bdbdd132676d + - 57619191-dfad-4005-acda-c40a9a6d36f1 status: 200 OK code: 200 - duration: 175.990514ms + duration: 189.781911ms - id: 8 request: proto: HTTP/1.1 @@ -425,29 +361,21 @@ interactions: trailer: {} content_length: 366 uncompressed: false - 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"}}' + body: '{"ip": {"id": "568e7532-0df9-41a9-987e-26c056725953", "address": "51.158.170.116", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "nl-ams-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1050ce6d-75ac-4654-8a72-973f8f1392ac"}}' headers: Content-Length: - "366" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6d24df60-cec1-405c-9643-d304b4838c02 + - 22397cee-e55e-4be3-b935-b54f9914829a status: 200 OK code: 200 - duration: 145.870122ms + duration: 169.57597ms - id: 9 request: proto: HTTP/1.1 @@ -474,29 +402,21 @@ interactions: trailer: {} content_length: 366 uncompressed: false - 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"}}' + body: '{"ip": {"id": "568e7532-0df9-41a9-987e-26c056725953", "address": "51.158.170.116", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "nl-ams-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "1050ce6d-75ac-4654-8a72-973f8f1392ac"}}' headers: Content-Length: - "366" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 19f595d1-40c3-4bc9-83ce-e619e0ce61c0 + - fd73eaad-0fcf-4ae1-aa7e-35bbadf4dcca status: 200 OK code: 200 - duration: 152.803955ms + duration: 158.640954ms - id: 10 request: proto: HTTP/1.1 @@ -525,25 +445,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6a8749c2-c4aa-4b17-b9b0-d86a7807074f + - 2fef1370-d0bb-48d4-aad4-32104886b6fe status: 204 No Content code: 204 - duration: 463.694788ms + duration: 479.172782ms - id: 11 request: proto: HTTP/1.1 @@ -570,26 +482,18 @@ interactions: trailer: {} content_length: 139 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"568e7532-0df9-41a9-987e-26c056725953","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_ip", "resource_id": "568e7532-0df9-41a9-987e-26c056725953"}' headers: Content-Length: - "139" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c38c8e57-15eb-436b-922d-da088e27a857 + - 3b320a24-e3f2-41c7-bca5-8d102512dc43 status: 404 Not Found code: 404 - duration: 83.077353ms + duration: 96.649254ms diff --git a/internal/services/instance/testdata/placement-group-basic.cassette.yaml b/internal/services/instance/testdata/placement-group-basic.cassette.yaml index beac030dd..9092572c4 100644 --- a/internal/services/instance/testdata/placement-group-basic.cassette.yaml +++ b/internal/services/instance/testdata/placement-group-basic.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 140 + content_length: 139 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pg-peaceful-greider","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_type":"max_availability"}' + body: '{"name":"tf-pg-lucid-blackwell","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_type":"max_availability"}' form: {} headers: Content-Type: @@ -27,33 +27,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 328 + content_length: 327 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fe18f7a1-278d-4765-af09-a728064e8b62", "name": "tf-pg-lucid-blackwell", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "328" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "327" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:46 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5e667c41-9bd6-4ee3-9e60-6b6c280b38e1 + - a9b022c7-1e5c-4c59-9986-6ae54cb65008 status: 201 Created code: 201 - duration: 167.410643ms + duration: 213.416595ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 method: GET response: proto: HTTP/2.0 @@ -78,31 +70,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 328 + content_length: 327 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fe18f7a1-278d-4765-af09-a728064e8b62", "name": "tf-pg-lucid-blackwell", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "328" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "327" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:46 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7d6a76ad-b4ca-43fd-b9bc-8b9c60805172 + - 2d90bb02-4c47-49a1-8631-7a4b7c7dac75 status: 200 OK code: 200 - duration: 97.951934ms + duration: 86.833888ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 method: GET response: proto: HTTP/2.0 @@ -127,31 +111,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 328 + content_length: 327 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fe18f7a1-278d-4765-af09-a728064e8b62", "name": "tf-pg-lucid-blackwell", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "328" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "327" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:46 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f642e8af-eb09-492d-b7cd-0352d4e94c3c + - 5e0d90e7-9418-4244-a94c-25ce3fd09395 status: 200 OK code: 200 - duration: 100.53161ms + duration: 130.528597ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 method: GET response: proto: HTTP/2.0 @@ -176,31 +152,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 328 + content_length: 327 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fe18f7a1-278d-4765-af09-a728064e8b62", "name": "tf-pg-lucid-blackwell", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "328" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "327" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:46 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d0a9f85f-34cd-4f4f-bf7f-4047443f2108 + - ab094cf0-f899-4b03-83bf-ccfe9a6b098f status: 200 OK code: 200 - duration: 100.544594ms + duration: 94.36406ms - id: 4 request: proto: HTTP/1.1 @@ -217,7 +185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 method: GET response: proto: HTTP/2.0 @@ -225,31 +193,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 328 + content_length: 327 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fe18f7a1-278d-4765-af09-a728064e8b62", "name": "tf-pg-lucid-blackwell", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "328" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "327" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fabafa11-ede5-4c5d-b09f-9751b4e960ab + - 7389c4f2-e8d4-4b6e-8995-9707f9c6d42a status: 200 OK code: 200 - duration: 101.754402ms + duration: 108.719374ms - id: 5 request: proto: HTTP/1.1 @@ -268,7 +228,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/4840ff42-8220-4925-a97b-628c1fb3efd8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 method: PATCH response: proto: HTTP/2.0 @@ -276,31 +236,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 323 + content_length: 322 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fe18f7a1-278d-4765-af09-a728064e8b62", "name": "tf-pg-lucid-blackwell", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "322" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8794e0ed-5158-43af-a3dc-d50daf9625ec + - a51122dd-d952-413e-b24e-bcff64bea917 status: 200 OK code: 200 - duration: 141.220335ms + duration: 136.04386ms - id: 6 request: proto: HTTP/1.1 @@ -317,7 +269,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 method: GET response: proto: HTTP/2.0 @@ -325,31 +277,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 323 + content_length: 322 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fe18f7a1-278d-4765-af09-a728064e8b62", "name": "tf-pg-lucid-blackwell", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "322" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - da8d8962-c0fb-46be-8ff5-5626058069bc + - 362277fa-5052-4439-9ac6-503ba0a0aacf status: 200 OK code: 200 - duration: 112.8826ms + duration: 103.542283ms - id: 7 request: proto: HTTP/1.1 @@ -366,7 +310,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 method: GET response: proto: HTTP/2.0 @@ -374,31 +318,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 323 + content_length: 322 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fe18f7a1-278d-4765-af09-a728064e8b62", "name": "tf-pg-lucid-blackwell", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "322" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa46e47e-69b1-4145-9b87-5202445e7414 + - e331f0e6-4cfd-4d0c-8e8f-de4408c727d1 status: 200 OK code: 200 - duration: 115.433562ms + duration: 88.879543ms - id: 8 request: proto: HTTP/1.1 @@ -415,7 +351,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 method: GET response: proto: HTTP/2.0 @@ -423,31 +359,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 323 + content_length: 322 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fe18f7a1-278d-4765-af09-a728064e8b62", "name": "tf-pg-lucid-blackwell", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "322" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8c74e735-c4fa-455b-bd11-1a6293b53b6d + - 15d46ddc-7ff5-41d5-a54d-7fc0e69f0e03 status: 200 OK code: 200 - duration: 93.918636ms + duration: 107.053579ms - id: 9 request: proto: HTTP/1.1 @@ -464,7 +392,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 method: GET response: proto: HTTP/2.0 @@ -472,31 +400,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 323 + content_length: 322 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fe18f7a1-278d-4765-af09-a728064e8b62", "name": "tf-pg-lucid-blackwell", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "322" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:48 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 979db0fc-14b9-4d9d-85ae-4d9f7c346474 + - b3a6615a-6b90-43e4-92d5-816d59d5c542 status: 200 OK code: 200 - duration: 95.059775ms + duration: 91.235921ms - id: 10 request: proto: HTTP/1.1 @@ -515,7 +435,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/4840ff42-8220-4925-a97b-628c1fb3efd8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 method: PATCH response: proto: HTTP/2.0 @@ -523,31 +443,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 328 + content_length: 327 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fe18f7a1-278d-4765-af09-a728064e8b62", "name": "tf-pg-lucid-blackwell", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "328" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "327" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:48 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6423c5f1-b8bf-43ad-ba0e-ab1cf61fb22b + - e3604cf3-c91b-4548-9577-80b1a41804bc status: 200 OK code: 200 - duration: 160.425313ms + duration: 161.923675ms - id: 11 request: proto: HTTP/1.1 @@ -564,7 +476,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 method: GET response: proto: HTTP/2.0 @@ -572,31 +484,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 328 + content_length: 327 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fe18f7a1-278d-4765-af09-a728064e8b62", "name": "tf-pg-lucid-blackwell", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "328" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "327" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:48 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 84a13b58-6183-4219-acde-7b7aee388df7 + - e4fe3c0e-fcbb-41b6-baaf-295dafa75d2b status: 200 OK code: 200 - duration: 125.703893ms + duration: 102.031899ms - id: 12 request: proto: HTTP/1.1 @@ -613,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/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 method: GET response: proto: HTTP/2.0 @@ -621,31 +525,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 328 + content_length: 327 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fe18f7a1-278d-4765-af09-a728064e8b62", "name": "tf-pg-lucid-blackwell", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "328" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "327" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:48 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c277d398-5a21-49d2-aab1-74d6f69c659b + - 8cc36239-0f80-42d5-83c1-a7114ab02839 status: 200 OK code: 200 - duration: 103.75356ms + duration: 93.833368ms - id: 13 request: proto: HTTP/1.1 @@ -662,7 +558,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 method: GET response: proto: HTTP/2.0 @@ -670,31 +566,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 328 + content_length: 327 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fe18f7a1-278d-4765-af09-a728064e8b62", "name": "tf-pg-lucid-blackwell", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "328" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "327" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:48 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 893ba025-986d-443d-9b00-443e4ffe3038 + - cebcba3d-df94-4f37-b300-d064d825b6bd status: 200 OK code: 200 - duration: 108.664966ms + duration: 113.654042ms - id: 14 request: proto: HTTP/1.1 @@ -711,7 +599,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 method: DELETE response: proto: HTTP/2.0 @@ -723,25 +611,17 @@ interactions: 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 869e49ec-5232-409f-b4cf-b7f8ac227090 + - d2128d9c-d8cb-4463-a525-94e496f1d8ef status: 204 No Content code: 204 - duration: 156.412213ms + duration: 162.045083ms - id: 15 request: proto: HTTP/1.1 @@ -758,7 +638,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 method: GET response: proto: HTTP/2.0 @@ -768,26 +648,18 @@ interactions: trailer: {} content_length: 152 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"4840ff42-8220-4925-a97b-628c1fb3efd8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_placement_group", "resource_id": "fe18f7a1-278d-4765-af09-a728064e8b62"}' headers: Content-Length: - "152" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:49 GMT + - Wed, 29 Oct 2025 22:55:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 21a705a6-451d-4ebf-9f9b-acd3268f65cf + - 87c41fdc-2369-411c-a290-a10e5d079ef1 status: 404 Not Found code: 404 - duration: 31.261546ms + duration: 40.531283ms diff --git a/internal/services/instance/testdata/placement-group-rename.cassette.yaml b/internal/services/instance/testdata/placement-group-rename.cassette.yaml index 5c878a2ee..9331b1237 100644 --- a/internal/services/instance/testdata/placement-group-rename.cassette.yaml +++ b/internal/services/instance/testdata/placement-group-rename.cassette.yaml @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 304 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "foo", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54:12 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/21ee6fd0-a17b-4c15-bf99-a0283e87333d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b63b9f55-5d25-4f09-a8cb-640478c81af6 + - 610a7d83-5853-4b65-97ad-05a445b3cf6d status: 201 Created code: 201 - duration: 228.831792ms + duration: 200.784219ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/21ee6fd0-a17b-4c15-bf99-a0283e87333d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 method: GET response: proto: HTTP/2.0 @@ -80,29 +72,21 @@ interactions: trailer: {} content_length: 304 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "foo", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 888f24d8-a640-4a2a-be50-52132474e249 + - 964840ae-875b-4e04-add0-d7a87591612a status: 200 OK code: 200 - duration: 95.522629ms + duration: 108.876114ms - id: 2 request: proto: HTTP/1.1 @@ -115,7 +99,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -127,35 +113,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54:12 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2200f5a0-9244-4bee-92e3-ec438266c524 + - 3bdedfda-1b59-42f0-be85-98520878d0c7 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 50.280351ms + duration: 43.244361ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +146,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -182,33 +162,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54:12 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4a54ad8-2839-4b34-951e-98bb5e7f7c78 + - 46d7094f-bd9c-40cf-b1ee-58440912f8cf X-Total-Count: - "68" status: 200 OK code: 200 - duration: 36.085465ms + duration: 48.004962ms - id: 4 request: proto: HTTP/1.1 @@ -221,7 +193,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -233,43 +213,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 05b20c1d-5441-4db7-8c73-37206c85efd8 + - 201c2ba2-2de1-42c5-b6ea-6d8d8ca6eb70 status: 200 OK code: 200 - duration: 44.888695ms + duration: 112.599175ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 295 + content_length: 294 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-inspiring-hawking","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":"7257c159-3329-489b-8a0f-ead74fd8fb89"}' form: {} headers: Content-Type: @@ -284,33 +256,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2026 + content_length: 2024 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: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"}}' + body: '{"server": {"id": "ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "name": "tf-srv-inspiring-hawking", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-inspiring-hawking", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:81", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:13.144628+00:00", "modification_date": "2025-10-29T22:54:13.144628+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "foo", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2026" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2024" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54:13 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 28881ac4-b929-4177-951b-249e39555241 + - bbb50db2-9f98-45b8-b9f8-3bce58ba225d status: 201 Created code: 201 - duration: 2.43657347s + duration: 1.215572535s - id: 6 request: proto: HTTP/1.1 @@ -327,7 +291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b method: GET response: proto: HTTP/2.0 @@ -335,31 +299,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2026 + content_length: 2070 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: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"}}' + body: '{"server": {"id": "ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "name": "tf-srv-inspiring-hawking", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-inspiring-hawking", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:81", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:13.144628+00:00", "modification_date": "2025-10-29T22:54:13.144628+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "foo", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2026" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2070" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a2259d6c-7297-441f-9879-d4e20f25996f + - 2a6fa3e6-4866-4e90-9653-d0f7e02f0850 status: 200 OK code: 200 - duration: 135.249143ms + duration: 135.732492ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b method: GET response: proto: HTTP/2.0 @@ -384,31 +340,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2026 + content_length: 2024 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: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"}}' + body: '{"server": {"id": "ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "name": "tf-srv-inspiring-hawking", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-inspiring-hawking", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:81", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:13.144628+00:00", "modification_date": "2025-10-29T22:54:13.144628+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "foo", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2026" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2024" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3081d7fa-c854-4885-a52b-f5cc6755cc9e + - ce8e660d-afdc-4f24-a557-2e58a049c541 status: 200 OK code: 200 - duration: 138.350485ms + duration: 151.75964ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 method: GET response: proto: HTTP/2.0 @@ -435,29 +383,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:13.269743Z", "updated_at":"2025-10-29T22:54:13.269743Z", "references":[{"id":"4e501af3-35aa-4d2e-afd8-859b0bcfbb37", "product_resource_type":"instance_server", "product_resource_id":"ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "created_at":"2025-10-29T22:54:13.269743Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b5923b6d-c0b6-4668-90d6-518a247c7191 + - cc9edf5f-1d85-4fd6-bbce-0df94e8ed2aa status: 200 OK code: 200 - duration: 85.841536ms + duration: 88.299017ms - id: 9 request: proto: HTTP/1.1 @@ -476,7 +416,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/ae493a7a-4b7f-421c-854d-6adc7771633f/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/action method: POST response: proto: HTTP/2.0 @@ -486,31 +426,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "1348b148-fc2e-487b-8c42-fb8e00d94346", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/action", "href_result": "/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "started_at": "2025-10-29T22:54:14.282193+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54:14 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/21ec3051-b649-4bf9-aa95-7f4b7f87276e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1348b148-fc2e-487b-8c42-fb8e00d94346 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5b44cfbb-6987-466e-937e-7fcb0f17ddae + - 3f81d3ae-c89e-43a8-9786-252d0237ba71 status: 202 Accepted code: 202 - duration: 235.268312ms + duration: 231.102822ms - id: 10 request: proto: HTTP/1.1 @@ -527,7 +459,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b method: GET response: proto: HTTP/2.0 @@ -535,31 +467,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2048 + content_length: 2092 uncompressed: 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: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"}}' + body: '{"server": {"id": "ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "name": "tf-srv-inspiring-hawking", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-inspiring-hawking", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:81", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:13.144628+00:00", "modification_date": "2025-10-29T22:54:14.105619+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "foo", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2048" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2092" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 82e35aae-72ae-4a7f-92cd-b74b24b56674 + - a29f0f6b-bd31-418d-ac9c-629bdc748eed status: 200 OK code: 200 - duration: 130.07271ms + duration: 157.83492ms - id: 11 request: proto: HTTP/1.1 @@ -576,7 +500,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b method: GET response: proto: HTTP/2.0 @@ -584,31 +508,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2181 + content_length: 2227 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "name": "tf-srv-inspiring-hawking", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-inspiring-hawking", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:81", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:13.144628+00:00", "modification_date": "2025-10-29T22:54:16.652962+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "1902", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "foo", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2181" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2227" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:53 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 874d5829-32ee-4964-94ab-c5e03f91127d + - 1b7d16a1-7e23-4cbd-a951-9083cd2c857b status: 200 OK code: 200 - duration: 150.281066ms + duration: 149.728926ms - id: 12 request: proto: HTTP/1.1 @@ -625,7 +541,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b method: GET response: proto: HTTP/2.0 @@ -635,29 +551,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "name": "tf-srv-inspiring-hawking", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-inspiring-hawking", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:81", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:13.144628+00:00", "modification_date": "2025-10-29T22:54:16.652962+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "1902", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "foo", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2181" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:53 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fab53447-9a17-4d22-b1e3-ea3666da7b43 + - 20ed384f-499d-4097-a574-dee3f67bd7b4 status: 200 OK code: 200 - duration: 162.769053ms + duration: 152.877183ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 method: GET response: proto: HTTP/2.0 @@ -684,29 +592,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"57924322-6f78-496a-adc4-f2920dfb99c2","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:53 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0d83eb3a-6ca4-45a3-98ba-ba57147b3f39 + - 3b860b03-0884-444d-a996-1b48db74eb77 status: 404 Not Found code: 404 - duration: 50.925484ms + duration: 30.786457ms - id: 14 request: proto: HTTP/1.1 @@ -723,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/57924322-6f78-496a-adc4-f2920dfb99c2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 method: GET response: proto: HTTP/2.0 @@ -733,29 +633,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:13.269743Z", "updated_at":"2025-10-29T22:54:13.269743Z", "references":[{"id":"4e501af3-35aa-4d2e-afd8-859b0bcfbb37", "product_resource_type":"instance_server", "product_resource_id":"ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "created_at":"2025-10-29T22:54:13.269743Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:53 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 642958ab-9c55-48f4-9f4e-38bc3c9fc288 + - 3e2e61d5-77e5-45a8-840a-93d061108791 status: 200 OK code: 200 - duration: 98.472916ms + duration: 96.52478ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/user_data method: GET response: proto: HTTP/2.0 @@ -782,29 +674,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:53 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9f0b67aa-e611-44bf-b7eb-7213ffc5ae55 + - 983fe91c-92e9-46b2-b825-2db8032f3ae5 status: 200 OK code: 200 - duration: 88.821586ms + duration: 115.485995ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/private_nics method: GET response: proto: HTTP/2.0 @@ -831,33 +715,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:53 GMT + - Wed, 29 Oct 2025 22:54:20 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9e3e033c-c97f-4ca1-8bb2-965bf2e44342 + - 54706d1c-8ddf-409b-bf92-f7671023f1dd X-Total-Count: - "0" status: 200 OK code: 200 - duration: 93.910355ms + duration: 99.074789ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +750,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/21ee6fd0-a17b-4c15-bf99-a0283e87333d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 method: GET response: proto: HTTP/2.0 @@ -884,29 +760,21 @@ interactions: trailer: {} content_length: 304 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "foo", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:53 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1124ba0d-2c86-4760-a237-93496e14be33 + - af20bb04-9dc5-446c-9514-22119233b4b4 status: 200 OK code: 200 - duration: 88.941811ms + duration: 87.184705ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +791,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/21ee6fd0-a17b-4c15-bf99-a0283e87333d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 method: GET response: proto: HTTP/2.0 @@ -933,29 +801,21 @@ interactions: trailer: {} content_length: 304 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "foo", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 126d9d88-bac5-4716-a63a-0097542b1696 + - b9043948-c76e-4978-8deb-d01e041b6a16 status: 200 OK code: 200 - duration: 100.221976ms + duration: 112.92119ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b method: GET response: proto: HTTP/2.0 @@ -982,29 +842,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "name": "tf-srv-inspiring-hawking", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-inspiring-hawking", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:81", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:13.144628+00:00", "modification_date": "2025-10-29T22:54:16.652962+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "1902", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "foo", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2181" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0105d2f0-12b5-4e59-90e7-8bab11359a93 + - 4a227f83-dd1a-498a-a8ad-f41a390478f5 status: 200 OK code: 200 - duration: 136.352028ms + duration: 143.804588ms - id: 20 request: proto: HTTP/1.1 @@ -1021,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/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 method: GET response: proto: HTTP/2.0 @@ -1031,29 +883,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"57924322-6f78-496a-adc4-f2920dfb99c2","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e9c1841b-d547-4a86-bdcf-833429fffbf5 + - 3158a48c-827c-48fa-b617-2d82320631f4 status: 404 Not Found code: 404 - duration: 28.214395ms + duration: 35.112496ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 method: GET response: proto: HTTP/2.0 @@ -1080,29 +924,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:13.269743Z", "updated_at":"2025-10-29T22:54:13.269743Z", "references":[{"id":"4e501af3-35aa-4d2e-afd8-859b0bcfbb37", "product_resource_type":"instance_server", "product_resource_id":"ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "created_at":"2025-10-29T22:54:13.269743Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b2496ffb-3375-4787-8f55-9b0de23a5210 + - 1562f528-63e9-4c20-bd44-eff4c6cbdcfa status: 200 OK code: 200 - duration: 75.660838ms + duration: 84.974984ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/user_data method: GET response: proto: HTTP/2.0 @@ -1129,29 +965,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 29e523bd-b2de-481d-8aa7-1f548bf3d237 + - 61b4ab9e-ead2-430d-b047-30cd05e4546f status: 200 OK code: 200 - duration: 76.602814ms + duration: 98.42314ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +996,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/private_nics method: GET response: proto: HTTP/2.0 @@ -1178,33 +1006,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:54 GMT + - Wed, 29 Oct 2025 22:54:21 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 968c19bd-6ec7-4d8d-8e4a-a5430e8d00ed + - 138515e7-6d24-457a-ab0d-2c8ea4a76e61 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 85.693924ms + duration: 103.07584ms - id: 24 request: proto: HTTP/1.1 @@ -1221,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/placement_groups/21ee6fd0-a17b-4c15-bf99-a0283e87333d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 method: GET response: proto: HTTP/2.0 @@ -1231,29 +1051,21 @@ interactions: trailer: {} content_length: 304 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "foo", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f250c8c3-eb2e-4f69-9577-0de4488fdf43 + - ae75c941-7040-4d6f-ac55-707c3218055e status: 200 OK code: 200 - duration: 91.121789ms + duration: 136.074264ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1082,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b method: GET response: proto: HTTP/2.0 @@ -1278,31 +1090,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2181 + content_length: 2227 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "name": "tf-srv-inspiring-hawking", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-inspiring-hawking", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:81", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:13.144628+00:00", "modification_date": "2025-10-29T22:54:16.652962+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "1902", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "foo", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2181" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2227" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0eaa0a2b-8ebe-4b18-886a-cd22fb9a1187 + - 5c0c8ed1-4d92-48ab-8e39-009aa3066884 status: 200 OK code: 200 - duration: 158.469886ms + duration: 151.246484ms - id: 26 request: proto: HTTP/1.1 @@ -1319,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/57924322-6f78-496a-adc4-f2920dfb99c2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 method: GET response: proto: HTTP/2.0 @@ -1329,29 +1133,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"57924322-6f78-496a-adc4-f2920dfb99c2","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1d53ca48-4fcf-4ffd-a4e3-390fe055ec59 + - b63ba41a-7eba-44e6-a936-14d4b3784253 status: 404 Not Found code: 404 - duration: 28.470214ms + duration: 23.701539ms - id: 27 request: proto: HTTP/1.1 @@ -1368,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/block/v1alpha1/zones/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 method: GET response: proto: HTTP/2.0 @@ -1378,29 +1174,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:13.269743Z", "updated_at":"2025-10-29T22:54:13.269743Z", "references":[{"id":"4e501af3-35aa-4d2e-afd8-859b0bcfbb37", "product_resource_type":"instance_server", "product_resource_id":"ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "created_at":"2025-10-29T22:54:13.269743Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 80f96d34-c5ba-4c6d-8832-3e188492c956 + - c3972993-c934-4e0a-85dd-ae199d5957f6 status: 200 OK code: 200 - duration: 76.350912ms + duration: 99.129531ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/user_data method: GET response: proto: HTTP/2.0 @@ -1427,29 +1215,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab9f1212-07e7-44ef-84bc-69fd205ace26 + - 1cdc3489-006c-4549-8e72-2c958321271b status: 200 OK code: 200 - duration: 95.335066ms + duration: 99.944565ms - id: 29 request: proto: HTTP/1.1 @@ -1466,7 +1246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/private_nics method: GET response: proto: HTTP/2.0 @@ -1476,33 +1256,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:55 GMT + - Wed, 29 Oct 2025 22:54:21 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 011160d4-7fc0-4013-a2cd-7a7ff186fa02 + - 3630afc5-bab7-4e85-8d7a-9642877c60ce X-Total-Count: - "0" status: 200 OK code: 200 - duration: 88.655887ms + duration: 97.51907ms - id: 30 request: proto: HTTP/1.1 @@ -1521,7 +1293,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/ae493a7a-4b7f-421c-854d-6adc7771633f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b method: PATCH response: proto: HTTP/2.0 @@ -1529,31 +1301,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 1947 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "name": "tf-srv-inspiring-hawking", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-inspiring-hawking", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:81", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:13.144628+00:00", "modification_date": "2025-10-29T22:54:22.009594+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "1902", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1901" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1947" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6de59b48-47a1-425a-9e6e-671448b47ce0 + - f306d703-1218-4274-a8b0-7b00029216d8 status: 200 OK code: 200 - duration: 217.463977ms + duration: 218.271785ms - id: 31 request: proto: HTTP/1.1 @@ -1570,7 +1334,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b method: GET response: proto: HTTP/2.0 @@ -1578,31 +1342,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 1947 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "name": "tf-srv-inspiring-hawking", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-inspiring-hawking", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:81", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:13.144628+00:00", "modification_date": "2025-10-29T22:54:22.009594+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "1902", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1901" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1947" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2f41ff88-abe2-4a78-a22f-eaab3e27d6b8 + - 29a45a49-0c1b-4927-915f-e48b3ad00e15 status: 200 OK code: 200 - duration: 165.954125ms + duration: 121.799832ms - id: 32 request: proto: HTTP/1.1 @@ -1619,7 +1375,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b method: GET response: proto: HTTP/2.0 @@ -1627,31 +1383,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 1947 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "name": "tf-srv-inspiring-hawking", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-inspiring-hawking", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:81", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:13.144628+00:00", "modification_date": "2025-10-29T22:54:22.009594+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "1902", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1901" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1947" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 322b7fa4-406a-4a48-93bf-89c8cbb065d8 + - 2673bfd0-bd7b-49f6-90cd-9bab92d64b64 status: 200 OK code: 200 - duration: 183.90305ms + duration: 137.96507ms - id: 33 request: proto: HTTP/1.1 @@ -1670,7 +1418,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/ae493a7a-4b7f-421c-854d-6adc7771633f/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/action method: POST response: proto: HTTP/2.0 @@ -1680,31 +1428,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "7cf8a1cd-0e20-42a2-9f11-51584a357b18", "description": "server_terminate", "status": "pending", "href_from": "/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/action", "href_result": "/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "started_at": "2025-10-29T22:54:22.685392+00:00", "terminated_at": null, "progress": 0, "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:56 GMT + - Wed, 29 Oct 2025 22:54:22 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/528526f5-5ed7-47b4-9142-476ba8d3089e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7cf8a1cd-0e20-42a2-9f11-51584a357b18 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f73bd708-8ab3-4363-9eb7-8996e25f7b2c + - 83ea9972-2b8d-464d-afce-36cd79c0aff8 status: 202 Accepted code: 202 - duration: 282.146077ms + duration: 301.399795ms - id: 34 request: proto: HTTP/1.1 @@ -1721,7 +1461,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b method: GET response: proto: HTTP/2.0 @@ -1729,31 +1469,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1864 + content_length: 1910 uncompressed: 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: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"}}' + body: '{"server": {"id": "ae56c53b-53fa-4198-9f50-0eea0b0ad91b", "name": "tf-srv-inspiring-hawking", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-inspiring-hawking", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:81", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:13.144628+00:00", "modification_date": "2025-10-29T22:54:22.449972+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "1902", "node_id": "17"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1864" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1910" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:56 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 260fbcf7-4feb-47dd-9a8b-5b7f90e8bd18 + - 260baeff-12f6-406e-abd5-dd0e2b18e549 status: 200 OK code: 200 - duration: 157.257406ms + duration: 148.134455ms - id: 35 request: proto: HTTP/1.1 @@ -1770,7 +1502,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b method: GET response: proto: HTTP/2.0 @@ -1780,29 +1512,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ae493a7a-4b7f-421c-854d-6adc7771633f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "ae56c53b-53fa-4198-9f50-0eea0b0ad91b"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - be955638-c622-4e57-82c1-da85a3754980 + - b7a066c9-b11d-40d0-a616-e8d36e9caf06 status: 404 Not Found code: 404 - duration: 48.285799ms + duration: 56.627739ms - id: 36 request: proto: HTTP/1.1 @@ -1819,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/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 method: GET response: proto: HTTP/2.0 @@ -1829,29 +1553,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"57924322-6f78-496a-adc4-f2920dfb99c2","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7d1156a4-8900-4ec0-b65c-2c85e770a1ec + - 1455f125-9b21-46a7-b0c1-7e49dd026012 status: 404 Not Found code: 404 - duration: 27.537107ms + duration: 32.084615ms - id: 37 request: proto: HTTP/1.1 @@ -1868,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/block/v1alpha1/zones/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 method: GET response: proto: HTTP/2.0 @@ -1878,29 +1594,21 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:13.269743Z", "updated_at":"2025-10-29T22:54:24.463526Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:54:24.463526Z", "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:04:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 28cb198e-c8da-4d37-8612-298f285f04c9 + - 23bf6689-eb0e-4f84-bfb3-fb43e969be29 status: 200 OK code: 200 - duration: 95.462962ms + duration: 89.880959ms - id: 38 request: proto: HTTP/1.1 @@ -1917,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/57924322-6f78-496a-adc4-f2920dfb99c2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 method: DELETE response: proto: HTTP/2.0 @@ -1929,25 +1637,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 95ed193e-d1a3-4479-88eb-1348c635c0fa + - f9e9b101-3d62-4d23-998d-4f44a5be6a0d status: 204 No Content code: 204 - duration: 173.390814ms + duration: 170.440528ms - id: 39 request: proto: HTTP/1.1 @@ -1966,7 +1666,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/21ee6fd0-a17b-4c15-bf99-a0283e87333d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 method: PATCH response: proto: HTTP/2.0 @@ -1976,29 +1676,21 @@ interactions: trailer: {} content_length: 304 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "bar", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 03ac5920-3eca-43d3-b11e-4220023e93c5 + - d48bc18c-6b06-4e79-8b3e-3d563d10cebc status: 200 OK code: 200 - duration: 120.449738ms + duration: 123.810965ms - id: 40 request: proto: HTTP/1.1 @@ -2015,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/placement_groups/21ee6fd0-a17b-4c15-bf99-a0283e87333d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 method: GET response: proto: HTTP/2.0 @@ -2025,29 +1717,21 @@ interactions: trailer: {} content_length: 304 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "bar", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 04e7eca5-6acd-4dda-a3da-616be499fb8d + - e54a04db-56ac-4ba3-9e6e-804a937972fe status: 200 OK code: 200 - duration: 87.275264ms + duration: 131.937391ms - id: 41 request: proto: HTTP/1.1 @@ -2064,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/instance/v1/zones/fr-par-1/placement_groups/21ee6fd0-a17b-4c15-bf99-a0283e87333d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 method: GET response: proto: HTTP/2.0 @@ -2074,29 +1758,21 @@ interactions: trailer: {} content_length: 304 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "bar", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ace29e62-1892-40dd-99d8-1817289b19af + - bcab6487-458d-4d37-9cf7-17b350d0bb24 status: 200 OK code: 200 - duration: 92.000862ms + duration: 108.583962ms - id: 42 request: proto: HTTP/1.1 @@ -2113,7 +1789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/21ee6fd0-a17b-4c15-bf99-a0283e87333d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 method: GET response: proto: HTTP/2.0 @@ -2123,29 +1799,21 @@ interactions: trailer: {} content_length: 304 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "7257c159-3329-489b-8a0f-ead74fd8fb89", "name": "bar", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "low_latency", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a8fa2aea-e3ce-4cf3-a9e1-68f49e29ac88 + - 78296d1a-6320-48c2-96e9-aa909fcf07f0 status: 200 OK code: 200 - duration: 96.473457ms + duration: 115.98406ms - id: 43 request: proto: HTTP/1.1 @@ -2162,7 +1830,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/21ee6fd0-a17b-4c15-bf99-a0283e87333d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 method: DELETE response: proto: HTTP/2.0 @@ -2174,25 +1842,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 36f0a1ee-2dbf-477e-b7ed-18d1b65adefe + - ea59ae6c-c0fe-4f00-aeaf-e20cfc041fcf status: 204 No Content code: 204 - duration: 135.832484ms + duration: 148.515881ms - id: 44 request: proto: HTTP/1.1 @@ -2209,7 +1869,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/21ee6fd0-a17b-4c15-bf99-a0283e87333d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 method: GET response: proto: HTTP/2.0 @@ -2219,26 +1879,18 @@ interactions: trailer: {} content_length: 152 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_placement_group", "resource_id": "7257c159-3329-489b-8a0f-ead74fd8fb89"}' headers: Content-Length: - "152" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 17fa3ee4-e594-4e8e-a870-b096acc7e157 + - d551492f-8582-4ef7-b12e-3ec61e4dc146 status: 404 Not Found code: 404 - duration: 31.732732ms + duration: 38.955704ms diff --git a/internal/services/instance/testdata/placement-group-tags.cassette.yaml b/internal/services/instance/testdata/placement-group-tags.cassette.yaml index 70624db6e..6b2363507 100644 --- a/internal/services/instance/testdata/placement-group-tags.cassette.yaml +++ b/internal/services/instance/testdata/placement-group-tags.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 138 + content_length: 143 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pg-jovial-dewdney","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_type":"max_availability"}' + body: '{"name":"tf-pg-condescending-ellis","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_type":"max_availability"}' form: {} headers: Content-Type: @@ -27,33 +27,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 326 + content_length: 331 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a", "name": "tf-pg-condescending-ellis", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "326" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "331" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54:12 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ecacd10b-1701-4180-bc99-140f07c5fa62 + - 129d7fab-0c02-4351-9ef2-e1d05b5e702f status: 201 Created code: 201 - duration: 187.350974ms + duration: 189.347564ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a method: GET response: proto: HTTP/2.0 @@ -78,31 +70,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 326 + content_length: 331 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a", "name": "tf-pg-condescending-ellis", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "326" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "331" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c729c2df-a776-4022-aaef-0264b9c894a8 + - 903c013c-040b-430a-b0ce-f4b3ba27cc5a status: 200 OK code: 200 - duration: 140.65592ms + duration: 96.363326ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a method: GET response: proto: HTTP/2.0 @@ -127,31 +111,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 326 + content_length: 331 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a", "name": "tf-pg-condescending-ellis", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "326" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "331" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 40065ffb-1cbe-4aa2-93b9-08e0b268517f + - b3ff7dd9-f6c7-4ac9-b993-2bd2c889c62d status: 200 OK code: 200 - duration: 119.922393ms + duration: 118.195519ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a method: GET response: proto: HTTP/2.0 @@ -176,31 +152,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 326 + content_length: 331 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a", "name": "tf-pg-condescending-ellis", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "326" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "331" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cb2578a8-5c14-49d2-85ae-fded350672fa + - 82725551-9b48-4068-8dfc-d061c03b12e2 status: 200 OK code: 200 - duration: 110.549507ms + duration: 95.538504ms - id: 4 request: proto: HTTP/1.1 @@ -217,7 +185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a method: GET response: proto: HTTP/2.0 @@ -225,31 +193,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 326 + content_length: 331 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a", "name": "tf-pg-condescending-ellis", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "326" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "331" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 88341b42-7670-49fb-924b-8a5749b49f0c + - 328fa39b-0948-4f5e-a21f-3a54f549c118 status: 200 OK code: 200 - duration: 114.333569ms + duration: 113.384594ms - id: 5 request: proto: HTTP/1.1 @@ -268,7 +228,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/83e39b4c-ceda-4318-b2ae-d963e6e445a8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a method: PATCH response: proto: HTTP/2.0 @@ -276,31 +236,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 343 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a", "name": "tf-pg-condescending-ellis", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": ["foo", "bar"], "zone": "fr-par-1"}}' headers: Content-Length: - - "338" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "343" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fc76e00e-771b-4bca-b754-c1d75afbedc2 + - 4ed2e481-63ae-4730-bab0-3ea131a193b3 status: 200 OK code: 200 - duration: 137.438261ms + duration: 153.649443ms - id: 6 request: proto: HTTP/1.1 @@ -317,7 +269,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a method: GET response: proto: HTTP/2.0 @@ -325,31 +277,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 343 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a", "name": "tf-pg-condescending-ellis", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": ["foo", "bar"], "zone": "fr-par-1"}}' headers: Content-Length: - - "338" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "343" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f486bb2f-14b6-4d15-890e-698a0e4f0b31 + - d8c33392-0cd1-4c84-9014-d98c3df9cd5d status: 200 OK code: 200 - duration: 111.790743ms + duration: 97.256708ms - id: 7 request: proto: HTTP/1.1 @@ -366,7 +310,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a method: GET response: proto: HTTP/2.0 @@ -374,31 +318,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 343 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a", "name": "tf-pg-condescending-ellis", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": ["foo", "bar"], "zone": "fr-par-1"}}' headers: Content-Length: - - "338" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "343" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ccb30cc3-ad19-4e4a-9b5b-c358603b5b1e + - d506b020-73c7-470e-b091-b71c3548e195 status: 200 OK code: 200 - duration: 131.627481ms + duration: 120.095923ms - id: 8 request: proto: HTTP/1.1 @@ -415,7 +351,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a method: GET response: proto: HTTP/2.0 @@ -423,31 +359,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 343 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a", "name": "tf-pg-condescending-ellis", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": ["foo", "bar"], "zone": "fr-par-1"}}' headers: Content-Length: - - "338" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "343" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fdc7df71-4a4e-44c4-80a7-93476b6d1433 + - a9cec5e3-5f68-44da-ba1d-79fd917757aa status: 200 OK code: 200 - duration: 93.677788ms + duration: 110.892594ms - id: 9 request: proto: HTTP/1.1 @@ -464,7 +392,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a method: GET response: proto: HTTP/2.0 @@ -472,31 +400,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 343 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a", "name": "tf-pg-condescending-ellis", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": ["foo", "bar"], "zone": "fr-par-1"}}' headers: Content-Length: - - "338" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "343" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1308a41d-f0a9-4880-984a-c82a65df34c4 + - c59636f0-de62-464d-9999-b5e211a0226d status: 200 OK code: 200 - duration: 118.962125ms + duration: 117.075245ms - id: 10 request: proto: HTTP/1.1 @@ -515,7 +435,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/83e39b4c-ceda-4318-b2ae-d963e6e445a8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a method: PATCH response: proto: HTTP/2.0 @@ -523,31 +443,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 326 + content_length: 331 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a", "name": "tf-pg-condescending-ellis", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "326" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "331" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - babcd689-0bca-4a7e-8a7c-0771b988f7f7 + - cc702947-0dc4-42ee-8461-7d465bef8710 status: 200 OK code: 200 - duration: 188.657295ms + duration: 159.266107ms - id: 11 request: proto: HTTP/1.1 @@ -564,7 +476,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a method: GET response: proto: HTTP/2.0 @@ -572,31 +484,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 326 + content_length: 331 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a", "name": "tf-pg-condescending-ellis", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "326" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "331" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9f63149-5c28-4c05-a6d7-61f931eaf106 + - e54aa96e-57ac-4753-82f4-20cbe5411812 status: 200 OK code: 200 - duration: 116.754057ms + duration: 94.595211ms - id: 12 request: proto: HTTP/1.1 @@ -613,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/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a method: GET response: proto: HTTP/2.0 @@ -621,31 +525,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 326 + content_length: 331 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a", "name": "tf-pg-condescending-ellis", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "326" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "331" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8661f547-f949-47a2-b3fd-14b893bfab42 + - bda4416a-9e30-4a7e-ac2f-4caed6a07270 status: 200 OK code: 200 - duration: 116.967657ms + duration: 118.819066ms - id: 13 request: proto: HTTP/1.1 @@ -662,7 +558,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a method: GET response: proto: HTTP/2.0 @@ -670,31 +566,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 326 + content_length: 331 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a", "name": "tf-pg-condescending-ellis", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "optional", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "326" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "331" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:29 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2099adbe-3ec2-4ee9-a6fb-b432665a69ba + - c45ba269-828c-4d2e-bc22-d79489aca564 status: 200 OK code: 200 - duration: 104.051651ms + duration: 121.094201ms - id: 14 request: proto: HTTP/1.1 @@ -711,7 +599,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a method: DELETE response: proto: HTTP/2.0 @@ -723,22 +611,14 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:29 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a9ead164-31ed-4f83-8c16-ef12205e9765 + - 02d6b53b-92bb-4105-9cf4-6fc692b96718 status: 204 No Content code: 204 - duration: 196.05959ms + duration: 130.879398ms diff --git a/internal/services/instance/testdata/private-nic-basic.cassette.yaml b/internal/services/instance/testdata/private-nic-basic.cassette.yaml index dbadd6fd3..e0ba0148f 100644 --- a/internal/services/instance/testdata/private-nic-basic.cassette.yaml +++ b/internal/services/instance/testdata/private-nic-basic.cassette.yaml @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54:13 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a1370906-7b58-41c0-9e30-e010b064d732 + - 24e71075-c1d1-4f48-9dda-61a30c5f869f X-Total-Count: - "68" status: 200 OK code: 200 - duration: 48.022591ms + duration: 34.930144ms - id: 1 request: proto: HTTP/1.1 @@ -82,29 +76,21 @@ interactions: trailer: {} content_length: 421 uncompressed: false - 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"}' + body: '{"id":"c5fa332f-306d-4e71-bfb2-fc0c4f98b64b", "name":"TestAccPrivateNIC_Basic", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:13.527788Z", "updated_at":"2025-10-29T22:54:13.527788Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":0, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "421" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e8ba21ca-de47-4cea-aded-9702e16f7bc3 + - 155fb694-4595-4d8e-b769-efa59c1f7ddb status: 200 OK code: 200 - duration: 75.836118ms + duration: 65.112362ms - id: 2 request: proto: HTTP/1.1 @@ -117,11 +103,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/f8de6068-e0d4-4cd1-abba-590686dcf13a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -129,31 +117,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 14295 uncompressed: false - 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"}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "421" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "14295" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54:13 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 52445c98-a528-48d2-94a4-715a6c8fcb1d + - 4a67dc50-3300-46a1-b308-86ecde5c186a + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 26.442256ms + duration: 36.002129ms - id: 3 request: proto: HTTP/1.1 @@ -170,7 +154,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/c5fa332f-306d-4e71-bfb2-fc0c4f98b64b method: GET response: proto: HTTP/2.0 @@ -178,35 +162,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14295 + content_length: 421 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}}}}' + body: '{"id":"c5fa332f-306d-4e71-bfb2-fc0c4f98b64b", "name":"TestAccPrivateNIC_Basic", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:13.527788Z", "updated_at":"2025-10-29T22:54:13.527788Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":0, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "421" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 39347a34-6224-4d7c-9667-cc19bdc815a3 - X-Total-Count: - - "68" + - 95f4ab1f-eccf-4d25-ba43-452b985116f4 status: 200 OK code: 200 - duration: 49.700375ms + duration: 25.962627ms - id: 4 request: proto: HTTP/1.1 @@ -219,7 +191,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -231,31 +211,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1365e326-c355-4164-8ceb-1cdd6f8139b4 + - 24980155-4734-49c6-8eb3-92b0ed350d22 status: 200 OK code: 200 - duration: 44.57507ms + duration: 45.44126ms - id: 5 request: proto: HTTP/1.1 @@ -267,7 +239,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - 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}' + body: '{"name":"TestAccScalewayInstancePrivateNIC_Basic","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"c5fa332f-306d-4e71-bfb2-fc0c4f98b64b","default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1109 + content_length: 1108 uncompressed: false - 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"}' + body: '{"id":"2dcd1a25-4756-469a-af05-b4221e417e5e", "name":"TestAccScalewayInstancePrivateNIC_Basic", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:13.652334Z", "updated_at":"2025-10-29T22:54:13.652334Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"46acb418-81f5-454b-9dd0-d931481bb3be", "created_at":"2025-10-29T22:54:13.652334Z", "updated_at":"2025-10-29T22:54:13.652334Z", "subnet":"172.18.20.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2dcd1a25-4756-469a-af05-b4221e417e5e", "vpc_id":"c5fa332f-306d-4e71-bfb2-fc0c4f98b64b"}, {"id":"ce20915c-f684-4b12-ba80-a68e1a702adf", "created_at":"2025-10-29T22:54:13.652334Z", "updated_at":"2025-10-29T22:54:13.652334Z", "subnet":"fd5f:519c:6d46:a92::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2dcd1a25-4756-469a-af05-b4221e417e5e", "vpc_id":"c5fa332f-306d-4e71-bfb2-fc0c4f98b64b"}], "vpc_id":"c5fa332f-306d-4e71-bfb2-fc0c4f98b64b", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1109" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1108" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8be6949a-498b-4b23-ac34-252393521efd + - b60dac5f-db61-4ac2-9583-725d27578ee5 status: 200 OK code: 200 - duration: 605.73213ms + duration: 654.836707ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/20265fc3-cff5-42ad-8c18-f277f51d18d1 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2dcd1a25-4756-469a-af05-b4221e417e5e method: GET response: proto: HTTP/2.0 @@ -331,43 +295,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1109 + content_length: 1108 uncompressed: false - 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"}' + body: '{"id":"2dcd1a25-4756-469a-af05-b4221e417e5e", "name":"TestAccScalewayInstancePrivateNIC_Basic", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:13.652334Z", "updated_at":"2025-10-29T22:54:13.652334Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"46acb418-81f5-454b-9dd0-d931481bb3be", "created_at":"2025-10-29T22:54:13.652334Z", "updated_at":"2025-10-29T22:54:13.652334Z", "subnet":"172.18.20.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2dcd1a25-4756-469a-af05-b4221e417e5e", "vpc_id":"c5fa332f-306d-4e71-bfb2-fc0c4f98b64b"}, {"id":"ce20915c-f684-4b12-ba80-a68e1a702adf", "created_at":"2025-10-29T22:54:13.652334Z", "updated_at":"2025-10-29T22:54:13.652334Z", "subnet":"fd5f:519c:6d46:a92::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2dcd1a25-4756-469a-af05-b4221e417e5e", "vpc_id":"c5fa332f-306d-4e71-bfb2-fc0c4f98b64b"}], "vpc_id":"c5fa332f-306d-4e71-bfb2-fc0c4f98b64b", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1109" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1108" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5a231369-e87c-45bd-abdf-1aea288898af + - 84a3fdcb-84ac-4211-bf76-8788722e517d status: 200 OK code: 200 - duration: 29.570058ms + duration: 23.642788ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 228 + content_length: 235 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-focused-galileo","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: @@ -382,33 +338,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 1786 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: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"}}' + body: '{"server": {"id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "name": "tf-srv-focused-galileo", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-focused-galileo", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:83", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:14.284755+00:00", "modification_date": "2025-10-29T22:54:14.284755+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1726" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1786" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54:14 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa0179ad-af92-4eda-adf4-44a1e4964b94 + - e5d54233-41b7-47d9-afe5-1e96fb8b5347 status: 201 Created code: 201 - duration: 1.263856885s + duration: 1.134131926s - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 1786 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: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"}}' + body: '{"server": {"id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "name": "tf-srv-focused-galileo", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-focused-galileo", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:83", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:14.284755+00:00", "modification_date": "2025-10-29T22:54:14.284755+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1726" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1786" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 20c6fd00-88cd-404d-aa17-a2501b1583e7 + - 2d9c47df-9c9b-462e-b8fc-1bdc2c25a7a3 status: 200 OK code: 200 - duration: 143.991823ms + duration: 137.497853ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 method: GET response: proto: HTTP/2.0 @@ -482,31 +422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 1786 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: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"}}' + body: '{"server": {"id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "name": "tf-srv-focused-galileo", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-focused-galileo", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:83", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:14.284755+00:00", "modification_date": "2025-10-29T22:54:14.284755+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1726" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1786" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 43f0d5e5-6296-43a4-bfcf-d468aa39e9c5 + - c1992710-2ad8-4770-816a-6b654d42e8c7 status: 200 OK code: 200 - duration: 140.453853ms + duration: 129.46365ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa method: GET response: proto: HTTP/2.0 @@ -533,29 +465,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:14.422403Z", "updated_at":"2025-10-29T22:54:14.422403Z", "references":[{"id":"970ffbc4-0b67-4d02-8b85-eb9e57e734fb", "product_resource_type":"instance_server", "product_resource_id":"d17b3e02-c778-4096-9137-66680f4ba6b5", "created_at":"2025-10-29T22:54:14.422403Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a59f3f5f-f666-4663-9757-f5ad916a4b17 + - 9ce2769d-d13e-4b67-a8fd-dd260cb1a01e status: 200 OK code: 200 - duration: 80.202011ms + duration: 92.631599ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +498,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/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/action method: POST response: proto: HTTP/2.0 @@ -584,31 +508,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "9aa01869-8fdc-4e1b-9cfd-10b49503423a", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/action", "href_result": "/servers/d17b3e02-c778-4096-9137-66680f4ba6b5", "started_at": "2025-10-29T22:54:15.319464+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54:15 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8054d131-41a6-45b7-bffc-d37952ffe03b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9aa01869-8fdc-4e1b-9cfd-10b49503423a Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 35c4966b-f4ea-4670-8c24-214e31305bba + - c7da7f80-067f-4fad-8eef-5073f2f7d92c status: 202 Accepted code: 202 - duration: 303.176451ms + duration: 243.686833ms - id: 12 request: proto: HTTP/1.1 @@ -625,7 +541,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 method: GET response: proto: HTTP/2.0 @@ -633,31 +549,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1748 + 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-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"}}' + body: '{"server": {"id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "name": "tf-srv-focused-galileo", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-focused-galileo", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:83", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:14.284755+00:00", "modification_date": "2025-10-29T22:54:15.127482+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1748" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1762" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2f73752e-d9aa-40e2-82d1-3137c5519389 + - f52ef011-90e2-4c04-8aee-15e9ef4a9be0 status: 200 OK code: 200 - duration: 142.572113ms + duration: 144.754622ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 method: GET response: proto: HTTP/2.0 @@ -682,31 +590,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 1942 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "name": "tf-srv-focused-galileo", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-focused-galileo", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:83", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:14.284755+00:00", "modification_date": "2025-10-29T22:54:17.741372+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "202", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1882" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1942" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:33 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f89f66a9-4827-4cc7-b512-2a929c042639 + - caa4086e-3b33-448c-bebd-b087da51d526 status: 200 OK code: 200 - duration: 130.523638ms + duration: 149.795961ms - id: 14 request: proto: HTTP/1.1 @@ -723,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/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 method: GET response: proto: HTTP/2.0 @@ -731,31 +631,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + 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: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"}}' + body: '{"server": {"id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "name": "tf-srv-focused-galileo", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-focused-galileo", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:83", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:14.284755+00:00", "modification_date": "2025-10-29T22:54:17.741372+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "202", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1882" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1896" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:33 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e9e2cb2e-3216-4476-8796-f63030904d26 + - 87736463-7415-4ea9-803e-ff4650c7da7d status: 200 OK code: 200 - duration: 214.997722ms + duration: 131.729038ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa method: GET response: proto: HTTP/2.0 @@ -782,29 +674,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:33 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6e0e2967-716f-4b0c-b4f5-8344b8eba4af + - ff672247-0806-4226-b9c8-d7bd6ae402d3 status: 404 Not Found code: 404 - duration: 27.120099ms + duration: 27.108519ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa method: GET response: proto: HTTP/2.0 @@ -831,29 +715,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:14.422403Z", "updated_at":"2025-10-29T22:54:14.422403Z", "references":[{"id":"970ffbc4-0b67-4d02-8b85-eb9e57e734fb", "product_resource_type":"instance_server", "product_resource_id":"d17b3e02-c778-4096-9137-66680f4ba6b5", "created_at":"2025-10-29T22:54:14.422403Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:33 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3a28be86-bb66-4338-8030-c80a6987188f + - 62c6e0a7-e934-406e-b186-36d72caf692c status: 200 OK code: 200 - duration: 92.33188ms + duration: 77.406381ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/user_data method: GET response: proto: HTTP/2.0 @@ -880,29 +756,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:33 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9f1f6dae-0552-4ab0-8eb1-85c7d85d9937 + - 34772159-4e98-48b6-ab89-b6be28cb661a status: 200 OK code: 200 - duration: 90.189775ms + duration: 102.99045ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics method: GET response: proto: HTTP/2.0 @@ -929,33 +797,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:33 GMT + - Wed, 29 Oct 2025 22:54:21 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f8244daa-8812-4914-abed-7c6dca72f0f3 + - dae80c45-5820-440b-af00-b88bc224fdb5 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 103.284577ms + duration: 96.887297ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 method: GET response: proto: HTTP/2.0 @@ -980,31 +840,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + 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: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"}}' + body: '{"server": {"id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "name": "tf-srv-focused-galileo", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-focused-galileo", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:83", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:14.284755+00:00", "modification_date": "2025-10-29T22:54:17.741372+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "202", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1882" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1896" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:33 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - abe19d76-0dc3-403f-83e4-339935dc2147 + - 0758e972-3161-4360-b26c-0668120f72a8 status: 200 OK code: 200 - duration: 141.993476ms + duration: 144.017636ms - id: 20 request: proto: HTTP/1.1 @@ -1016,14 +868,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1"}' + body: '{"private_network_id":"2dcd1a25-4756-469a-af05-b4221e417e5e"}' 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/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics method: POST response: proto: HTTP/2.0 @@ -1033,29 +885,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "syncing", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:21.484582+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:34 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 03ac9246-e618-423a-acdd-097db5444e36 + - 842f1448-21b3-46d6-a314-90e42e28dca6 status: 201 Created code: 201 - duration: 669.04726ms + duration: 653.984549ms - id: 21 request: proto: HTTP/1.1 @@ -1072,7 +916,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 method: GET response: proto: HTTP/2.0 @@ -1082,29 +926,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "syncing", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:21.484582+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:34 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d9c90ae4-a2ab-4310-8ba2-3f7da35c713b + - 388fe595-6886-4632-ac00-c62b2da8ff98 status: 200 OK code: 200 - duration: 101.996283ms + duration: 92.564906ms - id: 22 request: proto: HTTP/1.1 @@ -1121,7 +957,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 method: GET response: proto: HTTP/2.0 @@ -1131,29 +967,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "syncing", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:21.484582+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:39 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2ca610df-2b56-4575-9c31-5c8628161754 + - 1d06fab0-3e72-482f-a4b5-3cf6d09d90e0 status: 200 OK code: 200 - duration: 98.410608ms + duration: 90.915984ms - id: 23 request: proto: HTTP/1.1 @@ -1170,7 +998,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 method: GET response: proto: HTTP/2.0 @@ -1180,29 +1008,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "syncing", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:21.484582+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ef9ba1ee-1900-477b-b654-630b133e773b + - 9868c1f7-3759-4999-8dc2-8842c792279c status: 200 OK code: 200 - duration: 111.317984ms + duration: 200.764854ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1039,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 method: GET response: proto: HTTP/2.0 @@ -1229,29 +1049,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "syncing", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:21.484582+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:49 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cb4ddbf3-a3a2-4e8c-bed2-f32079300e51 + - 830c6f42-3ba0-4b6e-a63d-dfd03778d94d status: 200 OK code: 200 - duration: 124.524713ms + duration: 132.296766ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1080,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 method: GET response: proto: HTTP/2.0 @@ -1278,29 +1090,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "syncing", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:21.484582+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4a5e2938-9808-4612-b490-e5ef6da30a10 + - a17d06ca-2e54-4bea-8a0d-807bc7546de2 status: 200 OK code: 200 - duration: 109.513532ms + duration: 141.524994ms - id: 26 request: proto: HTTP/1.1 @@ -1317,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/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 method: GET response: proto: HTTP/2.0 @@ -1325,31 +1129,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "syncing", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:21.484582+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}}' headers: Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "473" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 24ec6501-32a1-48d6-bd56-c523125e6348 + - 848febd7-38fb-4116-95a5-410e4510da24 status: 200 OK code: 200 - duration: 137.885469ms + duration: 88.696128ms - id: 27 request: proto: HTTP/1.1 @@ -1366,7 +1162,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 method: GET response: proto: HTTP/2.0 @@ -1376,29 +1172,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "available", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:48.658048+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 15b0ae83-160e-452a-9067-bc72268163bd + - 12d35897-ac54-4339-98ff-eadf1f5e8d15 status: 200 OK code: 200 - duration: 102.33893ms + duration: 97.891405ms - id: 28 request: proto: HTTP/1.1 @@ -1415,7 +1203,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 method: GET response: proto: HTTP/2.0 @@ -1423,31 +1211,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2340 + 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-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"}}' + body: '{"private_nic": {"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "available", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:48.658048+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}}' headers: Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "475" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e47c7964-b158-46f1-b4df-c0f5a636fb5e + - 8a79c93f-e1f1-4ef9-8aee-06d883f214d7 status: 200 OK code: 200 - duration: 147.857932ms + duration: 95.837693ms - id: 29 request: proto: HTTP/1.1 @@ -1464,7 +1244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=20265fc3-cff5-42ad-8c18-f277f51d18d1&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4fa22ed6-0508-4e33-933b-9f0e5b6c5a64&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 method: GET response: proto: HTTP/2.0 @@ -1472,32 +1252,75 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1060 + content_length: 2354 uncompressed: false - 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}' + body: '{"server": {"id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "name": "tf-srv-focused-galileo", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-focused-galileo", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:83", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:14.284755+00:00", "modification_date": "2025-10-29T22:54:17.741372+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "202", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "available", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:48.658048+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1060" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2354" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 02a7b19a-6d11-467b-9b2a-f0cb4cddc2ce + - 102ef2ef-f09e-4fac-b83e-873a3f4efb61 status: 200 OK code: 200 - duration: 197.944969ms + duration: 145.460507ms - 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: + order_by: + - created_at_desc + private_network_id: + - 2dcd1a25-4756-469a-af05-b4221e417e5e + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 75cf202c-f065-44cb-8fed-b983a06be823 + resource_type: + - instance_private_nic + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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=2dcd1a25-4756-469a-af05-b4221e417e5e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=75cf202c-f065-44cb-8fed-b983a06be823&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1073 + uncompressed: false + body: '{"total_count":2, "ips":[{"id":"bcc2275c-e0d2-4bb0-984b-6ee66380b7e9", "address":"fd5f:519c:6d46:a92:e3ef:36a8:3856:5f8e/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:21.724993Z", "updated_at":"2025-10-29T22:54:21.724993Z", "source":{"subnet_id":"ce20915c-f684-4b12-ba80-a68e1a702adf"}, "resource":{"type":"instance_private_nic", "id":"75cf202c-f065-44cb-8fed-b983a06be823", "mac_address":"02:00:00:10:4D:94", "name":"tf-srv-focused-galileo"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:21.608680Z", "updated_at":"2025-10-29T22:54:21.608680Z", "source":{"subnet_id":"46acb418-81f5-454b-9dd0-d931481bb3be"}, "resource":{"type":"instance_private_nic", "id":"75cf202c-f065-44cb-8fed-b983a06be823", "mac_address":"02:00:00:10:4D:94", "name":"tf-srv-focused-galileo"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' + headers: + Content-Length: + - "1073" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:54:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 55d794b9-3bdd-4f5c-ae89-ae5f56b5d7ec + status: 200 OK + code: 200 + duration: 58.166099ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1513,7 +1336,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 method: GET response: proto: HTTP/2.0 @@ -1523,30 +1346,22 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "available", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:48.658048+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ddab3716-d850-4f28-b516-b28bf82f3e83 + - d0a197de-cd7e-46e3-8d0c-c43c4f8083da status: 200 OK code: 200 - duration: 104.795254ms - - id: 31 + duration: 94.612073ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1562,7 +1377,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/f8de6068-e0d4-4cd1-abba-590686dcf13a + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c5fa332f-306d-4e71-bfb2-fc0c4f98b64b method: GET response: proto: HTTP/2.0 @@ -1572,30 +1387,22 @@ interactions: trailer: {} content_length: 421 uncompressed: false - 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"}' + body: '{"id":"c5fa332f-306d-4e71-bfb2-fc0c4f98b64b", "name":"TestAccPrivateNIC_Basic", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:13.527788Z", "updated_at":"2025-10-29T22:54:13.527788Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "421" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a1216d5d-38fd-465b-bdae-b18f6476cd04 + - 596b8c54-8203-425d-b89d-4f433d488f5c status: 200 OK code: 200 - duration: 35.267558ms - - id: 32 + duration: 28.649524ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1611,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/vpc/v2/regions/fr-par/private-networks/20265fc3-cff5-42ad-8c18-f277f51d18d1 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2dcd1a25-4756-469a-af05-b4221e417e5e method: GET response: proto: HTTP/2.0 @@ -1619,32 +1426,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1109 + content_length: 1108 uncompressed: false - 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"}' + body: '{"id":"2dcd1a25-4756-469a-af05-b4221e417e5e", "name":"TestAccScalewayInstancePrivateNIC_Basic", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:13.652334Z", "updated_at":"2025-10-29T22:54:13.652334Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"46acb418-81f5-454b-9dd0-d931481bb3be", "created_at":"2025-10-29T22:54:13.652334Z", "updated_at":"2025-10-29T22:54:13.652334Z", "subnet":"172.18.20.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2dcd1a25-4756-469a-af05-b4221e417e5e", "vpc_id":"c5fa332f-306d-4e71-bfb2-fc0c4f98b64b"}, {"id":"ce20915c-f684-4b12-ba80-a68e1a702adf", "created_at":"2025-10-29T22:54:13.652334Z", "updated_at":"2025-10-29T22:54:13.652334Z", "subnet":"fd5f:519c:6d46:a92::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2dcd1a25-4756-469a-af05-b4221e417e5e", "vpc_id":"c5fa332f-306d-4e71-bfb2-fc0c4f98b64b"}], "vpc_id":"c5fa332f-306d-4e71-bfb2-fc0c4f98b64b", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1109" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1108" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f14b72b3-2871-4d39-a32c-b3c911b3cc66 + - c04821c7-24eb-4a65-bf32-1a8c16966fe6 status: 200 OK code: 200 - duration: 26.050581ms - - id: 33 + duration: 30.643643ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1660,7 +1459,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 method: GET response: proto: HTTP/2.0 @@ -1668,32 +1467,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2340 + content_length: 2400 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "name": "tf-srv-focused-galileo", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-focused-galileo", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:83", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:14.284755+00:00", "modification_date": "2025-10-29T22:54:17.741372+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "202", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "available", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:48.658048+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2400" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9fa6e1b5-7d34-4dd9-b744-1787d869fb11 + - f841f9ce-c85b-4ba0-9598-434a85eb2486 status: 200 OK code: 200 - duration: 148.433081ms - - id: 34 + duration: 138.396137ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1709,7 +1500,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa method: GET response: proto: HTTP/2.0 @@ -1719,30 +1510,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c33aa67e-ccf9-45bf-8d47-0f1d7cc42b33 + - 9c3bb361-c8ee-49b9-bc46-750d97e805cf status: 404 Not Found code: 404 - duration: 27.336552ms - - id: 35 + duration: 26.409444ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1758,7 +1541,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa method: GET response: proto: HTTP/2.0 @@ -1768,30 +1551,22 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:14.422403Z", "updated_at":"2025-10-29T22:54:14.422403Z", "references":[{"id":"970ffbc4-0b67-4d02-8b85-eb9e57e734fb", "product_resource_type":"instance_server", "product_resource_id":"d17b3e02-c778-4096-9137-66680f4ba6b5", "created_at":"2025-10-29T22:54:14.422403Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 861ec458-3448-4ab1-9d6a-0c5c81dab569 + - 725bcb6f-3af0-4616-96a3-67fd1a57c034 status: 200 OK code: 200 - duration: 79.009109ms - - id: 36 + duration: 82.309887ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1807,7 +1582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/user_data method: GET response: proto: HTTP/2.0 @@ -1817,30 +1592,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e6720d37-57c6-4436-84fd-9466c167f20b + - f22f3dc6-5475-4003-958c-29dd1ef27073 status: 200 OK code: 200 - duration: 94.353382ms - - id: 37 + duration: 91.373045ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1856,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/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics method: GET response: proto: HTTP/2.0 @@ -1866,34 +1633,26 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "available", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:48.658048+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 14ca8458-dec1-4cbc-9309-001b427e72f4 + - 2056f683-174c-4004-bb66-0518c701fff4 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 91.885235ms - - id: 38 + duration: 98.452624ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1905,11 +1664,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 75cf202c-f065-44cb-8fed-b983a06be823 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=4fa22ed6-0508-4e33-933b-9f0e5b6c5a64&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=75cf202c-f065-44cb-8fed-b983a06be823&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1917,32 +1684,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1060 + content_length: 1073 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"bcc2275c-e0d2-4bb0-984b-6ee66380b7e9", "address":"fd5f:519c:6d46:a92:e3ef:36a8:3856:5f8e/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:21.724993Z", "updated_at":"2025-10-29T22:54:21.724993Z", "source":{"subnet_id":"ce20915c-f684-4b12-ba80-a68e1a702adf"}, "resource":{"type":"instance_private_nic", "id":"75cf202c-f065-44cb-8fed-b983a06be823", "mac_address":"02:00:00:10:4D:94", "name":"tf-srv-focused-galileo"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:21.608680Z", "updated_at":"2025-10-29T22:54:21.608680Z", "source":{"subnet_id":"46acb418-81f5-454b-9dd0-d931481bb3be"}, "resource":{"type":"instance_private_nic", "id":"75cf202c-f065-44cb-8fed-b983a06be823", "mac_address":"02:00:00:10:4D:94", "name":"tf-srv-focused-galileo"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1060" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1073" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8a9d6350-c272-4387-b75b-65fbc5bd5a4e + - 4295b943-f735-4890-820b-32cc6d5277e8 status: 200 OK code: 200 - duration: 25.229923ms - - id: 39 + duration: 31.975725ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1958,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/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 method: GET response: proto: HTTP/2.0 @@ -1968,30 +1727,22 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "available", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:48.658048+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fe72d6d6-bfef-4c53-a1b1-9dcd801ac3c1 + - 7ef710b1-60ac-4c65-af57-5f567476c750 status: 200 OK code: 200 - duration: 124.742685ms - - id: 40 + duration: 106.757374ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2007,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/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 method: GET response: proto: HTTP/2.0 @@ -2015,32 +1766,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2340 + content_length: 2354 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "name": "tf-srv-focused-galileo", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-focused-galileo", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:83", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:14.284755+00:00", "modification_date": "2025-10-29T22:54:17.741372+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "202", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "available", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:48.658048+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2354" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dc2f1f3b-0a52-4355-b9b3-4afbae1660b0 + - 9ad86043-60af-43c6-94b1-5ab72e301c58 status: 200 OK code: 200 - duration: 153.329621ms - - id: 41 + duration: 151.747865ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2052,11 +1795,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 2dcd1a25-4756-469a-af05-b4221e417e5e + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 75cf202c-f065-44cb-8fed-b983a06be823 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=20265fc3-cff5-42ad-8c18-f277f51d18d1&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4fa22ed6-0508-4e33-933b-9f0e5b6c5a64&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=2dcd1a25-4756-469a-af05-b4221e417e5e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=75cf202c-f065-44cb-8fed-b983a06be823&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2064,32 +1817,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1060 + content_length: 1073 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"bcc2275c-e0d2-4bb0-984b-6ee66380b7e9", "address":"fd5f:519c:6d46:a92:e3ef:36a8:3856:5f8e/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:21.724993Z", "updated_at":"2025-10-29T22:54:21.724993Z", "source":{"subnet_id":"ce20915c-f684-4b12-ba80-a68e1a702adf"}, "resource":{"type":"instance_private_nic", "id":"75cf202c-f065-44cb-8fed-b983a06be823", "mac_address":"02:00:00:10:4D:94", "name":"tf-srv-focused-galileo"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "address":"172.18.20.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:21.608680Z", "updated_at":"2025-10-29T22:54:21.608680Z", "source":{"subnet_id":"46acb418-81f5-454b-9dd0-d931481bb3be"}, "resource":{"type":"instance_private_nic", "id":"75cf202c-f065-44cb-8fed-b983a06be823", "mac_address":"02:00:00:10:4D:94", "name":"tf-srv-focused-galileo"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1060" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1073" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2a37c61c-5729-4d40-9f31-e5268a1c447e + - b6db3df5-9f12-40df-99c1-b9f6172d1eaa status: 200 OK code: 200 - duration: 44.459317ms - - id: 42 + duration: 41.259093ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2105,7 +1850,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 method: GET response: proto: HTTP/2.0 @@ -2115,30 +1860,22 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "75cf202c-f065-44cb-8fed-b983a06be823", "private_network_id": "2dcd1a25-4756-469a-af05-b4221e417e5e", "server_id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "mac_address": "02:00:00:10:4d:94", "state": "available", "creation_date": "2025-10-29T22:54:21.275363+00:00", "modification_date": "2025-10-29T22:54:48.658048+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["a4c9e63a-7461-4f80-ba6e-ffb31df1176a", "bcc2275c-e0d2-4bb0-984b-6ee66380b7e9"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2fef3376-3181-42c1-bc86-e078b370dfb3 + - 228e5656-65c4-4c92-bd57-13a141d6853e status: 200 OK code: 200 - duration: 103.252453ms - - id: 43 + duration: 90.959923ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2154,7 +1891,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 method: DELETE response: proto: HTTP/2.0 @@ -2166,26 +1903,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e64b6ed8-91ff-48cf-b06b-f7cff49a470f + - ea4d25f8-c673-461c-b11a-b08e13740b6e status: 204 No Content code: 204 - duration: 394.675607ms - - id: 44 + duration: 401.679553ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2201,7 +1930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 method: GET response: proto: HTTP/2.0 @@ -2211,30 +1940,22 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_private_nic", "resource_id": "75cf202c-f065-44cb-8fed-b983a06be823"}' headers: Content-Length: - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 78cb9ed5-92e1-4177-b3f2-117fd8946acc + - 31898773-e8ab-4e42-9563-8c7be8aac8c0 status: 404 Not Found code: 404 - duration: 85.467396ms - - id: 45 + duration: 106.901313ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2250,7 +1971,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 method: GET response: proto: HTTP/2.0 @@ -2258,32 +1979,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 1942 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "name": "tf-srv-focused-galileo", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-focused-galileo", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:83", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:14.284755+00:00", "modification_date": "2025-10-29T22:54:17.741372+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "202", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1882" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1942" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e5882e9f-9040-4be4-a1c0-fedea9ebef72 + - 0238e490-de24-4e1c-8afe-91a358332324 status: 200 OK code: 200 - duration: 142.017127ms - - id: 46 + duration: 130.683185ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2299,7 +2012,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 method: GET response: proto: HTTP/2.0 @@ -2307,32 +2020,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + 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: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"}}' + body: '{"server": {"id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "name": "tf-srv-focused-galileo", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-focused-galileo", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:83", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:14.284755+00:00", "modification_date": "2025-10-29T22:54:17.741372+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "202", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1882" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1896" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8cb2fe52-7299-447d-9300-14d62824bfb0 + - 34c18534-a746-4dab-9d23-1a97b993ffc4 status: 200 OK code: 200 - duration: 152.823483ms - - id: 47 + duration: 123.841722ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2350,7 +2055,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/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/action method: POST response: proto: HTTP/2.0 @@ -2360,32 +2065,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "8e89c6ac-3620-44cf-bccd-33df1393c79c", "description": "server_terminate", "status": "pending", "href_from": "/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/action", "href_result": "/servers/d17b3e02-c778-4096-9137-66680f4ba6b5", "started_at": "2025-10-29T22:54:55.680718+00:00", "terminated_at": null, "progress": 0, "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:03 GMT + - Wed, 29 Oct 2025 22:54:55 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/aa222fb6-c9e1-499a-8ee2-5456440bc8bc + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8e89c6ac-3620-44cf-bccd-33df1393c79c Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f13570a7-4211-4afb-8ce3-46540888f901 + - 5451e494-f35b-4e71-96fe-6a4ac1afcbb7 status: 202 Accepted code: 202 - duration: 313.006692ms - - id: 48 + duration: 287.617299ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2401,7 +2098,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 method: GET response: proto: HTTP/2.0 @@ -2409,32 +2106,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1845 + content_length: 1905 uncompressed: 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: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"}}' + body: '{"server": {"id": "d17b3e02-c778-4096-9137-66680f4ba6b5", "name": "tf-srv-focused-galileo", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-focused-galileo", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:83", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:14.284755+00:00", "modification_date": "2025-10-29T22:54:55.454607+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "202", "node_id": "38"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1845" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1905" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5dccc4ca-bfd1-4b43-acdd-93b1ba1c9b6a + - 8bb85c58-4646-42fe-abd3-8a2a1bba3ad1 status: 200 OK code: 200 - duration: 150.818266ms - - id: 49 + duration: 139.383615ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2450,7 +2139,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/20265fc3-cff5-42ad-8c18-f277f51d18d1 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2dcd1a25-4756-469a-af05-b4221e417e5e method: DELETE response: proto: HTTP/2.0 @@ -2462,26 +2151,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 85bd6944-0060-44f4-a192-8b900cb341c2 + - 0f02ea9c-64c9-41cc-a6aa-d8c16c6bffc0 status: 204 No Content code: 204 - duration: 1.364658226s - - id: 50 + duration: 1.087904101s + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2497,7 +2178,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/f8de6068-e0d4-4cd1-abba-590686dcf13a + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c5fa332f-306d-4e71-bfb2-fc0c4f98b64b method: DELETE response: proto: HTTP/2.0 @@ -2509,26 +2190,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d739f789-b828-4d3b-877a-c06a92094bab + - 29aaad7c-5d6b-457b-b096-13d3c2b9a05d status: 204 No Content code: 204 - duration: 148.398019ms - - id: 51 + duration: 151.096137ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2544,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/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 method: GET response: proto: HTTP/2.0 @@ -2554,30 +2227,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "d17b3e02-c778-4096-9137-66680f4ba6b5"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:55:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dfb06d6a-0482-4e9f-8f92-97503ebc585e + - 947eb149-ef8e-4e17-8258-a7113c60f336 status: 404 Not Found code: 404 - duration: 49.311956ms - - id: 52 + duration: 62.801458ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2593,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/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa method: GET response: proto: HTTP/2.0 @@ -2603,30 +2268,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:55:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9263125b-3df9-4168-9771-5fe04a5bfd62 + - 3a1f51c9-563c-4053-90db-0e2eebea1395 status: 404 Not Found code: 404 - duration: 25.781508ms - - id: 53 + duration: 36.43316ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2642,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/block/v1alpha1/zones/fr-par-1/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa method: GET response: proto: HTTP/2.0 @@ -2652,30 +2309,22 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"dab121b8-5024-4b8f-9ad0-b19f132fbaaa", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:14.422403Z", "updated_at":"2025-10-29T22:54:57.330500Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:54:57.330500Z", "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:04:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 632664dd-08f3-4859-8f5c-694362b2416d + - 1af64eaf-0436-4810-8c03-2ccc975596a7 status: 200 OK code: 200 - duration: 91.286839ms - - id: 54 + duration: 86.809054ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2691,7 +2340,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa method: DELETE response: proto: HTTP/2.0 @@ -2703,26 +2352,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6cf1dc5a-66fb-417c-ad11-eec993520a2f + - b78ec25e-5d7d-4a12-999e-869132a17b8d status: 204 No Content code: 204 - duration: 177.568155ms - - id: 55 + duration: 161.666755ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2738,7 +2379,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 method: GET response: proto: HTTP/2.0 @@ -2748,26 +2389,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "d17b3e02-c778-4096-9137-66680f4ba6b5"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ca7b1801-5fff-4449-8313-b7178067a4fa + - 859f0e4a-8a12-4884-95a1-cd6814b67e38 status: 404 Not Found code: 404 - duration: 22.273933ms + duration: 34.899943ms diff --git a/internal/services/instance/testdata/private-nic-tags.cassette.yaml b/internal/services/instance/testdata/private-nic-tags.cassette.yaml index 986a68a2f..0a3bad0a4 100644 --- a/internal/services/instance/testdata/private-nic-tags.cassette.yaml +++ b/internal/services/instance/testdata/private-nic-tags.cassette.yaml @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:54:23 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1a4cf7a8-265c-48c6-a490-322e6161bf49 + - 3716967c-9bf8-4a81-9191-c145c316b5b2 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 70.526263ms + duration: 48.265892ms - id: 1 request: proto: HTTP/1.1 @@ -82,29 +76,21 @@ interactions: trailer: {} content_length: 420 uncompressed: false - 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"}' + body: '{"id":"049f2263-f596-4861-9ee1-dd8134efdc26", "name":"TestAccPrivateNIC_Tags", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.250125Z", "updated_at":"2025-10-29T22:54:23.250125Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":0, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "420" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 137bff2a-9d0d-41e9-8681-5f89e24498b5 + - e71bc0ec-bf52-4e1b-8651-dac1e4a589e9 status: 200 OK code: 200 - duration: 114.32135ms + duration: 85.166823ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +103,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,33 +119,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:54:23 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 535f9ed9-4411-4dfe-8a24-f10b613c9db7 + - 2f6f1e1f-34a5-410c-bbf5-7f9d2eba61ba X-Total-Count: - "68" status: 200 OK code: 200 - duration: 57.52599ms + duration: 55.447531ms - id: 3 request: proto: HTTP/1.1 @@ -174,7 +154,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/502a4d25-0c13-44ff-8bf5-5918146b16ca + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/049f2263-f596-4861-9ee1-dd8134efdc26 method: GET response: proto: HTTP/2.0 @@ -184,29 +164,21 @@ interactions: trailer: {} content_length: 420 uncompressed: false - 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"}' + body: '{"id":"049f2263-f596-4861-9ee1-dd8134efdc26", "name":"TestAccPrivateNIC_Tags", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.250125Z", "updated_at":"2025-10-29T22:54:23.250125Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":0, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "420" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 383cd457-f885-45db-a580-f8745fb99052 + - 96860d65-4d20-4e41-acdd-a05d6366ecae status: 200 OK code: 200 - duration: 23.046432ms + duration: 26.094444ms - id: 4 request: proto: HTTP/1.1 @@ -219,7 +191,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -231,31 +211,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b28756f4-adf5-4afc-bcd3-20d24725f8a8 + - cb0e49ae-f07b-433e-9086-981e0c3a9321 status: 200 OK code: 200 - duration: 46.639888ms + duration: 38.177999ms - id: 5 request: proto: HTTP/1.1 @@ -267,7 +239,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - 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}' + body: '{"name":"TestAccScalewayInstancePrivateNIC_Tags","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26","default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -284,29 +256,21 @@ interactions: trailer: {} content_length: 1108 uncompressed: false - 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"}' + body: '{"id":"c0b88e63-53f0-4129-a832-aa096304ea35", "name":"TestAccScalewayInstancePrivateNIC_Tags", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"e58163ed-9a2f-41cd-b078-96f16cb81970", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"c0b88e63-53f0-4129-a832-aa096304ea35", "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26"}, {"id":"9d118603-1e20-43c1-a581-f18923217b9e", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "subnet":"fd5f:519c:6d46:d3f3::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"c0b88e63-53f0-4129-a832-aa096304ea35", "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26"}], "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - "1108" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 11dd4650-1caa-49c9-884d-0f09b235e0cf + - 84ed1226-428e-4f53-a0b6-df4116a6bf5c status: 200 OK code: 200 - duration: 623.774326ms + duration: 618.776296ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/97608715-a3a6-4d99-a2a0-f6c868534046 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c0b88e63-53f0-4129-a832-aa096304ea35 method: GET response: proto: HTTP/2.0 @@ -333,41 +297,33 @@ interactions: trailer: {} content_length: 1108 uncompressed: false - 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"}' + body: '{"id":"c0b88e63-53f0-4129-a832-aa096304ea35", "name":"TestAccScalewayInstancePrivateNIC_Tags", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"e58163ed-9a2f-41cd-b078-96f16cb81970", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"c0b88e63-53f0-4129-a832-aa096304ea35", "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26"}, {"id":"9d118603-1e20-43c1-a581-f18923217b9e", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "subnet":"fd5f:519c:6d46:d3f3::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"c0b88e63-53f0-4129-a832-aa096304ea35", "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26"}], "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - "1108" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 88378d62-3a12-40c7-a50e-a627594c1508 + - d220ab8b-31d7-4927-9067-e264ee774504 status: 200 OK code: 200 - duration: 21.082561ms + duration: 25.193008ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 236 + content_length: 240 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-distracted-hugle","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,33 +338,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1796 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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1742" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1796" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:54:24 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a5f5125a-3d5c-45c5-810a-6b999b250167 + - 839b28b2-344b-4505-9c4b-c2fea9e6284f status: 201 Created code: 201 - duration: 1.390871112s + duration: 1.077950564s - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1796 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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1742" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1796" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 17b8f9d9-46df-476d-ada5-97a139c8603b + - 2df93e6b-e19b-43d2-b8bb-475a160bf020 status: 200 OK code: 200 - duration: 144.99726ms + duration: 148.374605ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -482,31 +422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1796 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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1742" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1796" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9faa3334-a497-4e4a-910a-cd24fca2af8c + - 562aa666-7317-4d02-ac7c-3119d10fcefb status: 200 OK code: 200 - duration: 151.951355ms + duration: 130.536639ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -531,31 +463,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1796 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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1742" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1796" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b6b7e3b0-5711-4d04-ba78-85ab0dd429e1 + - b1c1f32d-87c7-4f24-b4b5-cf1f80809e04 status: 200 OK code: 200 - duration: 129.235182ms + duration: 147.191733ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: GET response: proto: HTTP/2.0 @@ -582,29 +506,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "447bf1db-5e8c-4d79-999e-68acbcb9196e"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c389fe2f-9c2f-483c-b4aa-f580c069b2bb + - efd48451-991d-4cb9-aade-bb232291777b status: 404 Not Found code: 404 - duration: 25.917503ms + duration: 33.966044ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: GET response: proto: HTTP/2.0 @@ -631,29 +547,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"447bf1db-5e8c-4d79-999e-68acbcb9196e", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:24.046603Z", "updated_at":"2025-10-29T22:54:24.046603Z", "references":[{"id":"70ac7336-34f6-42df-96cf-01f39541a637", "product_resource_type":"instance_server", "product_resource_id":"1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "created_at":"2025-10-29T22:54:24.046603Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:23 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 810d611e-4d2d-4780-8c74-6581c25b7083 + - 4697da19-676d-4f71-9d45-186a7840a5bd status: 200 OK code: 200 - duration: 96.295579ms + duration: 92.659925ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/user_data method: GET response: proto: HTTP/2.0 @@ -680,29 +588,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:23 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e797025a-ceec-4803-b629-e63f0cdd86d8 + - 47d0ed06-234d-4ef3-801d-3ff9d3adcc5e status: 200 OK code: 200 - duration: 110.592704ms + duration: 110.805685ms - id: 14 request: proto: HTTP/1.1 @@ -719,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/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics method: GET response: proto: HTTP/2.0 @@ -729,33 +629,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:23 GMT + - Wed, 29 Oct 2025 22:54:25 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a9a16b42-676c-4f5a-9980-ac5b64b0cf28 + - 40120871-31b1-42b4-9e97-9af9ada1cbb4 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.902838ms + duration: 96.439352ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -780,31 +672,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1750 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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1742" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1750" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7403d82e-3929-4697-affb-b1c0f5010873 + - d201d96f-c18b-46c7-842a-af8edc29fc0c status: 200 OK code: 200 - duration: 153.943148ms + duration: 129.960603ms - id: 16 request: proto: HTTP/1.1 @@ -816,14 +700,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046"}' + body: '{"private_network_id":"c0b88e63-53f0-4129-a832-aa096304ea35"}' 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/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics method: POST response: proto: HTTP/2.0 @@ -833,29 +717,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:25.600456+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9eb184a6-9ab1-4c3d-b29b-b686e9f9c2d7 + - 8970332b-a860-4fc7-a6a3-c2b3e7c10cb0 status: 201 Created code: 201 - duration: 560.283883ms + duration: 587.806228ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +748,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: GET response: proto: HTTP/2.0 @@ -882,29 +758,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:25.600456+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1fd8168a-bdf0-4bf9-a479-0c57cc5a68c4 + - a7f03ae7-f725-46ff-9170-ee57f4be622a status: 200 OK code: 200 - duration: 94.989353ms + duration: 112.336528ms - id: 18 request: proto: HTTP/1.1 @@ -921,7 +789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: GET response: proto: HTTP/2.0 @@ -931,29 +799,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:25.600456+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5038316c-4491-487f-8da9-69e3974f4a7a + - 4aa82dd3-9a77-4d41-8c7a-7cdbac89e990 status: 200 OK code: 200 - duration: 90.875493ms + duration: 95.665505ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +830,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -978,31 +838,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2200 + content_length: 2208 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":[{"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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:25.600456+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2200" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2208" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e72596d-dad0-4b58-aec3-e3f64a3e662a + - 8043d4d7-330a-407c-8d62-dbbf7231741d status: 200 OK code: 200 - duration: 132.453305ms + duration: 131.430472ms - id: 20 request: proto: HTTP/1.1 @@ -1015,11 +867,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - c0b88e63-53f0-4129-a832-aa096304ea35 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 8845a971-e19e-46fe-be89-b7da8cd97ea2 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=c0b88e63-53f0-4129-a832-aa096304ea35&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1027,31 +889,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"6652987c-5513-4769-adbb-0ff9b804d3a5", "address":"fd5f:519c:6d46:d3f3:eeb4:ceef:59f7:3965/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:25.844610Z", "updated_at":"2025-10-29T22:54:25.844610Z", "source":{"subnet_id":"9d118603-1e20-43c1-a581-f18923217b9e"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fa7440e0-1621-4a43-879d-fe2daf7ebb24", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:25.686232Z", "updated_at":"2025-10-29T22:54:25.686232Z", "source":{"subnet_id":"e58163ed-9a2f-41cd-b078-96f16cb81970"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1068" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0e800930-00fa-41aa-807f-598c93031336 + - 8b607abb-b42a-4e99-8c41-0ab468162362 status: 200 OK code: 200 - duration: 50.831074ms + duration: 44.329111ms - id: 21 request: proto: HTTP/1.1 @@ -1068,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/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: GET response: proto: HTTP/2.0 @@ -1078,29 +932,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:25.600456+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c209d409-e63f-45a7-aa76-4d6b3ea78d13 + - cdfe7997-ef12-420e-a7bc-df032ec7f6ab status: 200 OK code: 200 - duration: 109.568737ms + duration: 101.824992ms - id: 22 request: proto: HTTP/1.1 @@ -1117,7 +963,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/502a4d25-0c13-44ff-8bf5-5918146b16ca + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/049f2263-f596-4861-9ee1-dd8134efdc26 method: GET response: proto: HTTP/2.0 @@ -1127,29 +973,21 @@ interactions: trailer: {} content_length: 420 uncompressed: false - 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"}' + body: '{"id":"049f2263-f596-4861-9ee1-dd8134efdc26", "name":"TestAccPrivateNIC_Tags", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.250125Z", "updated_at":"2025-10-29T22:54:23.250125Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "420" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e2ff8e9-94e7-4040-a3d9-ec134d6fddc5 + - 40df8f15-c40f-447f-8de1-54d3dae15e67 status: 200 OK code: 200 - duration: 34.254538ms + duration: 28.280812ms - id: 23 request: proto: HTTP/1.1 @@ -1166,7 +1004,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/97608715-a3a6-4d99-a2a0-f6c868534046 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c0b88e63-53f0-4129-a832-aa096304ea35 method: GET response: proto: HTTP/2.0 @@ -1176,29 +1014,21 @@ interactions: trailer: {} content_length: 1108 uncompressed: false - 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"}' + body: '{"id":"c0b88e63-53f0-4129-a832-aa096304ea35", "name":"TestAccScalewayInstancePrivateNIC_Tags", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"e58163ed-9a2f-41cd-b078-96f16cb81970", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"c0b88e63-53f0-4129-a832-aa096304ea35", "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26"}, {"id":"9d118603-1e20-43c1-a581-f18923217b9e", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "subnet":"fd5f:519c:6d46:d3f3::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"c0b88e63-53f0-4129-a832-aa096304ea35", "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26"}], "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - "1108" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 146e6b40-33be-447e-9eec-9989b3315c3b + - 6fb24fe3-b2dc-458d-b84a-434acbcfc4a3 status: 200 OK code: 200 - duration: 26.533908ms + duration: 29.59491ms - id: 24 request: proto: HTTP/1.1 @@ -1215,7 +1045,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -1223,31 +1053,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2200 + content_length: 2254 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":[{"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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:25.600456+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2200" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2254" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aac4ef69-27b8-4797-bbc8-e347ee4b74d9 + - e6a3c054-857d-4735-9048-857801b22819 status: 200 OK code: 200 - duration: 137.801208ms + duration: 151.905409ms - id: 25 request: proto: HTTP/1.1 @@ -1264,7 +1086,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: GET response: proto: HTTP/2.0 @@ -1274,29 +1096,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "447bf1db-5e8c-4d79-999e-68acbcb9196e"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9f37e4ce-4e1e-4d60-b490-72ffe56cbf13 + - 96bfeffe-b291-4fbd-9ac1-857fc745036e status: 404 Not Found code: 404 - duration: 27.795512ms + duration: 33.665812ms - id: 26 request: proto: HTTP/1.1 @@ -1313,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/block/v1alpha1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: GET response: proto: HTTP/2.0 @@ -1323,29 +1137,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"447bf1db-5e8c-4d79-999e-68acbcb9196e", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:24.046603Z", "updated_at":"2025-10-29T22:54:24.046603Z", "references":[{"id":"70ac7336-34f6-42df-96cf-01f39541a637", "product_resource_type":"instance_server", "product_resource_id":"1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "created_at":"2025-10-29T22:54:24.046603Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3d72cd64-3247-437c-afc3-4bd1d2c9ef23 + - 46fce9ed-532a-4feb-9f06-536ed396a26b status: 200 OK code: 200 - duration: 94.605914ms + duration: 97.828689ms - id: 27 request: proto: HTTP/1.1 @@ -1362,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/b87b4df2-b953-4b58-a18a-065774f5cd53/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/user_data method: GET response: proto: HTTP/2.0 @@ -1372,29 +1178,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 58ed46c2-f175-444b-9747-cbf04d0e50ac + - d28421c3-b08b-47f3-b34c-d31331839b63 status: 200 OK code: 200 - duration: 92.899657ms + duration: 92.270928ms - id: 28 request: proto: HTTP/1.1 @@ -1411,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/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics method: GET response: proto: HTTP/2.0 @@ -1421,33 +1219,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:25.600456+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54:27 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1ac737e5-ee27-42ec-b1c3-a65350ba65b2 + - 5adb68fc-96b5-42d6-83ea-33542911af5d X-Total-Count: - "1" status: 200 OK code: 200 - duration: 88.776629ms + duration: 91.835364ms - id: 29 request: proto: HTTP/1.1 @@ -1460,11 +1250,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 8845a971-e19e-46fe-be89-b7da8cd97ea2 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=8a958753-4198-46c8-8527-d082156da7cb&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=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1472,31 +1270,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"6652987c-5513-4769-adbb-0ff9b804d3a5", "address":"fd5f:519c:6d46:d3f3:eeb4:ceef:59f7:3965/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:25.844610Z", "updated_at":"2025-10-29T22:54:25.844610Z", "source":{"subnet_id":"9d118603-1e20-43c1-a581-f18923217b9e"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fa7440e0-1621-4a43-879d-fe2daf7ebb24", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:25.686232Z", "updated_at":"2025-10-29T22:54:25.686232Z", "source":{"subnet_id":"e58163ed-9a2f-41cd-b078-96f16cb81970"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1068" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d9590732-2080-440f-a8b2-e699fe5579d2 + - 82d6d2bb-268a-42a5-ab8f-43ed4d76d92c status: 200 OK code: 200 - duration: 24.391513ms + duration: 31.485394ms - id: 30 request: proto: HTTP/1.1 @@ -1513,7 +1303,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: GET response: proto: HTTP/2.0 @@ -1523,29 +1313,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:25.600456+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7faade8a-c45c-42f4-baad-b6a809473c4f + - 8377e169-d85c-4e9e-b2be-e8f78732da91 status: 200 OK code: 200 - duration: 112.800424ms + duration: 90.495057ms - id: 31 request: proto: HTTP/1.1 @@ -1562,7 +1344,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -1570,31 +1352,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2200 + content_length: 2208 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":[{"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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:25.600456+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2200" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2208" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5bc2806e-ce19-4344-9621-e2da18de5de1 + - 8948ffc1-4f7c-4f4e-a0d5-23ea675c55cf status: 200 OK code: 200 - duration: 164.485448ms + duration: 136.581334ms - id: 32 request: proto: HTTP/1.1 @@ -1607,11 +1381,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - c0b88e63-53f0-4129-a832-aa096304ea35 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 8845a971-e19e-46fe-be89-b7da8cd97ea2 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=c0b88e63-53f0-4129-a832-aa096304ea35&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1619,31 +1403,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"6652987c-5513-4769-adbb-0ff9b804d3a5", "address":"fd5f:519c:6d46:d3f3:eeb4:ceef:59f7:3965/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:25.844610Z", "updated_at":"2025-10-29T22:54:25.844610Z", "source":{"subnet_id":"9d118603-1e20-43c1-a581-f18923217b9e"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fa7440e0-1621-4a43-879d-fe2daf7ebb24", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:25.686232Z", "updated_at":"2025-10-29T22:54:25.686232Z", "source":{"subnet_id":"e58163ed-9a2f-41cd-b078-96f16cb81970"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1068" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fc6635f9-ee80-4e8f-b18a-bc7c16ad4199 + - e951968a-bde1-49c7-883a-e87cf006dd70 status: 200 OK code: 200 - duration: 55.626542ms + duration: 64.537629ms - id: 33 request: proto: HTTP/1.1 @@ -1660,7 +1436,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/502a4d25-0c13-44ff-8bf5-5918146b16ca + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/049f2263-f596-4861-9ee1-dd8134efdc26 method: GET response: proto: HTTP/2.0 @@ -1670,29 +1446,21 @@ interactions: trailer: {} content_length: 420 uncompressed: false - 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"}' + body: '{"id":"049f2263-f596-4861-9ee1-dd8134efdc26", "name":"TestAccPrivateNIC_Tags", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.250125Z", "updated_at":"2025-10-29T22:54:23.250125Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "420" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 129ec86e-e0df-4808-a068-c6cb157d48b7 + - 3e3b8f39-f3a1-45eb-b9e9-d33a6cba3147 status: 200 OK code: 200 - duration: 35.157952ms + duration: 28.165106ms - id: 34 request: proto: HTTP/1.1 @@ -1709,7 +1477,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/97608715-a3a6-4d99-a2a0-f6c868534046 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c0b88e63-53f0-4129-a832-aa096304ea35 method: GET response: proto: HTTP/2.0 @@ -1719,29 +1487,21 @@ interactions: trailer: {} content_length: 1108 uncompressed: false - 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"}' + body: '{"id":"c0b88e63-53f0-4129-a832-aa096304ea35", "name":"TestAccScalewayInstancePrivateNIC_Tags", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"e58163ed-9a2f-41cd-b078-96f16cb81970", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"c0b88e63-53f0-4129-a832-aa096304ea35", "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26"}, {"id":"9d118603-1e20-43c1-a581-f18923217b9e", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "subnet":"fd5f:519c:6d46:d3f3::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"c0b88e63-53f0-4129-a832-aa096304ea35", "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26"}], "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - "1108" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 468cb8d7-2157-40b3-8981-703ab477c302 + - e921a3e5-6111-418d-8a2c-b729ad2a3494 status: 200 OK code: 200 - duration: 29.457448ms + duration: 29.149286ms - id: 35 request: proto: HTTP/1.1 @@ -1758,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/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -1766,31 +1526,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2200 + content_length: 2254 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":[{"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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:25.600456+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2200" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2254" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - df5965b0-ff58-4035-9eb6-64185c5c5460 + - db8c5cf4-4087-47b3-9466-53c9097f9bf0 status: 200 OK code: 200 - duration: 149.409786ms + duration: 144.015324ms - id: 36 request: proto: HTTP/1.1 @@ -1807,7 +1559,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: GET response: proto: HTTP/2.0 @@ -1817,29 +1569,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "447bf1db-5e8c-4d79-999e-68acbcb9196e"}' 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f65a6843-4df1-4bc2-b817-183614cd1c4c + - ea19df52-0bde-4503-85db-6ba4920c9c52 status: 404 Not Found code: 404 - duration: 27.845035ms + duration: 36.011338ms - id: 37 request: proto: HTTP/1.1 @@ -1856,7 +1600,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: GET response: proto: HTTP/2.0 @@ -1866,29 +1610,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"447bf1db-5e8c-4d79-999e-68acbcb9196e", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:24.046603Z", "updated_at":"2025-10-29T22:54:24.046603Z", "references":[{"id":"70ac7336-34f6-42df-96cf-01f39541a637", "product_resource_type":"instance_server", "product_resource_id":"1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "created_at":"2025-10-29T22:54:24.046603Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - af1f02e2-99ea-4fd1-827f-6987df962c9d + - 5d13194f-d475-43d7-8e76-cfcce5652207 status: 200 OK code: 200 - duration: 77.755856ms + duration: 96.950377ms - id: 38 request: proto: HTTP/1.1 @@ -1905,7 +1641,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/user_data method: GET response: proto: HTTP/2.0 @@ -1915,29 +1651,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dc0c17a9-33dd-4cf5-a283-31153487a1a7 + - ee848c92-8cf3-4bf2-ae40-45aa31fd39f7 status: 200 OK code: 200 - duration: 88.712871ms + duration: 91.510006ms - id: 39 request: proto: HTTP/1.1 @@ -1954,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/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics method: GET response: proto: HTTP/2.0 @@ -1964,33 +1692,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:25.600456+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54:28 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 43f7df30-01e7-4732-91ec-8fb2394feb33 + - 5ac25889-3ec1-428b-b9ed-fed596510ad3 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 110.517166ms + duration: 92.085661ms - id: 40 request: proto: HTTP/1.1 @@ -2003,11 +1723,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 8845a971-e19e-46fe-be89-b7da8cd97ea2 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=8a958753-4198-46c8-8527-d082156da7cb&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=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2015,31 +1743,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"6652987c-5513-4769-adbb-0ff9b804d3a5", "address":"fd5f:519c:6d46:d3f3:eeb4:ceef:59f7:3965/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:25.844610Z", "updated_at":"2025-10-29T22:54:25.844610Z", "source":{"subnet_id":"9d118603-1e20-43c1-a581-f18923217b9e"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fa7440e0-1621-4a43-879d-fe2daf7ebb24", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:25.686232Z", "updated_at":"2025-10-29T22:54:25.686232Z", "source":{"subnet_id":"e58163ed-9a2f-41cd-b078-96f16cb81970"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1068" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2eaab452-0ef9-495b-86a5-3ef64b37bf20 + - 0595df2f-7489-4585-898a-cd974150a6b6 status: 200 OK code: 200 - duration: 22.251373ms + duration: 48.026365ms - id: 41 request: proto: HTTP/1.1 @@ -2056,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/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: GET response: proto: HTTP/2.0 @@ -2066,29 +1786,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:25.600456+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c89aad72-2750-4fad-9708-056980af491e + - ad6827a7-449f-4a19-9448-9e1c76a7c566 status: 200 OK code: 200 - duration: 109.618171ms + duration: 122.171199ms - id: 42 request: proto: HTTP/1.1 @@ -2105,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/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -2113,31 +1825,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2200 + content_length: 2254 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":[{"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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:25.600456+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2200" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2254" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ec906f2b-ea65-4345-bf83-eca0b632ca76 + - 915670fe-b232-4e88-9652-9490be914959 status: 200 OK code: 200 - duration: 163.115743ms + duration: 144.912854ms - id: 43 request: proto: HTTP/1.1 @@ -2150,11 +1854,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - c0b88e63-53f0-4129-a832-aa096304ea35 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 8845a971-e19e-46fe-be89-b7da8cd97ea2 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=c0b88e63-53f0-4129-a832-aa096304ea35&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2162,31 +1876,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"6652987c-5513-4769-adbb-0ff9b804d3a5", "address":"fd5f:519c:6d46:d3f3:eeb4:ceef:59f7:3965/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:25.844610Z", "updated_at":"2025-10-29T22:54:25.844610Z", "source":{"subnet_id":"9d118603-1e20-43c1-a581-f18923217b9e"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fa7440e0-1621-4a43-879d-fe2daf7ebb24", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:25.686232Z", "updated_at":"2025-10-29T22:54:25.686232Z", "source":{"subnet_id":"e58163ed-9a2f-41cd-b078-96f16cb81970"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1068" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c563a264-2b1a-4f95-818a-41a337a108cb + - 962a3d61-eafb-4079-b2e1-fb2b5bfa69da status: 200 OK code: 200 - duration: 59.359549ms + duration: 49.4358ms - id: 44 request: proto: HTTP/1.1 @@ -2205,7 +1911,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/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: PATCH response: proto: HTTP/2.0 @@ -2215,29 +1921,21 @@ interactions: trailer: {} content_length: 489 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:28.809174+00:00", "zone": "fr-par-1", "tags": ["tag1", "tag2"], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "489" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9ba3bc16-77cc-401b-89e1-5c8d8cd89536 + - 3154597d-e6b6-441d-946d-1940b224e189 status: 200 OK code: 200 - duration: 171.389149ms + duration: 167.06156ms - id: 45 request: proto: HTTP/1.1 @@ -2254,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/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: GET response: proto: HTTP/2.0 @@ -2264,29 +1962,21 @@ interactions: trailer: {} content_length: 489 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:28.809174+00:00", "zone": "fr-par-1", "tags": ["tag1", "tag2"], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "489" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3553399a-b316-4462-85cf-04502d372770 + - 8b6844ac-5559-4841-b48c-bd040944554c status: 200 OK code: 200 - duration: 104.478038ms + duration: 116.046376ms - id: 46 request: proto: HTTP/1.1 @@ -2303,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/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -2311,31 +2001,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2214 + content_length: 2222 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":[{"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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:28.809174+00:00", "zone": "fr-par-1", "tags": ["tag1", "tag2"], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2214" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2222" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 780385ad-0efa-4a53-a0df-603c351adfa5 + - 0500ea33-107a-4e30-b2f1-a28013961e20 status: 200 OK code: 200 - duration: 151.589463ms + duration: 148.222493ms - id: 47 request: proto: HTTP/1.1 @@ -2348,11 +2030,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - c0b88e63-53f0-4129-a832-aa096304ea35 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 8845a971-e19e-46fe-be89-b7da8cd97ea2 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=c0b88e63-53f0-4129-a832-aa096304ea35&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2360,31 +2052,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"6652987c-5513-4769-adbb-0ff9b804d3a5", "address":"fd5f:519c:6d46:d3f3:eeb4:ceef:59f7:3965/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:25.844610Z", "updated_at":"2025-10-29T22:54:25.844610Z", "source":{"subnet_id":"9d118603-1e20-43c1-a581-f18923217b9e"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fa7440e0-1621-4a43-879d-fe2daf7ebb24", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:25.686232Z", "updated_at":"2025-10-29T22:54:25.686232Z", "source":{"subnet_id":"e58163ed-9a2f-41cd-b078-96f16cb81970"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1068" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a1bfea58-1e9c-4aa7-aad6-8a7c5549a3f8 + - bcde6c74-0f84-4282-af12-686e6dafddc7 status: 200 OK code: 200 - duration: 53.57069ms + duration: 44.664448ms - id: 48 request: proto: HTTP/1.1 @@ -2401,7 +2085,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: GET response: proto: HTTP/2.0 @@ -2411,29 +2095,21 @@ interactions: trailer: {} content_length: 489 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:28.809174+00:00", "zone": "fr-par-1", "tags": ["tag1", "tag2"], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "489" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6d003600-7760-4e65-a168-706b1b489d1b + - 213701b2-2f43-474a-b261-eb5ed8375d65 status: 200 OK code: 200 - duration: 106.212028ms + duration: 114.809904ms - id: 49 request: proto: HTTP/1.1 @@ -2450,7 +2126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/502a4d25-0c13-44ff-8bf5-5918146b16ca + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/049f2263-f596-4861-9ee1-dd8134efdc26 method: GET response: proto: HTTP/2.0 @@ -2460,29 +2136,21 @@ interactions: trailer: {} content_length: 420 uncompressed: false - 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"}' + body: '{"id":"049f2263-f596-4861-9ee1-dd8134efdc26", "name":"TestAccPrivateNIC_Tags", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.250125Z", "updated_at":"2025-10-29T22:54:23.250125Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "420" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cacc1ed1-34fe-47ac-bb7d-a92ebeef48d8 + - 09874dc6-caeb-4c32-968c-4eb0370caca1 status: 200 OK code: 200 - duration: 103.014606ms + duration: 30.697512ms - id: 50 request: proto: HTTP/1.1 @@ -2499,7 +2167,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/97608715-a3a6-4d99-a2a0-f6c868534046 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c0b88e63-53f0-4129-a832-aa096304ea35 method: GET response: proto: HTTP/2.0 @@ -2509,29 +2177,21 @@ interactions: trailer: {} content_length: 1108 uncompressed: false - 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"}' + body: '{"id":"c0b88e63-53f0-4129-a832-aa096304ea35", "name":"TestAccScalewayInstancePrivateNIC_Tags", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"e58163ed-9a2f-41cd-b078-96f16cb81970", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"c0b88e63-53f0-4129-a832-aa096304ea35", "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26"}, {"id":"9d118603-1e20-43c1-a581-f18923217b9e", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "subnet":"fd5f:519c:6d46:d3f3::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"c0b88e63-53f0-4129-a832-aa096304ea35", "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26"}], "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - "1108" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b7d177a6-7469-45b0-a203-1f06be84475a + - 0433b522-3777-4e91-83ca-fbc5c893c682 status: 200 OK code: 200 - duration: 26.10216ms + duration: 29.622091ms - id: 51 request: proto: HTTP/1.1 @@ -2548,7 +2208,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -2556,31 +2216,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2214 + content_length: 2268 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":[{"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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:28.809174+00:00", "zone": "fr-par-1", "tags": ["tag1", "tag2"], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2214" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2268" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - af999b0a-9bbe-4261-a7f6-939c2367e8d8 + - f70c1875-4fa4-4be8-956a-24b5f3f3227e status: 200 OK code: 200 - duration: 148.539346ms + duration: 131.961917ms - id: 52 request: proto: HTTP/1.1 @@ -2597,7 +2249,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: GET response: proto: HTTP/2.0 @@ -2607,29 +2259,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "447bf1db-5e8c-4d79-999e-68acbcb9196e"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 93c3b716-3be1-46a3-9f97-416ba40ae522 + - 557ccce2-e474-4212-be9a-62aee47b995a status: 404 Not Found code: 404 - duration: 28.043508ms + duration: 26.411517ms - id: 53 request: proto: HTTP/1.1 @@ -2646,7 +2290,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: GET response: proto: HTTP/2.0 @@ -2656,29 +2300,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"447bf1db-5e8c-4d79-999e-68acbcb9196e", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:24.046603Z", "updated_at":"2025-10-29T22:54:24.046603Z", "references":[{"id":"70ac7336-34f6-42df-96cf-01f39541a637", "product_resource_type":"instance_server", "product_resource_id":"1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "created_at":"2025-10-29T22:54:24.046603Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a51ddbdb-13ab-48c8-8912-5561c12eaf0c + - e311eb2c-2fc7-4159-90e7-0513e68c3596 status: 200 OK code: 200 - duration: 75.602482ms + duration: 86.04653ms - id: 54 request: proto: HTTP/1.1 @@ -2695,7 +2331,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/user_data method: GET response: proto: HTTP/2.0 @@ -2705,29 +2341,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f9a6d0b9-ad22-42b7-857c-0ede126c190a + - 552da1bc-6ac1-4bc9-a114-8aa6549a3c4c status: 200 OK code: 200 - duration: 127.339665ms + duration: 96.816919ms - id: 55 request: proto: HTTP/1.1 @@ -2744,7 +2372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics method: GET response: proto: HTTP/2.0 @@ -2754,33 +2382,25 @@ interactions: trailer: {} content_length: 492 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:28.809174+00:00", "zone": "fr-par-1", "tags": ["tag1", "tag2"], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}]}' headers: Content-Length: - "492" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54:30 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fe0b5351-f774-40c5-a966-4d5de074edfc + - 9de137b3-a509-4b63-a106-3a1cc7ce6674 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 97.847983ms + duration: 105.448229ms - id: 56 request: proto: HTTP/1.1 @@ -2793,11 +2413,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 8845a971-e19e-46fe-be89-b7da8cd97ea2 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=8a958753-4198-46c8-8527-d082156da7cb&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=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2805,31 +2433,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"6652987c-5513-4769-adbb-0ff9b804d3a5", "address":"fd5f:519c:6d46:d3f3:eeb4:ceef:59f7:3965/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:25.844610Z", "updated_at":"2025-10-29T22:54:25.844610Z", "source":{"subnet_id":"9d118603-1e20-43c1-a581-f18923217b9e"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fa7440e0-1621-4a43-879d-fe2daf7ebb24", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:25.686232Z", "updated_at":"2025-10-29T22:54:25.686232Z", "source":{"subnet_id":"e58163ed-9a2f-41cd-b078-96f16cb81970"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1068" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8ff1b6ba-cc8a-44ab-be4e-354f16cb593c + - fb511bcf-38eb-46cc-b543-8b4e7c06cfb6 status: 200 OK code: 200 - duration: 29.438703ms + duration: 24.679459ms - id: 57 request: proto: HTTP/1.1 @@ -2846,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/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: GET response: proto: HTTP/2.0 @@ -2856,29 +2476,21 @@ interactions: trailer: {} content_length: 489 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:28.809174+00:00", "zone": "fr-par-1", "tags": ["tag1", "tag2"], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "489" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6e63657c-94ce-42ec-b6a4-0babfa8b5071 + - 1e1ddf4d-34ba-491c-89fd-6bcd3d489843 status: 200 OK code: 200 - duration: 89.125776ms + duration: 86.558988ms - id: 58 request: proto: HTTP/1.1 @@ -2895,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/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -2903,31 +2515,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2214 + content_length: 2268 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":[{"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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:28.809174+00:00", "zone": "fr-par-1", "tags": ["tag1", "tag2"], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2214" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2268" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c2a90b8b-ed2c-4b4f-bd7c-c6ffc86d976c + - 47ba2d43-d004-4b8b-8de2-8f6200c578ba status: 200 OK code: 200 - duration: 154.650672ms + duration: 163.513777ms - id: 59 request: proto: HTTP/1.1 @@ -2940,11 +2544,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - c0b88e63-53f0-4129-a832-aa096304ea35 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 8845a971-e19e-46fe-be89-b7da8cd97ea2 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=c0b88e63-53f0-4129-a832-aa096304ea35&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2952,31 +2566,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"6652987c-5513-4769-adbb-0ff9b804d3a5", "address":"fd5f:519c:6d46:d3f3:eeb4:ceef:59f7:3965/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:25.844610Z", "updated_at":"2025-10-29T22:54:25.844610Z", "source":{"subnet_id":"9d118603-1e20-43c1-a581-f18923217b9e"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fa7440e0-1621-4a43-879d-fe2daf7ebb24", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:25.686232Z", "updated_at":"2025-10-29T22:54:25.686232Z", "source":{"subnet_id":"e58163ed-9a2f-41cd-b078-96f16cb81970"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1068" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fe0e3b61-f580-46b9-afd9-b5b77efe54cb + - 36435691-8f42-40d3-a36e-50f8c2307318 status: 200 OK code: 200 - duration: 76.034832ms + duration: 50.11962ms - id: 60 request: proto: HTTP/1.1 @@ -2993,7 +2599,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/502a4d25-0c13-44ff-8bf5-5918146b16ca + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/049f2263-f596-4861-9ee1-dd8134efdc26 method: GET response: proto: HTTP/2.0 @@ -3003,29 +2609,21 @@ interactions: trailer: {} content_length: 420 uncompressed: false - 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"}' + body: '{"id":"049f2263-f596-4861-9ee1-dd8134efdc26", "name":"TestAccPrivateNIC_Tags", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.250125Z", "updated_at":"2025-10-29T22:54:23.250125Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "420" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3a0f9489-53cc-4b6b-86aa-e67297d7e644 + - e36e40f8-941e-40df-be80-42d1264dc655 status: 200 OK code: 200 - duration: 31.882994ms + duration: 31.352186ms - id: 61 request: proto: HTTP/1.1 @@ -3042,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/vpc/v2/regions/fr-par/private-networks/97608715-a3a6-4d99-a2a0-f6c868534046 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c0b88e63-53f0-4129-a832-aa096304ea35 method: GET response: proto: HTTP/2.0 @@ -3052,29 +2650,21 @@ interactions: trailer: {} content_length: 1108 uncompressed: false - 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"}' + body: '{"id":"c0b88e63-53f0-4129-a832-aa096304ea35", "name":"TestAccScalewayInstancePrivateNIC_Tags", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"e58163ed-9a2f-41cd-b078-96f16cb81970", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"c0b88e63-53f0-4129-a832-aa096304ea35", "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26"}, {"id":"9d118603-1e20-43c1-a581-f18923217b9e", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "subnet":"fd5f:519c:6d46:d3f3::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"c0b88e63-53f0-4129-a832-aa096304ea35", "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26"}], "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - "1108" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dcc9420b-8c87-456c-ae53-8b51192a3409 + - f051fd78-33fa-4aac-9d81-4b59df9644a8 status: 200 OK code: 200 - duration: 22.038975ms + duration: 26.084005ms - id: 62 request: proto: HTTP/1.1 @@ -3091,7 +2681,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -3099,31 +2689,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2214 + content_length: 2268 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":[{"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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:28.809174+00:00", "zone": "fr-par-1", "tags": ["tag1", "tag2"], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2214" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2268" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - db2d5af5-1588-43a7-82ad-3d84a305c165 + - f1c1f85f-8234-4916-ba38-1f4f1391ea74 status: 200 OK code: 200 - duration: 157.334901ms + duration: 269.76656ms - id: 63 request: proto: HTTP/1.1 @@ -3140,7 +2722,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: GET response: proto: HTTP/2.0 @@ -3150,29 +2732,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "447bf1db-5e8c-4d79-999e-68acbcb9196e"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c53d66a0-08f8-4013-9d95-661e65b1a89d + - 981c12fb-6e65-4104-8f7e-466a138b9e99 status: 404 Not Found code: 404 - duration: 26.426107ms + duration: 28.728841ms - id: 64 request: proto: HTTP/1.1 @@ -3189,7 +2763,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: GET response: proto: HTTP/2.0 @@ -3199,29 +2773,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"447bf1db-5e8c-4d79-999e-68acbcb9196e", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:24.046603Z", "updated_at":"2025-10-29T22:54:24.046603Z", "references":[{"id":"70ac7336-34f6-42df-96cf-01f39541a637", "product_resource_type":"instance_server", "product_resource_id":"1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "created_at":"2025-10-29T22:54:24.046603Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:29 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1cd2d63b-47b0-42bc-831a-c0a2a9ece147 + - 9f6b9a6b-99c4-477d-934f-469607d81ee2 status: 200 OK code: 200 - duration: 78.619416ms + duration: 177.313432ms - id: 65 request: proto: HTTP/1.1 @@ -3238,7 +2804,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/user_data method: GET response: proto: HTTP/2.0 @@ -3248,29 +2814,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:29 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae40b16d-d1e2-4229-b5db-fcccac276023 + - e80aeec8-5853-40bb-892c-8c0871da9345 status: 200 OK code: 200 - duration: 112.831826ms + duration: 91.816109ms - id: 66 request: proto: HTTP/1.1 @@ -3287,7 +2845,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics method: GET response: proto: HTTP/2.0 @@ -3297,33 +2855,25 @@ interactions: trailer: {} content_length: 492 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:28.809174+00:00", "zone": "fr-par-1", "tags": ["tag1", "tag2"], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}]}' headers: Content-Length: - "492" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:29 GMT + - Wed, 29 Oct 2025 22:54:31 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 38c7a537-4dc5-4adc-a676-9ca76a550f91 + - 933813fd-3bb9-4c1c-a156-ed7c6d6ec5c9 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 102.635266ms + duration: 176.446901ms - id: 67 request: proto: HTTP/1.1 @@ -3336,11 +2886,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 8845a971-e19e-46fe-be89-b7da8cd97ea2 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=8a958753-4198-46c8-8527-d082156da7cb&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=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3348,31 +2906,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"6652987c-5513-4769-adbb-0ff9b804d3a5", "address":"fd5f:519c:6d46:d3f3:eeb4:ceef:59f7:3965/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:25.844610Z", "updated_at":"2025-10-29T22:54:25.844610Z", "source":{"subnet_id":"9d118603-1e20-43c1-a581-f18923217b9e"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fa7440e0-1621-4a43-879d-fe2daf7ebb24", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:25.686232Z", "updated_at":"2025-10-29T22:54:25.686232Z", "source":{"subnet_id":"e58163ed-9a2f-41cd-b078-96f16cb81970"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1068" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:29 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9c91c941-a9e9-48c2-943f-4bd761380928 + - 6d68c326-f922-4497-be5e-e01defbe8b39 status: 200 OK code: 200 - duration: 46.666882ms + duration: 61.770215ms - id: 68 request: proto: HTTP/1.1 @@ -3389,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/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: GET response: proto: HTTP/2.0 @@ -3399,29 +2949,21 @@ interactions: trailer: {} content_length: 489 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:28.809174+00:00", "zone": "fr-par-1", "tags": ["tag1", "tag2"], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "489" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:29 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a3c7efa6-c345-4940-9423-0986976c0af4 + - 9e8d0f42-5a43-4763-b036-732412ec2d18 status: 200 OK code: 200 - duration: 101.829827ms + duration: 200.184188ms - id: 69 request: proto: HTTP/1.1 @@ -3438,7 +2980,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -3446,31 +2988,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2214 + content_length: 2268 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":[{"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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:28.809174+00:00", "zone": "fr-par-1", "tags": ["tag1", "tag2"], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2214" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2268" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:29 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9f38c771-4393-4b0b-a701-15f9833c25eb + - 932b151d-c53a-4405-9ca2-1e11e15f52c4 status: 200 OK code: 200 - duration: 119.512027ms + duration: 144.667095ms - id: 70 request: proto: HTTP/1.1 @@ -3483,11 +3017,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - c0b88e63-53f0-4129-a832-aa096304ea35 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 8845a971-e19e-46fe-be89-b7da8cd97ea2 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=c0b88e63-53f0-4129-a832-aa096304ea35&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3495,31 +3039,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"6652987c-5513-4769-adbb-0ff9b804d3a5", "address":"fd5f:519c:6d46:d3f3:eeb4:ceef:59f7:3965/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:25.844610Z", "updated_at":"2025-10-29T22:54:25.844610Z", "source":{"subnet_id":"9d118603-1e20-43c1-a581-f18923217b9e"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fa7440e0-1621-4a43-879d-fe2daf7ebb24", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:25.686232Z", "updated_at":"2025-10-29T22:54:25.686232Z", "source":{"subnet_id":"e58163ed-9a2f-41cd-b078-96f16cb81970"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1068" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:29 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c992698e-42d6-4b2a-be6f-ad78f3cd07a1 + - 677c5139-c870-4fbe-98c2-2e516288820c status: 200 OK code: 200 - duration: 210.09237ms + duration: 162.130059ms - id: 71 request: proto: HTTP/1.1 @@ -3538,7 +3074,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/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: PATCH response: proto: HTTP/2.0 @@ -3548,29 +3084,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:32.308469+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:30 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4c22185c-d671-4d27-9aa2-aa61a4e47ada + - 25a64a56-fbe6-46c9-9cf2-fe816ca4e8ac status: 200 OK code: 200 - duration: 184.109935ms + duration: 367.866732ms - id: 72 request: proto: HTTP/1.1 @@ -3587,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/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: GET response: proto: HTTP/2.0 @@ -3597,29 +3125,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:32.308469+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:30 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a991a4b4-4fc9-46c4-952d-de69e3d2022c + - 6dade40e-d5bf-47ce-aad0-b2d63de8e2cc status: 200 OK code: 200 - duration: 121.405637ms + duration: 89.869579ms - id: 73 request: proto: HTTP/1.1 @@ -3636,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/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -3644,31 +3164,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2200 + content_length: 2208 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":[{"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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:32.308469+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2200" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2208" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:30 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - daef9319-fe62-4926-ad24-8bc893a0dd28 + - 9e883ca6-535d-4235-b89e-72f4b9f4e93b status: 200 OK code: 200 - duration: 154.065848ms + duration: 182.667203ms - id: 74 request: proto: HTTP/1.1 @@ -3681,11 +3193,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - c0b88e63-53f0-4129-a832-aa096304ea35 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 8845a971-e19e-46fe-be89-b7da8cd97ea2 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=c0b88e63-53f0-4129-a832-aa096304ea35&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3693,31 +3215,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"6652987c-5513-4769-adbb-0ff9b804d3a5", "address":"fd5f:519c:6d46:d3f3:eeb4:ceef:59f7:3965/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:25.844610Z", "updated_at":"2025-10-29T22:54:25.844610Z", "source":{"subnet_id":"9d118603-1e20-43c1-a581-f18923217b9e"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fa7440e0-1621-4a43-879d-fe2daf7ebb24", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:25.686232Z", "updated_at":"2025-10-29T22:54:25.686232Z", "source":{"subnet_id":"e58163ed-9a2f-41cd-b078-96f16cb81970"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1068" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:30 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fdf40f3d-dad9-446e-95fd-91aad2bbbeef + - 643004b5-995f-4b3b-aa19-926838de3351 status: 200 OK code: 200 - duration: 45.52405ms + duration: 54.649039ms - id: 75 request: proto: HTTP/1.1 @@ -3734,7 +3248,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: GET response: proto: HTTP/2.0 @@ -3744,29 +3258,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:32.308469+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:30 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8bf54a77-bf83-4f56-8d70-e53f0be85795 + - 9c87b2f6-b211-4310-8a9e-7b02555a66b4 status: 200 OK code: 200 - duration: 106.609116ms + duration: 214.557175ms - id: 76 request: proto: HTTP/1.1 @@ -3783,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/vpc/v2/regions/fr-par/vpcs/502a4d25-0c13-44ff-8bf5-5918146b16ca + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/049f2263-f596-4861-9ee1-dd8134efdc26 method: GET response: proto: HTTP/2.0 @@ -3793,29 +3299,21 @@ interactions: trailer: {} content_length: 420 uncompressed: false - 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"}' + body: '{"id":"049f2263-f596-4861-9ee1-dd8134efdc26", "name":"TestAccPrivateNIC_Tags", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.250125Z", "updated_at":"2025-10-29T22:54:23.250125Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "420" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:30 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0c4c8b89-cd9b-48c2-8505-028a319fa239 + - 9376813a-3197-47c6-a60f-69060bded898 status: 200 OK code: 200 - duration: 23.507968ms + duration: 27.785207ms - id: 77 request: proto: HTTP/1.1 @@ -3832,7 +3330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/97608715-a3a6-4d99-a2a0-f6c868534046 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c0b88e63-53f0-4129-a832-aa096304ea35 method: GET response: proto: HTTP/2.0 @@ -3842,29 +3340,21 @@ interactions: trailer: {} content_length: 1108 uncompressed: false - 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"}' + body: '{"id":"c0b88e63-53f0-4129-a832-aa096304ea35", "name":"TestAccScalewayInstancePrivateNIC_Tags", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"e58163ed-9a2f-41cd-b078-96f16cb81970", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"c0b88e63-53f0-4129-a832-aa096304ea35", "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26"}, {"id":"9d118603-1e20-43c1-a581-f18923217b9e", "created_at":"2025-10-29T22:54:23.384734Z", "updated_at":"2025-10-29T22:54:23.384734Z", "subnet":"fd5f:519c:6d46:d3f3::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"c0b88e63-53f0-4129-a832-aa096304ea35", "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26"}], "vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - "1108" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:30 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 963d627c-ab25-41fc-a3f3-2931b5a54327 + - 3e627eb5-ca80-4ff8-b0ba-7bba586099a7 status: 200 OK code: 200 - duration: 23.881308ms + duration: 173.337507ms - id: 78 request: proto: HTTP/1.1 @@ -3881,7 +3371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -3889,31 +3379,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2200 + content_length: 2208 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":[{"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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:32.308469+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2200" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2208" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:30 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0c97401c-4b24-4486-9281-bb2118a2b643 + - 505a1545-21fb-4718-b395-c4fe38c9be32 status: 200 OK code: 200 - duration: 150.64692ms + duration: 206.531608ms - id: 79 request: proto: HTTP/1.1 @@ -3930,7 +3412,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: GET response: proto: HTTP/2.0 @@ -3940,29 +3422,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "447bf1db-5e8c-4d79-999e-68acbcb9196e"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:30 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fe23ce75-0db3-40b4-9270-72ece14bc7ac + - ea4daafd-aef5-4b5f-a6f3-2e244cdd6e92 status: 404 Not Found code: 404 - duration: 27.510991ms + duration: 35.577447ms - id: 80 request: proto: HTTP/1.1 @@ -3979,7 +3453,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: GET response: proto: HTTP/2.0 @@ -3989,29 +3463,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"447bf1db-5e8c-4d79-999e-68acbcb9196e", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:24.046603Z", "updated_at":"2025-10-29T22:54:24.046603Z", "references":[{"id":"70ac7336-34f6-42df-96cf-01f39541a637", "product_resource_type":"instance_server", "product_resource_id":"1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "created_at":"2025-10-29T22:54:24.046603Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa7da06d-e280-4e17-a86b-115747405356 + - 9b1dc5fc-fa06-429f-83c3-d9b3831f8061 status: 200 OK code: 200 - duration: 94.929015ms + duration: 87.13724ms - id: 81 request: proto: HTTP/1.1 @@ -4028,7 +3494,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/user_data method: GET response: proto: HTTP/2.0 @@ -4038,29 +3504,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 79986144-7baf-4b8e-ab15-91036e4d9412 + - d010f61f-1e61-41cd-8cf3-9fc8535e2ec3 status: 200 OK code: 200 - duration: 104.676675ms + duration: 255.817789ms - id: 82 request: proto: HTTP/1.1 @@ -4077,7 +3535,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics method: GET response: proto: HTTP/2.0 @@ -4087,33 +3545,25 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:32.308469+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:31 GMT + - Wed, 29 Oct 2025 22:54:34 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 46994587-21a1-40d9-9e98-460c7216e52e + - 8acbf7ae-4baf-41e3-95e2-b6aab461f8fd X-Total-Count: - "1" status: 200 OK code: 200 - duration: 105.838062ms + duration: 275.286605ms - id: 83 request: proto: HTTP/1.1 @@ -4126,11 +3576,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 8845a971-e19e-46fe-be89-b7da8cd97ea2 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=8a958753-4198-46c8-8527-d082156da7cb&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=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4138,31 +3596,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"6652987c-5513-4769-adbb-0ff9b804d3a5", "address":"fd5f:519c:6d46:d3f3:eeb4:ceef:59f7:3965/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:25.844610Z", "updated_at":"2025-10-29T22:54:25.844610Z", "source":{"subnet_id":"9d118603-1e20-43c1-a581-f18923217b9e"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fa7440e0-1621-4a43-879d-fe2daf7ebb24", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:25.686232Z", "updated_at":"2025-10-29T22:54:25.686232Z", "source":{"subnet_id":"e58163ed-9a2f-41cd-b078-96f16cb81970"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1068" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d8160de9-d25d-452e-ad57-6554d6ced571 + - 33125098-8b7e-4bad-8ec3-e225b1d1580e status: 200 OK code: 200 - duration: 26.501689ms + duration: 28.837404ms - id: 84 request: proto: HTTP/1.1 @@ -4179,7 +3629,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: GET response: proto: HTTP/2.0 @@ -4189,29 +3639,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:32.308469+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 044d4899-4dde-4aa3-9bc8-e9de5180ae0e + - fe41029d-25ec-4a9c-91b4-fbd6a384fc55 status: 200 OK code: 200 - duration: 107.687678ms + duration: 235.037983ms - id: 85 request: proto: HTTP/1.1 @@ -4228,7 +3670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -4236,31 +3678,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2200 + content_length: 2254 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":[{"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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:32.308469+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2200" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2254" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6ff1a802-22ca-4281-93c3-b7079933ad95 + - 52589f05-39e5-4163-9555-5b7d9b9d3b64 status: 200 OK code: 200 - duration: 152.673038ms + duration: 274.446985ms - id: 86 request: proto: HTTP/1.1 @@ -4273,11 +3707,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - c0b88e63-53f0-4129-a832-aa096304ea35 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 8845a971-e19e-46fe-be89-b7da8cd97ea2 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=c0b88e63-53f0-4129-a832-aa096304ea35&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4285,31 +3729,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"6652987c-5513-4769-adbb-0ff9b804d3a5", "address":"fd5f:519c:6d46:d3f3:eeb4:ceef:59f7:3965/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:25.844610Z", "updated_at":"2025-10-29T22:54:25.844610Z", "source":{"subnet_id":"9d118603-1e20-43c1-a581-f18923217b9e"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fa7440e0-1621-4a43-879d-fe2daf7ebb24", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:25.686232Z", "updated_at":"2025-10-29T22:54:25.686232Z", "source":{"subnet_id":"e58163ed-9a2f-41cd-b078-96f16cb81970"}, "resource":{"type":"instance_private_nic", "id":"8845a971-e19e-46fe-be89-b7da8cd97ea2", "mac_address":"02:00:00:12:BF:FA", "name":"tf-srv-distracted-hugle"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1068" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 561e4b20-0301-4e14-a71e-9bee057382ff + - 9236222c-ea24-41b6-9728-641a7d397818 status: 200 OK code: 200 - duration: 43.225493ms + duration: 45.0127ms - id: 87 request: proto: HTTP/1.1 @@ -4326,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/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: GET response: proto: HTTP/2.0 @@ -4336,29 +3772,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "8845a971-e19e-46fe-be89-b7da8cd97ea2", "private_network_id": "c0b88e63-53f0-4129-a832-aa096304ea35", "server_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "mac_address": "02:00:00:12:bf:fa", "state": "available", "creation_date": "2025-10-29T22:54:25.362390+00:00", "modification_date": "2025-10-29T22:54:32.308469+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fa7440e0-1621-4a43-879d-fe2daf7ebb24", "6652987c-5513-4769-adbb-0ff9b804d3a5"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 48a5b8c9-b7a7-42f4-95ce-5b1651f05900 + - f71a3151-4f63-419c-b6b2-54abd53a00ba status: 200 OK code: 200 - duration: 87.312981ms + duration: 238.597841ms - id: 88 request: proto: HTTP/1.1 @@ -4375,7 +3803,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: DELETE response: proto: HTTP/2.0 @@ -4387,25 +3815,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:32 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - af0dfbde-db85-4531-b493-4721ca2badf2 + - 0831e260-12f0-424d-99db-18d03eaddc11 status: 204 No Content code: 204 - duration: 358.438855ms + duration: 329.599648ms - id: 89 request: proto: HTTP/1.1 @@ -4422,7 +3842,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: GET response: proto: HTTP/2.0 @@ -4432,29 +3852,21 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"8a958753-4198-46c8-8527-d082156da7cb","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_private_nic", "resource_id": "8845a971-e19e-46fe-be89-b7da8cd97ea2"}' headers: Content-Length: - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:32 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b81f9235-9b98-4818-881d-cdf95c9cb6e6 + - 8f4f1802-c41c-4c31-acac-c23e0effeca4 status: 404 Not Found code: 404 - duration: 100.600967ms + duration: 218.314692ms - id: 90 request: proto: HTTP/1.1 @@ -4471,7 +3883,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -4479,31 +3891,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1750 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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1742" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1750" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:32 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 44ebcd7f-0589-4693-88ae-4e9817053dc2 + - 7bafe5d5-82df-4e87-a452-f5480673f4fb status: 200 OK code: 200 - duration: 145.112741ms + duration: 263.157736ms - id: 91 request: proto: HTTP/1.1 @@ -4520,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/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -4528,31 +3932,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1796 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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:23.920787+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1742" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1796" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:32 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 429be305-5eff-4f7e-8fab-ff89eca6408a + - 446f6dad-6752-4b87-8747-322bd44ca865 status: 200 OK code: 200 - duration: 163.06609ms + duration: 273.156814ms - id: 92 request: proto: HTTP/1.1 @@ -4569,7 +3965,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: GET response: proto: HTTP/2.0 @@ -4579,29 +3975,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"447bf1db-5e8c-4d79-999e-68acbcb9196e", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:24.046603Z", "updated_at":"2025-10-29T22:54:24.046603Z", "references":[{"id":"70ac7336-34f6-42df-96cf-01f39541a637", "product_resource_type":"instance_server", "product_resource_id":"1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "created_at":"2025-10-29T22:54:24.046603Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:32 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d24c273a-4b61-41c9-90d3-5796bc09a8f9 + - fd01d873-b593-4a1a-87f4-0903ae28266e status: 200 OK code: 200 - duration: 79.427252ms + duration: 79.2916ms - id: 93 request: proto: HTTP/1.1 @@ -4620,7 +4008,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/b87b4df2-b953-4b58-a18a-065774f5cd53/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/action method: POST response: proto: HTTP/2.0 @@ -4630,31 +4018,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "17ca0294-f4dd-48b3-95af-e68815b36783", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/action", "href_result": "/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "started_at": "2025-10-29T22:54:36.843251+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:32 GMT + - Wed, 29 Oct 2025 22:54:36 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9e61e945-949d-4a6b-9612-86d2b3557690 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/17ca0294-f4dd-48b3-95af-e68815b36783 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9f59e94e-1a35-4a34-814c-417dd8ed9e92 + - e67ea1b2-026e-4f78-8ae9-77951636898d status: 202 Accepted code: 202 - duration: 280.990012ms + duration: 295.546521ms - id: 94 request: proto: HTTP/1.1 @@ -4671,39 +4051,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c0b88e63-53f0-4129-a832-aa096304ea35 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1764 + 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-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"}}' + body: "" headers: - Content-Length: - - "1764" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:33 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3237074f-caf5-4429-8aaf-07c3dbc367d6 - status: 200 OK - code: 200 - duration: 129.869823ms + - 423aec09-5923-409a-84cb-7cb43e445462 + status: 204 No Content + code: 204 + duration: 1.085481173s - id: 95 request: proto: HTTP/1.1 @@ -4720,37 +4090,31 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/97608715-a3a6-4d99-a2a0-f6c868534046 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1772 uncompressed: false - body: "" + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:36.613304+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "1772" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:33 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f25c0468-5de6-4634-b079-0706af4f2d4c - status: 204 No Content - code: 204 - duration: 1.178739211s + - 98729ce1-350e-44a9-a516-80826df7db5c + status: 200 OK + code: 200 + duration: 170.815764ms - id: 96 request: proto: HTTP/1.1 @@ -4767,7 +4131,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/502a4d25-0c13-44ff-8bf5-5918146b16ca + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/049f2263-f596-4861-9ee1-dd8134efdc26 method: DELETE response: proto: HTTP/2.0 @@ -4779,25 +4143,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:33 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cc9b1168-53c6-48f5-95a4-f31f987488b4 + - 5d6b56a4-7a40-401c-a81f-ea31e944d3b2 status: 204 No Content code: 204 - duration: 139.34391ms + duration: 264.056348ms - id: 97 request: proto: HTTP/1.1 @@ -4814,7 +4170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -4822,31 +4178,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1898 + 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":"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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:39.354863+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "401", "node_id": "41"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1898" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1952" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:38 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2d184a24-34c3-4aaa-8a03-681f6f459944 + - 40f3a1af-96d6-460f-a2fe-d6131730f177 status: 200 OK code: 200 - duration: 154.699938ms + duration: 201.116988ms - id: 98 request: proto: HTTP/1.1 @@ -4865,7 +4213,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/b87b4df2-b953-4b58-a18a-065774f5cd53/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/action method: POST response: proto: HTTP/2.0 @@ -4875,31 +4223,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "ed2064a3-2be0-4431-9a0f-f5743b42ba6e", "description": "server_terminate", "status": "pending", "href_from": "/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/action", "href_result": "/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "started_at": "2025-10-29T22:54:42.508964+00:00", "terminated_at": null, "progress": 0, "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:38 GMT + - Wed, 29 Oct 2025 22:54:42 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/24b9df79-9a5a-4b95-afcc-61358b7bf7b4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ed2064a3-2be0-4431-9a0f-f5743b42ba6e Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9ed6567f-e896-42d0-bc0a-664521fa5c10 + - 74562e8a-1cf6-43e7-97c6-7a9a95546548 status: 202 Accepted code: 202 - duration: 310.516698ms + duration: 306.617528ms - id: 99 request: proto: HTTP/1.1 @@ -4916,7 +4256,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -4924,31 +4264,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1861 + content_length: 1915 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: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"}}' + body: '{"server": {"id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01", "name": "tf-srv-distracted-hugle", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-distracted-hugle", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "447bf1db-5e8c-4d79-999e-68acbcb9196e", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:23.920787+00:00", "modification_date": "2025-10-29T22:54:42.281937+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "401", "node_id": "41"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1861" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1915" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:38 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c91d9add-48c3-40e3-a545-e4418a35e027 + - 21226c7b-8e78-4724-a04d-877d238d8bbf status: 200 OK code: 200 - duration: 147.447294ms + duration: 190.146634ms - id: 100 request: proto: HTTP/1.1 @@ -4965,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/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 method: GET response: proto: HTTP/2.0 @@ -4975,29 +4307,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:43 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e9aa177c-5b01-4453-8615-2a51f2576f13 + - b2039ba0-eb6c-42a2-889e-6db82e6b6b2e status: 404 Not Found code: 404 - duration: 42.22342ms + duration: 47.436604ms - id: 101 request: proto: HTTP/1.1 @@ -5014,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/instance/v1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: GET response: proto: HTTP/2.0 @@ -5024,29 +4348,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "447bf1db-5e8c-4d79-999e-68acbcb9196e"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:43 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 998ee682-68ea-4936-9515-30f74c836891 + - 8c68b17f-2926-4b57-b31d-2a6a2c5a82d7 status: 404 Not Found code: 404 - duration: 32.314206ms + duration: 32.848265ms - id: 102 request: proto: HTTP/1.1 @@ -5063,7 +4379,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: GET response: proto: HTTP/2.0 @@ -5073,29 +4389,21 @@ interactions: trailer: {} content_length: 498 uncompressed: false - 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"}' + body: '{"id":"447bf1db-5e8c-4d79-999e-68acbcb9196e", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:24.046603Z", "updated_at":"2025-10-29T22:54:44.230364Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:54:44.230364Z", "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:43 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 432acbc5-498a-4e3a-a4a1-1bc4ebcc5cca + - e73c0546-2694-4656-b634-f04325e4efd7 status: 200 OK code: 200 - duration: 86.292188ms + duration: 81.011649ms - id: 103 request: proto: HTTP/1.1 @@ -5112,7 +4420,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e method: DELETE response: proto: HTTP/2.0 @@ -5124,25 +4432,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 97ecfaa6-d4b9-4da2-bc21-4c4728f836ea + - 7d2b4d8b-e000-4285-b19c-95a8793abf2f status: 204 No Content code: 204 - duration: 186.755486ms + duration: 157.114257ms - id: 104 request: proto: HTTP/1.1 @@ -5159,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/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 method: GET response: proto: HTTP/2.0 @@ -5169,26 +4469,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ca5399fa-12bd-4879-9d3f-71dc161e942b + - ce272b38-9c88-4ba5-a755-f845f11e90f4 status: 404 Not Found code: 404 - duration: 35.663264ms + duration: 26.629616ms 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 a86ee72bf..caefcff85 100644 --- a/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml +++ b/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8a06d5f7-cf15-44bb-b972-1113b20bbdb0 + - d9e64ec9-afa4-4bdc-b61e-fc104a81e8f3 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 42.256082ms + duration: 38.19741ms - id: 1 request: proto: HTTP/1.1 @@ -82,29 +76,21 @@ interactions: trailer: {} content_length: 436 uncompressed: false - 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"}' + body: '{"id":"2abbfca1-8bd7-4df6-b165-193393029736", "name":"TestAccScalewayInstancePrivateNIC_IPAM", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:37.701747Z", "updated_at":"2025-10-29T22:53:37.701747Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":0, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8d23a16e-c308-413a-bd49-5aec33a8965a + - 549e37de-6470-4362-b2d5-0f68cf79bbf6 status: 200 OK code: 200 - duration: 64.078559ms + duration: 84.146093ms - id: 2 request: proto: HTTP/1.1 @@ -121,7 +107,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/ac7be18e-921a-4491-88bb-7d32dd1d4180 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2abbfca1-8bd7-4df6-b165-193393029736 method: GET response: proto: HTTP/2.0 @@ -131,29 +117,21 @@ interactions: trailer: {} content_length: 436 uncompressed: false - 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"}' + body: '{"id":"2abbfca1-8bd7-4df6-b165-193393029736", "name":"TestAccScalewayInstancePrivateNIC_IPAM", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:37.701747Z", "updated_at":"2025-10-29T22:53:37.701747Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":0, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e7d68336-e2ac-40ad-8882-98a12d71411a + - b0ac081f-0f36-45f2-b4c7-b17456d04181 status: 200 OK code: 200 - duration: 28.864274ms + duration: 25.109088ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +144,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -180,33 +160,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - abd30099-db4f-444b-8cba-81babe7ba78c + - 27af9078-87a2-42f7-a063-e8b4848e1640 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 50.663559ms + duration: 102.1413ms - id: 4 request: proto: HTTP/1.1 @@ -219,7 +191,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -231,31 +211,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 426bfb9d-5084-4226-b65b-6d32c5b5094e + - 53161cb1-76aa-44d7-a555-0be874603d32 status: 200 OK code: 200 - duration: 42.476344ms + duration: 55.49374ms - id: 5 request: proto: HTTP/1.1 @@ -267,7 +239,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - 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}' + body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736","default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -284,29 +256,21 @@ interactions: trailer: {} content_length: 1108 uncompressed: false - 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"}' + body: '{"id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44", "name":"TestAccScalewayInstancePrivateNIC_IPAM", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:37.858476Z", "updated_at":"2025-10-29T22:53:37.858476Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"c0acb41a-ffeb-4764-aa5c-efce9243faa4", "created_at":"2025-10-29T22:53:37.858476Z", "updated_at":"2025-10-29T22:53:37.858476Z", "subnet":"172.16.64.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44", "vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736"}, {"id":"3d29afca-9551-4906-aa92-3f5974524e07", "created_at":"2025-10-29T22:53:37.858476Z", "updated_at":"2025-10-29T22:53:37.858476Z", "subnet":"fd5f:519c:6d46:faa7::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44", "vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736"}], "vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - "1108" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2289cf1f-2ebc-4c1c-b233-760980d63e57 + - 9ce4256f-d786-4e84-9f0a-22913af00a5f status: 200 OK code: 200 - duration: 567.720511ms + duration: 620.248586ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/744dc9d8-76a1-4114-8197-e95b052545c4 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2cf19cd2-6dd5-426d-9862-81553bcc7c44 method: GET response: proto: HTTP/2.0 @@ -333,29 +297,21 @@ interactions: trailer: {} content_length: 1108 uncompressed: false - 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"}' + body: '{"id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44", "name":"TestAccScalewayInstancePrivateNIC_IPAM", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:37.858476Z", "updated_at":"2025-10-29T22:53:37.858476Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"c0acb41a-ffeb-4764-aa5c-efce9243faa4", "created_at":"2025-10-29T22:53:37.858476Z", "updated_at":"2025-10-29T22:53:37.858476Z", "subnet":"172.16.64.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44", "vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736"}, {"id":"3d29afca-9551-4906-aa92-3f5974524e07", "created_at":"2025-10-29T22:53:37.858476Z", "updated_at":"2025-10-29T22:53:37.858476Z", "subnet":"fd5f:519c:6d46:faa7::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44", "vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736"}], "vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - "1108" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5aa7fdcb-aa46-4b8d-82b4-4dba4bd1f8f6 + - 0c77fbd3-bfd8-4df6-9cb4-74d20e055e86 status: 200 OK code: 200 - duration: 24.571069ms + duration: 23.864671ms - id: 7 request: proto: HTTP/1.1 @@ -367,7 +323,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - 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":[]}' + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","source":{"private_network_id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44"},"is_ipv6":false,"address":"172.16.64.7","tags":[]}' form: {} headers: Content-Type: @@ -384,29 +340,21 @@ interactions: trailer: {} content_length: 369 uncompressed: false - 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}' + body: '{"id":"30e95f88-9a23-441c-acb7-520fc93698d0", "address":"172.16.64.7/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:38.564971Z", "updated_at":"2025-10-29T22:53:38.564971Z", "source":{"subnet_id":"c0acb41a-ffeb-4764-aa5c-efce9243faa4"}, "resource":null, "tags":[], "reverses":[], "region":"fr-par", "zone":null}' headers: Content-Length: - "369" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5cd60a3d-f17f-4a64-a901-a863c3fa6877 + - bf87bc1c-2371-4c9b-a11c-ece73023d08b status: 200 OK code: 200 - duration: 141.699959ms + duration: 186.005726ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/01bab74c-ac71-4273-a05e-6e314f7aa8cc + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/30e95f88-9a23-441c-acb7-520fc93698d0 method: GET response: proto: HTTP/2.0 @@ -433,29 +381,21 @@ interactions: trailer: {} content_length: 369 uncompressed: false - 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}' + body: '{"id":"30e95f88-9a23-441c-acb7-520fc93698d0", "address":"172.16.64.7/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:38.564971Z", "updated_at":"2025-10-29T22:53:38.564971Z", "source":{"subnet_id":"c0acb41a-ffeb-4764-aa5c-efce9243faa4"}, "resource":null, "tags":[], "reverses":[], "region":"fr-par", "zone":null}' headers: Content-Length: - "369" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 60b94e4f-caa9-44aa-83cf-8cddff89e67c + - fd94d20b-e884-4512-8b60-5d5f36f922b6 status: 200 OK code: 200 - duration: 24.25193ms + duration: 30.168287ms - id: 9 request: proto: HTTP/1.1 @@ -472,7 +412,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/744dc9d8-76a1-4114-8197-e95b052545c4 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2cf19cd2-6dd5-426d-9862-81553bcc7c44 method: GET response: proto: HTTP/2.0 @@ -482,29 +422,21 @@ interactions: trailer: {} content_length: 1108 uncompressed: false - 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"}' + body: '{"id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44", "name":"TestAccScalewayInstancePrivateNIC_IPAM", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:37.858476Z", "updated_at":"2025-10-29T22:53:37.858476Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"c0acb41a-ffeb-4764-aa5c-efce9243faa4", "created_at":"2025-10-29T22:53:37.858476Z", "updated_at":"2025-10-29T22:53:37.858476Z", "subnet":"172.16.64.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44", "vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736"}, {"id":"3d29afca-9551-4906-aa92-3f5974524e07", "created_at":"2025-10-29T22:53:37.858476Z", "updated_at":"2025-10-29T22:53:37.858476Z", "subnet":"fd5f:519c:6d46:faa7::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44", "vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736"}], "vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - "1108" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a9d87a6b-2b8d-4a3e-a2d6-2e8373fbce8a + - 501f90b9-4fe7-4507-85f1-784cc5827dba status: 200 OK code: 200 - duration: 30.672714ms + duration: 24.486113ms - id: 10 request: proto: HTTP/1.1 @@ -533,31 +465,23 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "name": "TestAccScalewayInstancePrivateNIC_IPAM", "arch": "x86_64", "commercial_type": "PLAY2-MICRO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "testaccscalewayinstanceprivatenic-ipam", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:57", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.449536+00:00", "modification_date": "2025-10-29T22:53:38.449536+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1777" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:53:39 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - beb6089b-7ca1-46a5-a3cc-4a20233535ec + - b27cdde5-04b3-443e-a008-f1eef80d26af status: 201 Created code: 201 - duration: 1.232633363s + duration: 1.679929758s - id: 11 request: proto: HTTP/1.1 @@ -574,7 +498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a method: GET response: proto: HTTP/2.0 @@ -584,29 +508,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "name": "TestAccScalewayInstancePrivateNIC_IPAM", "arch": "x86_64", "commercial_type": "PLAY2-MICRO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "testaccscalewayinstanceprivatenic-ipam", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:57", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.449536+00:00", "modification_date": "2025-10-29T22:53:38.449536+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1777" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3547ef5c-c32b-44cc-bcac-b450d9ad6147 + - f2ea2345-4cc5-45e7-8a3c-6196ce9c8272 status: 200 OK code: 200 - duration: 122.651551ms + duration: 355.158783ms - id: 12 request: proto: HTTP/1.1 @@ -623,7 +539,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a method: GET response: proto: HTTP/2.0 @@ -631,31 +547,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1777 + content_length: 1823 uncompressed: false - 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"}}' + body: '{"server": {"id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "name": "TestAccScalewayInstancePrivateNIC_IPAM", "arch": "x86_64", "commercial_type": "PLAY2-MICRO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "testaccscalewayinstanceprivatenic-ipam", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:57", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.449536+00:00", "modification_date": "2025-10-29T22:53:38.449536+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1777" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1823" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 223b0ff0-e4e2-453c-a5ec-7b39679847d4 + - a4239815-874d-4bee-bde5-cd7aad9b3cf3 status: 200 OK code: 200 - duration: 132.433234ms + duration: 143.866807ms - id: 13 request: proto: HTTP/1.1 @@ -672,7 +580,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a method: GET response: proto: HTTP/2.0 @@ -682,29 +590,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"9aa594db-ae68-4848-a017-1f48e4fc8b3a", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.594947Z", "updated_at":"2025-10-29T22:53:38.594947Z", "references":[{"id":"597af54f-bc16-472c-80c9-daeb054b218f", "product_resource_type":"instance_server", "product_resource_id":"b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "created_at":"2025-10-29T22:53:38.594947Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d24e192a-c772-413d-8f1a-232425b15603 + - d86f14a9-efd1-4dcd-b4a1-57bc1f1836b2 status: 200 OK code: 200 - duration: 82.099943ms + duration: 85.214732ms - id: 14 request: proto: HTTP/1.1 @@ -723,7 +623,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/5de4dda7-6e32-417a-89de-6ab9041ea2f5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/action method: POST response: proto: HTTP/2.0 @@ -733,31 +633,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "7d5a289b-2887-4422-9288-a66ecbcd214d", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/action", "href_result": "/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "started_at": "2025-10-29T22:53:40.346958+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:53:40 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/92c40a61-f868-4cd2-828b-84ef115dcba5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7d5a289b-2887-4422-9288-a66ecbcd214d Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5ddf3e83-4d4f-4cea-a004-814f85f47e8c + - b5d6a152-a898-4c26-ab41-7325b5d4b7d1 status: 202 Accepted code: 202 - duration: 300.735079ms + duration: 261.662518ms - id: 15 request: proto: HTTP/1.1 @@ -774,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/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a method: GET response: proto: HTTP/2.0 @@ -782,31 +674,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1799 + content_length: 1845 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-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"}}' + body: '{"server": {"id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "name": "TestAccScalewayInstancePrivateNIC_IPAM", "arch": "x86_64", "commercial_type": "PLAY2-MICRO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "testaccscalewayinstanceprivatenic-ipam", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:57", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.449536+00:00", "modification_date": "2025-10-29T22:53:40.151847+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1799" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1845" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bc9130eb-1245-4121-93c0-8737cb5c3c6f + - 417963b5-c52f-45e5-9d0d-f412942018c2 status: 200 OK code: 200 - duration: 120.098117ms + duration: 128.494224ms - id: 16 request: proto: HTTP/1.1 @@ -823,7 +707,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a method: GET response: proto: HTTP/2.0 @@ -831,31 +715,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1933 + content_length: 1979 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-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"}}' + body: '{"server": {"id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "name": "TestAccScalewayInstancePrivateNIC_IPAM", "arch": "x86_64", "commercial_type": "PLAY2-MICRO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "testaccscalewayinstanceprivatenic-ipam", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:57", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.449536+00:00", "modification_date": "2025-10-29T22:53:43.016409+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "901", "node_id": "172"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1933" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1979" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a53666a6-011f-4b3c-9447-6f987641feb5 + - db1b6a43-e1e1-465e-962e-b2d810500dc6 status: 200 OK code: 200 - duration: 130.435737ms + duration: 152.001239ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +748,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a method: GET response: proto: HTTP/2.0 @@ -880,31 +756,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1933 + content_length: 1979 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-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"}}' + body: '{"server": {"id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "name": "TestAccScalewayInstancePrivateNIC_IPAM", "arch": "x86_64", "commercial_type": "PLAY2-MICRO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "testaccscalewayinstanceprivatenic-ipam", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:57", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.449536+00:00", "modification_date": "2025-10-29T22:53:43.016409+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "901", "node_id": "172"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1933" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1979" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d8fff70f-3518-4263-8b9a-3f9f24b25a0d + - a1df2849-6e0e-45a9-a2b0-0ee6ccf004b1 status: 200 OK code: 200 - duration: 140.124605ms + duration: 161.410092ms - id: 18 request: proto: HTTP/1.1 @@ -921,7 +789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a method: GET response: proto: HTTP/2.0 @@ -931,29 +799,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7650f23e-0767-4264-9edd-5d9a9e692ae3 + - 05c7b409-f3ff-48d9-aa1d-254f351c73b7 status: 404 Not Found code: 404 - duration: 28.752176ms + duration: 30.722114ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +830,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a method: GET response: proto: HTTP/2.0 @@ -980,29 +840,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"9aa594db-ae68-4848-a017-1f48e4fc8b3a", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.594947Z", "updated_at":"2025-10-29T22:53:38.594947Z", "references":[{"id":"597af54f-bc16-472c-80c9-daeb054b218f", "product_resource_type":"instance_server", "product_resource_id":"b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "created_at":"2025-10-29T22:53:38.594947Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2076e61d-9afb-46ea-bc86-8f2a9eeb188c + - cf34de05-d2f0-4d5e-ac1b-c1d53ad4cae3 status: 200 OK code: 200 - duration: 93.491638ms + duration: 73.259669ms - id: 20 request: proto: HTTP/1.1 @@ -1019,7 +871,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/user_data method: GET response: proto: HTTP/2.0 @@ -1029,29 +881,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ba63df95-ae83-4aef-aaf9-f846109c2e98 + - f3c6cb06-129d-42ae-8d4e-fbd56b81a7ea status: 200 OK code: 200 - duration: 99.878047ms + duration: 104.538334ms - id: 21 request: proto: HTTP/1.1 @@ -1068,7 +912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics method: GET response: proto: HTTP/2.0 @@ -1078,33 +922,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 + - Wed, 29 Oct 2025 22:53:46 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5f54d448-f3dc-4f9c-aa6f-240c4678f03d + - 7cbde819-a553-4480-b739-740ae5492bbd X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.595706ms + duration: 96.082324ms - id: 22 request: proto: HTTP/1.1 @@ -1121,7 +957,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a method: GET response: proto: HTTP/2.0 @@ -1129,31 +965,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1933 + content_length: 1979 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-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"}}' + body: '{"server": {"id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "name": "TestAccScalewayInstancePrivateNIC_IPAM", "arch": "x86_64", "commercial_type": "PLAY2-MICRO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "testaccscalewayinstanceprivatenic-ipam", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:57", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.449536+00:00", "modification_date": "2025-10-29T22:53:43.016409+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "901", "node_id": "172"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1933" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1979" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 456415e4-6eea-4e5f-be67-cbe2c1f8172e + - daf83874-5097-48a0-9026-79346eaf5250 status: 200 OK code: 200 - duration: 140.638098ms + duration: 157.792237ms - id: 23 request: proto: HTTP/1.1 @@ -1165,14 +993,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"]}' + body: '{"private_network_id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44","ipam_ip_ids":["30e95f88-9a23-441c-acb7-520fc93698d0"]}' 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/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics method: POST response: proto: HTTP/2.0 @@ -1182,29 +1010,21 @@ interactions: trailer: {} content_length: 433 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "syncing", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:53:46.316623+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}}' headers: Content-Length: - "433" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6e37153e-dd2d-439d-9b4b-f00d82369ab0 + - d46a8557-09b8-449e-b73d-33f7e09fbfd7 status: 201 Created code: 201 - duration: 625.360279ms + duration: 644.230061ms - id: 24 request: proto: HTTP/1.1 @@ -1221,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/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f method: GET response: proto: HTTP/2.0 @@ -1231,29 +1051,21 @@ interactions: trailer: {} content_length: 433 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "syncing", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:53:46.316623+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}}' headers: Content-Length: - "433" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b6a25278-448b-418e-bc12-245125fb8c34 + - 65561d7b-2907-426f-abce-034c04bd61ce status: 200 OK code: 200 - duration: 83.710678ms + duration: 99.511996ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1082,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f method: GET response: proto: HTTP/2.0 @@ -1280,29 +1092,21 @@ interactions: trailer: {} content_length: 433 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "syncing", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:53:46.316623+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}}' headers: Content-Length: - "433" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:33 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7836c42a-b4bc-4398-b70f-9ff08198d0db + - 6f6a8c37-a2ef-4b48-92ab-adf1bca5546c status: 200 OK code: 200 - duration: 92.86051ms + duration: 117.614116ms - id: 26 request: proto: HTTP/1.1 @@ -1319,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/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f method: GET response: proto: HTTP/2.0 @@ -1329,29 +1133,21 @@ interactions: trailer: {} content_length: 433 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "syncing", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:53:46.316623+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}}' headers: Content-Length: - "433" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:38 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 448fc3e0-cd3b-428d-b7a2-9fd76add1612 + - f61294ab-62a0-4c18-bf3f-9434dcf45eb9 status: 200 OK code: 200 - duration: 87.081343ms + duration: 97.036591ms - id: 27 request: proto: HTTP/1.1 @@ -1368,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/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f method: GET response: proto: HTTP/2.0 @@ -1378,29 +1174,21 @@ interactions: trailer: {} content_length: 433 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "syncing", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:53:46.316623+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}}' headers: Content-Length: - "433" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:43 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6f493381-9a98-4b0a-a4c7-f8f6a7170f2f + - 82ffc8f4-11a7-4b5f-8072-26a682e0aa00 status: 200 OK code: 200 - duration: 136.426264ms + duration: 94.464242ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f method: GET response: proto: HTTP/2.0 @@ -1427,29 +1215,21 @@ interactions: trailer: {} content_length: 433 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "syncing", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:53:46.316623+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}}' headers: Content-Length: - "433" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:49 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ca3630f9-aa82-4f3f-8af7-795bda4eae9a + - 9d1ad71e-aa1e-4229-9b50-522b4f3a362e status: 200 OK code: 200 - duration: 102.17347ms + duration: 106.781284ms - id: 29 request: proto: HTTP/1.1 @@ -1466,7 +1246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f method: GET response: proto: HTTP/2.0 @@ -1474,31 +1254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 433 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "syncing", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:53:46.316623+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}}' headers: Content-Length: - - "435" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "433" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1d70c266-d6cc-4206-8756-c2372d9ad8e4 + - 878722cd-dbc6-422d-8f31-5d19b68c4b1f status: 200 OK code: 200 - duration: 91.494938ms + duration: 90.410866ms - id: 30 request: proto: HTTP/1.1 @@ -1515,7 +1287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f method: GET response: proto: HTTP/2.0 @@ -1523,31 +1295,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 433 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "syncing", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:53:46.316623+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}}' headers: Content-Length: - - "435" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "433" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab14f13a-d1d6-489d-8ad4-96d20319d7ea + - 4f8e226a-6f59-4730-8635-db6b8823909c status: 200 OK code: 200 - duration: 93.625732ms + duration: 95.815092ms - id: 31 request: proto: HTTP/1.1 @@ -1564,7 +1328,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f method: GET response: proto: HTTP/2.0 @@ -1572,31 +1336,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2351 + 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-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"}}' + body: '{"private_nic": {"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "syncing", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:53:46.316623+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}}' headers: Content-Length: - - "2351" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "433" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9b4c3617-78fc-41d6-86e9-bf3fdd16c7ba + - 825deac7-82bd-4293-8f39-0e20c5a5a7e2 status: 200 OK code: 200 - duration: 148.970069ms + duration: 107.655434ms - id: 32 request: proto: HTTP/1.1 @@ -1613,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/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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f method: GET response: proto: HTTP/2.0 @@ -1621,31 +1377,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 435 uncompressed: false - 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}' + body: '{"private_nic": {"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "available", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:54:27.192568+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}}' headers: Content-Length: - - "552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "435" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 62cbbab2-bec3-43e4-b34e-d4e37127c9b7 + - 9055b3fc-6f86-4cbb-b768-e051dfde4ce6 status: 200 OK code: 200 - duration: 49.830292ms + duration: 106.903619ms - id: 33 request: proto: HTTP/1.1 @@ -1662,7 +1410,99 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=08ebcce2-f68e-448a-a97e-caf2ed59aea5&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 435 + uncompressed: false + body: '{"private_nic": {"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "available", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:54:27.192568+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}}' + headers: + Content-Length: + - "435" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:54:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - f3153c53-6eaa-46d0-a6f1-fb41e5e2f947 + status: 200 OK + code: 200 + duration: 112.003136ms + - 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/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2397 + uncompressed: false + body: '{"server": {"id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "name": "TestAccScalewayInstancePrivateNIC_IPAM", "arch": "x86_64", "commercial_type": "PLAY2-MICRO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "testaccscalewayinstanceprivatenic-ipam", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:57", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.449536+00:00", "modification_date": "2025-10-29T22:53:43.016409+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "901", "node_id": "172"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "available", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:54:27.192568+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "2397" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:54:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 6c8365c7-0542-4d24-b0b2-660143fccdab + status: 200 OK + code: 200 + duration: 149.396798ms + - 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: + order_by: + - created_at_desc + private_network_id: + - 2cf19cd2-6dd5-426d-9862-81553bcc7c44 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 6017c538-2898-4ce7-871d-bf79de68f23f + resource_type: + - instance_private_nic + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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=2cf19cd2-6dd5-426d-9862-81553bcc7c44&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=6017c538-2898-4ce7-871d-bf79de68f23f&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1672,30 +1512,73 @@ interactions: trailer: {} content_length: 552 uncompressed: false - 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}' + body: '{"total_count":1, "ips":[{"id":"30e95f88-9a23-441c-acb7-520fc93698d0", "address":"172.16.64.7/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:38.564971Z", "updated_at":"2025-10-29T22:53:46.804183Z", "source":{"subnet_id":"c0acb41a-ffeb-4764-aa5c-efce9243faa4"}, "resource":{"type":"instance_private_nic", "id":"6017c538-2898-4ce7-871d-bf79de68f23f", "mac_address":"02:00:00:16:F3:80", "name":"TestAccScalewayInstancePrivateNIC_IPAM"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - "552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 94a03f10-b480-43b5-8813-fa661ad3507e + - 02f00db7-233c-417e-9d1e-664f2e5d264c status: 200 OK code: 200 - duration: 113.429332ms - - id: 34 + duration: 56.470154ms + - 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: + is_ipv6: + - "false" + order_by: + - created_at_desc + page: + - "1" + resource_id: + - 6017c538-2898-4ce7-871d-bf79de68f23f + resource_type: + - instance_private_nic + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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=6017c538-2898-4ce7-871d-bf79de68f23f&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 552 + uncompressed: false + body: '{"total_count":1, "ips":[{"id":"30e95f88-9a23-441c-acb7-520fc93698d0", "address":"172.16.64.7/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:38.564971Z", "updated_at":"2025-10-29T22:53:46.804183Z", "source":{"subnet_id":"c0acb41a-ffeb-4764-aa5c-efce9243faa4"}, "resource":{"type":"instance_private_nic", "id":"6017c538-2898-4ce7-871d-bf79de68f23f", "mac_address":"02:00:00:16:F3:80", "name":"TestAccScalewayInstancePrivateNIC_IPAM"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' + headers: + Content-Length: + - "552" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:54:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - d4f946fd-69f2-4184-8d2e-312e125cf264 + status: 200 OK + code: 200 + duration: 102.238196ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1711,7 +1594,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f method: GET response: proto: HTTP/2.0 @@ -1721,30 +1604,22 @@ interactions: trailer: {} content_length: 435 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "available", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:54:27.192568+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}}' headers: Content-Length: - "435" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6487ca66-0a10-41d3-99cb-e062489c9dd3 + - f2fcdaa2-ff2e-416e-8c9e-0aa68436a876 status: 200 OK code: 200 - duration: 88.48669ms - - id: 35 + duration: 89.450865ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1756,11 +1631,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + is_ipv6: + - "false" + order_by: + - created_at_desc + page: + - "1" + resource_id: + - 6017c538-2898-4ce7-871d-bf79de68f23f + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=08ebcce2-f68e-448a-a97e-caf2ed59aea5&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=6017c538-2898-4ce7-871d-bf79de68f23f&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1770,30 +1655,22 @@ interactions: trailer: {} content_length: 552 uncompressed: false - 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}' + body: '{"total_count":1, "ips":[{"id":"30e95f88-9a23-441c-acb7-520fc93698d0", "address":"172.16.64.7/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:38.564971Z", "updated_at":"2025-10-29T22:53:46.804183Z", "source":{"subnet_id":"c0acb41a-ffeb-4764-aa5c-efce9243faa4"}, "resource":{"type":"instance_private_nic", "id":"6017c538-2898-4ce7-871d-bf79de68f23f", "mac_address":"02:00:00:16:F3:80", "name":"TestAccScalewayInstancePrivateNIC_IPAM"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - "552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4a931013-4bfc-4577-bdfc-e9f05a9a9467 + - 9cdd851d-d3c7-46b1-a3be-29f448d39c5b status: 200 OK code: 200 - duration: 81.820835ms - - id: 36 + duration: 105.326571ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1809,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/vpc/v2/regions/fr-par/vpcs/ac7be18e-921a-4491-88bb-7d32dd1d4180 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2abbfca1-8bd7-4df6-b165-193393029736 method: GET response: proto: HTTP/2.0 @@ -1819,30 +1696,22 @@ interactions: trailer: {} content_length: 436 uncompressed: false - 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"}' + body: '{"id":"2abbfca1-8bd7-4df6-b165-193393029736", "name":"TestAccScalewayInstancePrivateNIC_IPAM", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:37.701747Z", "updated_at":"2025-10-29T22:53:37.701747Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 72daedb7-7a74-46fc-b27a-f10c9fc5489d + - bee62d71-a35d-49a0-b671-ed302a7a39c3 status: 200 OK code: 200 - duration: 26.217022ms - - id: 37 + duration: 25.432807ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1858,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/vpc/v2/regions/fr-par/private-networks/744dc9d8-76a1-4114-8197-e95b052545c4 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2cf19cd2-6dd5-426d-9862-81553bcc7c44 method: GET response: proto: HTTP/2.0 @@ -1868,30 +1737,22 @@ interactions: trailer: {} content_length: 1108 uncompressed: false - 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"}' + body: '{"id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44", "name":"TestAccScalewayInstancePrivateNIC_IPAM", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:37.858476Z", "updated_at":"2025-10-29T22:53:37.858476Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"c0acb41a-ffeb-4764-aa5c-efce9243faa4", "created_at":"2025-10-29T22:53:37.858476Z", "updated_at":"2025-10-29T22:53:37.858476Z", "subnet":"172.16.64.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44", "vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736"}, {"id":"3d29afca-9551-4906-aa92-3f5974524e07", "created_at":"2025-10-29T22:53:37.858476Z", "updated_at":"2025-10-29T22:53:37.858476Z", "subnet":"fd5f:519c:6d46:faa7::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44", "vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736"}], "vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - "1108" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d5bff298-9909-4358-8fb8-4f532d9f2ea7 + - c3f4caf9-6f7e-4b5b-bb8c-031ce2065aa7 status: 200 OK code: 200 - duration: 36.385671ms - - id: 38 + duration: 21.853274ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1907,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/ipam/v1/regions/fr-par/ips/01bab74c-ac71-4273-a05e-6e314f7aa8cc + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/30e95f88-9a23-441c-acb7-520fc93698d0 method: GET response: proto: HTTP/2.0 @@ -1917,30 +1778,22 @@ interactions: trailer: {} content_length: 525 uncompressed: false - 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}' + body: '{"id":"30e95f88-9a23-441c-acb7-520fc93698d0", "address":"172.16.64.7/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:38.564971Z", "updated_at":"2025-10-29T22:53:46.804183Z", "source":{"subnet_id":"c0acb41a-ffeb-4764-aa5c-efce9243faa4"}, "resource":{"type":"instance_private_nic", "id":"6017c538-2898-4ce7-871d-bf79de68f23f", "mac_address":"02:00:00:16:F3:80", "name":"TestAccScalewayInstancePrivateNIC_IPAM"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}' headers: Content-Length: - "525" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8945a290-4702-46a0-819f-02b50f720fc9 + - 7bb334e0-3cfb-40d5-86a2-58179ec0b8c9 status: 200 OK code: 200 - duration: 23.285146ms - - id: 39 + duration: 29.935417ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1956,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/vpc/v2/regions/fr-par/private-networks/744dc9d8-76a1-4114-8197-e95b052545c4 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2cf19cd2-6dd5-426d-9862-81553bcc7c44 method: GET response: proto: HTTP/2.0 @@ -1966,30 +1819,22 @@ interactions: trailer: {} content_length: 1108 uncompressed: false - 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"}' + body: '{"id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44", "name":"TestAccScalewayInstancePrivateNIC_IPAM", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:37.858476Z", "updated_at":"2025-10-29T22:53:37.858476Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"c0acb41a-ffeb-4764-aa5c-efce9243faa4", "created_at":"2025-10-29T22:53:37.858476Z", "updated_at":"2025-10-29T22:53:37.858476Z", "subnet":"172.16.64.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44", "vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736"}, {"id":"3d29afca-9551-4906-aa92-3f5974524e07", "created_at":"2025-10-29T22:53:37.858476Z", "updated_at":"2025-10-29T22:53:37.858476Z", "subnet":"fd5f:519c:6d46:faa7::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"2cf19cd2-6dd5-426d-9862-81553bcc7c44", "vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736"}], "vpc_id":"2abbfca1-8bd7-4df6-b165-193393029736", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - "1108" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 28db0f7a-d148-445c-990c-1d5a2467cce2 + - 615a70bd-aca9-4fad-a73b-119a6a95c74f status: 200 OK code: 200 - duration: 19.303242ms - - id: 40 + duration: 27.139248ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2005,7 +1850,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a method: GET response: proto: HTTP/2.0 @@ -2015,30 +1860,22 @@ interactions: trailer: {} content_length: 2351 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-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"}}' + body: '{"server": {"id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "name": "TestAccScalewayInstancePrivateNIC_IPAM", "arch": "x86_64", "commercial_type": "PLAY2-MICRO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "testaccscalewayinstanceprivatenic-ipam", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:57", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.449536+00:00", "modification_date": "2025-10-29T22:53:43.016409+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "901", "node_id": "172"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "available", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:54:27.192568+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2351" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dbe20403-ddc9-4b57-ba63-5c871e217f45 + - abea152c-21d3-43f0-a18c-17644da72ea8 status: 200 OK code: 200 - duration: 135.331507ms - - id: 41 + duration: 131.564253ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2054,7 +1891,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a method: GET response: proto: HTTP/2.0 @@ -2064,30 +1901,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 85fc6f28-9ada-4d14-be24-4ebeea93264b + - c217bf3d-2ec9-447a-ad37-66cc997e0cdb status: 404 Not Found code: 404 - duration: 26.767965ms - - id: 42 + duration: 28.924567ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2103,7 +1932,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a method: GET response: proto: HTTP/2.0 @@ -2113,30 +1942,22 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"9aa594db-ae68-4848-a017-1f48e4fc8b3a", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.594947Z", "updated_at":"2025-10-29T22:53:38.594947Z", "references":[{"id":"597af54f-bc16-472c-80c9-daeb054b218f", "product_resource_type":"instance_server", "product_resource_id":"b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "created_at":"2025-10-29T22:53:38.594947Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f367dc4d-1475-42f1-9be0-b24460e7c102 + - f31fb644-bd4a-491d-992b-f172db42cdf3 status: 200 OK code: 200 - duration: 74.747838ms - - id: 43 + duration: 96.091001ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2152,7 +1973,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/user_data method: GET response: proto: HTTP/2.0 @@ -2162,30 +1983,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 456d5a10-f28b-421b-bea1-a01aa2b87206 + - 7a5ffc9d-7257-49e7-9000-03284ce8c3f8 status: 200 OK code: 200 - duration: 99.060971ms - - id: 44 + duration: 104.20233ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2201,7 +2014,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics method: GET response: proto: HTTP/2.0 @@ -2211,34 +2024,26 @@ interactions: trailer: {} content_length: 438 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "available", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:54:27.192568+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}]}' headers: Content-Length: - "438" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54:29 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b8037c43-5bb6-44c6-bf22-67256a77139b + - 8a28cc1a-117c-47f5-9ce4-6aa9aa79b235 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 98.160082ms - - id: 45 + duration: 109.900935ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2250,11 +2055,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 6017c538-2898-4ce7-871d-bf79de68f23f + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=08ebcce2-f68e-448a-a97e-caf2ed59aea5&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=6017c538-2898-4ce7-871d-bf79de68f23f&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2264,30 +2077,22 @@ interactions: trailer: {} content_length: 552 uncompressed: false - 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}' + body: '{"total_count":1, "ips":[{"id":"30e95f88-9a23-441c-acb7-520fc93698d0", "address":"172.16.64.7/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:38.564971Z", "updated_at":"2025-10-29T22:53:46.804183Z", "source":{"subnet_id":"c0acb41a-ffeb-4764-aa5c-efce9243faa4"}, "resource":{"type":"instance_private_nic", "id":"6017c538-2898-4ce7-871d-bf79de68f23f", "mac_address":"02:00:00:16:F3:80", "name":"TestAccScalewayInstancePrivateNIC_IPAM"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - "552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4f571e23-475d-45ac-a244-1461a2d65ac0 + - b4bdd5ba-28bf-4302-9a55-a72e907c5710 status: 200 OK code: 200 - duration: 24.575404ms - - id: 46 + duration: 23.261306ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2303,7 +2108,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f method: GET response: proto: HTTP/2.0 @@ -2313,30 +2118,22 @@ interactions: trailer: {} content_length: 435 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "available", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:54:27.192568+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}}' headers: Content-Length: - "435" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 27110013-9120-4c51-945f-922e48547e2e + - e3eef4cf-82bb-4e03-92a3-08ee86038eab status: 200 OK code: 200 - duration: 102.363612ms - - id: 47 + duration: 96.067237ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2352,7 +2149,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a method: GET response: proto: HTTP/2.0 @@ -2362,30 +2159,22 @@ interactions: trailer: {} content_length: 2351 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-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"}}' + body: '{"server": {"id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "name": "TestAccScalewayInstancePrivateNIC_IPAM", "arch": "x86_64", "commercial_type": "PLAY2-MICRO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "testaccscalewayinstanceprivatenic-ipam", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:57", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.449536+00:00", "modification_date": "2025-10-29T22:53:43.016409+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "901", "node_id": "172"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "available", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:54:27.192568+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2351" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ec6c5426-f8b9-4178-9fb5-ed7782d9610d + - 9f531937-c408-44cc-9a3c-095a74fa193b status: 200 OK code: 200 - duration: 179.211566ms - - id: 48 + duration: 173.734828ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2397,11 +2186,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 2cf19cd2-6dd5-426d-9862-81553bcc7c44 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 6017c538-2898-4ce7-871d-bf79de68f23f + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=744dc9d8-76a1-4114-8197-e95b052545c4&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=08ebcce2-f68e-448a-a97e-caf2ed59aea5&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=2cf19cd2-6dd5-426d-9862-81553bcc7c44&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=6017c538-2898-4ce7-871d-bf79de68f23f&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2411,30 +2210,22 @@ interactions: trailer: {} content_length: 552 uncompressed: false - 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}' + body: '{"total_count":1, "ips":[{"id":"30e95f88-9a23-441c-acb7-520fc93698d0", "address":"172.16.64.7/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:38.564971Z", "updated_at":"2025-10-29T22:53:46.804183Z", "source":{"subnet_id":"c0acb41a-ffeb-4764-aa5c-efce9243faa4"}, "resource":{"type":"instance_private_nic", "id":"6017c538-2898-4ce7-871d-bf79de68f23f", "mac_address":"02:00:00:16:F3:80", "name":"TestAccScalewayInstancePrivateNIC_IPAM"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - "552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 04203204-0c12-4d96-b8bb-3d0ff9c67603 + - fc8f8414-71b0-4b66-9ad2-0f1781c7a81d status: 200 OK code: 200 - duration: 48.066877ms - - id: 49 + duration: 47.388011ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2446,11 +2237,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + is_ipv6: + - "false" + order_by: + - created_at_desc + page: + - "1" + resource_id: + - 6017c538-2898-4ce7-871d-bf79de68f23f + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=08ebcce2-f68e-448a-a97e-caf2ed59aea5&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=6017c538-2898-4ce7-871d-bf79de68f23f&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2460,30 +2261,22 @@ interactions: trailer: {} content_length: 552 uncompressed: false - 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}' + body: '{"total_count":1, "ips":[{"id":"30e95f88-9a23-441c-acb7-520fc93698d0", "address":"172.16.64.7/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:53:38.564971Z", "updated_at":"2025-10-29T22:53:46.804183Z", "source":{"subnet_id":"c0acb41a-ffeb-4764-aa5c-efce9243faa4"}, "resource":{"type":"instance_private_nic", "id":"6017c538-2898-4ce7-871d-bf79de68f23f", "mac_address":"02:00:00:16:F3:80", "name":"TestAccScalewayInstancePrivateNIC_IPAM"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - "552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c3ded838-6664-472b-985d-a33785b93f05 + - 05dfe3aa-ed77-4277-a465-1d6fb671b8d2 status: 200 OK code: 200 - duration: 92.207945ms - - id: 50 + duration: 93.391174ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2499,7 +2292,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f method: GET response: proto: HTTP/2.0 @@ -2509,30 +2302,22 @@ interactions: trailer: {} content_length: 435 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6017c538-2898-4ce7-871d-bf79de68f23f", "private_network_id": "2cf19cd2-6dd5-426d-9862-81553bcc7c44", "server_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "mac_address": "02:00:00:16:f3:80", "state": "available", "creation_date": "2025-10-29T22:53:46.316623+00:00", "modification_date": "2025-10-29T22:54:27.192568+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["30e95f88-9a23-441c-acb7-520fc93698d0"]}}' headers: Content-Length: - "435" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:56 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ca5aa3a5-776d-4b92-9c24-ef1bb5a13b9e + - 1cf18402-ee5a-4c2b-8a1b-475c841ca99e status: 200 OK code: 200 - duration: 105.182846ms - - id: 51 + duration: 102.974844ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2548,7 +2333,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f method: DELETE response: proto: HTTP/2.0 @@ -2560,26 +2345,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:56 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7d1a2519-7fa4-49c0-b782-71267e0f83c5 + - 74ee5e59-46e6-40ac-979c-3fc528ad29a5 status: 204 No Content code: 204 - duration: 582.551945ms - - id: 52 + duration: 322.326253ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2595,7 +2372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f method: GET response: proto: HTTP/2.0 @@ -2605,30 +2382,22 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_private_nic", "resource_id": "6017c538-2898-4ce7-871d-bf79de68f23f"}' headers: Content-Length: - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:56 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 594dc6c0-d672-41bd-a7b9-74c4abd36203 + - f33f1919-3e60-4832-971b-a168e0a7d543 status: 404 Not Found code: 404 - duration: 94.177778ms - - id: 53 + duration: 102.613658ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2646,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/ipam/v1/regions/fr-par/ips/01bab74c-ac71-4273-a05e-6e314f7aa8cc + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/30e95f88-9a23-441c-acb7-520fc93698d0 method: DELETE response: proto: HTTP/2.0 @@ -2658,26 +2427,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 638a4e74-1d1c-468a-a1fe-dabb9b57a8a9 + - 9cc57fd8-dda0-4ee1-9b27-62d2fa860e50 status: 204 No Content code: 204 - duration: 88.66187ms - - id: 54 + duration: 47.30189ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2693,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/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a method: GET response: proto: HTTP/2.0 @@ -2701,32 +2462,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1933 + content_length: 1979 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-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"}}' + body: '{"server": {"id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "name": "TestAccScalewayInstancePrivateNIC_IPAM", "arch": "x86_64", "commercial_type": "PLAY2-MICRO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "testaccscalewayinstanceprivatenic-ipam", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:57", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.449536+00:00", "modification_date": "2025-10-29T22:53:43.016409+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "901", "node_id": "172"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1933" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1979" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 12cc573f-de20-4197-b661-4389322ca792 + - 6e5360c3-4981-4023-9da5-76ce31180810 status: 200 OK code: 200 - duration: 167.312053ms - - id: 55 + duration: 174.533293ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2742,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/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a method: GET response: proto: HTTP/2.0 @@ -2750,32 +2503,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1933 + content_length: 1979 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-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"}}' + body: '{"server": {"id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "name": "TestAccScalewayInstancePrivateNIC_IPAM", "arch": "x86_64", "commercial_type": "PLAY2-MICRO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "testaccscalewayinstanceprivatenic-ipam", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:57", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.449536+00:00", "modification_date": "2025-10-29T22:53:43.016409+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "901", "node_id": "172"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1933" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1979" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f2328470-fb18-4c1b-972f-baed2fa0356c + - adb6fa28-fb14-49f7-b13c-503418117208 status: 200 OK code: 200 - duration: 142.979144ms - - id: 56 + duration: 177.603353ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2793,7 +2538,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/5de4dda7-6e32-417a-89de-6ab9041ea2f5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/action method: POST response: proto: HTTP/2.0 @@ -2803,32 +2548,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "d8164589-2587-441d-8537-d1e5c290ecee", "description": "server_terminate", "status": "pending", "href_from": "/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/action", "href_result": "/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "started_at": "2025-10-29T22:54:31.223027+00:00", "terminated_at": null, "progress": 0, "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:57 GMT + - Wed, 29 Oct 2025 22:54:31 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/88220f21-a7ed-4e58-905d-e172c44582f1 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d8164589-2587-441d-8537-d1e5c290ecee Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f87b5c5b-de7f-48c3-8b99-e6c92b0281e6 + - f8ee4a41-c6d6-4b9f-8b05-0a448b4960db status: 202 Accepted code: 202 - duration: 305.130725ms - - id: 57 + duration: 289.608303ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2844,7 +2581,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a method: GET response: proto: HTTP/2.0 @@ -2854,30 +2591,22 @@ 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-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"}}' + body: '{"server": {"id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "name": "TestAccScalewayInstancePrivateNIC_IPAM", "arch": "x86_64", "commercial_type": "PLAY2-MICRO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "testaccscalewayinstanceprivatenic-ipam", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:57", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.449536+00:00", "modification_date": "2025-10-29T22:54:30.992030+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "901", "node_id": "172"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1896" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d00f4a01-0f16-4d77-a39c-a4cb877690fa + - 0991df97-b4ba-4ed2-adb7-424703b2520e status: 200 OK code: 200 - duration: 140.736841ms - - id: 58 + duration: 185.914925ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2893,7 +2622,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/744dc9d8-76a1-4114-8197-e95b052545c4 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2cf19cd2-6dd5-426d-9862-81553bcc7c44 method: DELETE response: proto: HTTP/2.0 @@ -2905,26 +2634,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c4fada19-9500-43d3-a253-4cc4770b1d3f + - 901f709d-3326-490f-8157-2fa901721baf status: 204 No Content code: 204 - duration: 1.274987611s - - id: 59 + duration: 1.128186423s + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -2940,7 +2661,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/ac7be18e-921a-4491-88bb-7d32dd1d4180 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2abbfca1-8bd7-4df6-b165-193393029736 method: DELETE response: proto: HTTP/2.0 @@ -2952,26 +2673,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 90af10ec-a699-4f6a-bf6c-5d9a2c50997e + - f951c038-46ce-4de0-9802-810083f53eb5 status: 204 No Content code: 204 - duration: 138.37252ms - - id: 60 + duration: 223.918007ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -2987,7 +2700,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a method: GET response: proto: HTTP/2.0 @@ -2995,32 +2708,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + content_length: 1942 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-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"}}' + body: '{"server": {"id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "name": "TestAccScalewayInstancePrivateNIC_IPAM", "arch": "x86_64", "commercial_type": "PLAY2-MICRO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "testaccscalewayinstanceprivatenic-ipam", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:57", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.449536+00:00", "modification_date": "2025-10-29T22:54:30.992030+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "901", "node_id": "172"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1896" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1942" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9c003684-0ae3-4bda-8d4d-fc39c3c552cc + - 04126af2-6d82-4bca-bf54-638e9d01de20 status: 200 OK code: 200 - duration: 135.919807ms - - id: 61 + duration: 343.561496ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3036,7 +2741,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a method: GET response: proto: HTTP/2.0 @@ -3044,32 +2749,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + content_length: 1942 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-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"}}' + body: '{"server": {"id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a", "name": "TestAccScalewayInstancePrivateNIC_IPAM", "arch": "x86_64", "commercial_type": "PLAY2-MICRO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "testaccscalewayinstanceprivatenic-ipam", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:57", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.449536+00:00", "modification_date": "2025-10-29T22:54:30.992030+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "901", "node_id": "172"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1896" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1942" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae8fb2bc-6106-46bd-b0c2-507ddc4ef384 + - ee8a533a-ba68-40f9-b51e-ac0abfa54b6b status: 200 OK code: 200 - duration: 139.116526ms - - id: 62 + duration: 178.725276ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3085,7 +2782,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a method: GET response: proto: HTTP/2.0 @@ -3095,30 +2792,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 01e6352c-f4f7-4699-9f27-1131fcbc1f7f + - 302ff5fe-5b1e-4854-a799-113bd036a69d status: 404 Not Found code: 404 - duration: 51.750799ms - - id: 63 + duration: 38.714444ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3134,7 +2823,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a method: GET response: proto: HTTP/2.0 @@ -3144,30 +2833,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9aa594db-ae68-4848-a017-1f48e4fc8b3a"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 83ee0282-9d89-43b7-81f8-e42e52a3a8ec + - 32d77952-e56a-4a5a-b5ff-883010aeaf99 status: 404 Not Found code: 404 - duration: 28.730267ms - - id: 64 + duration: 28.391591ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3183,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/block/v1alpha1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a method: GET response: proto: HTTP/2.0 @@ -3193,30 +2874,22 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"9aa594db-ae68-4848-a017-1f48e4fc8b3a", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.594947Z", "updated_at":"2025-10-29T22:54:42.969292Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:54:42.969292Z", "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:04:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c98b1d85-33a2-4b36-979a-76b9fb3b3f13 + - 0ad6abb8-7dad-4f6c-918c-2064a385d69a status: 200 OK code: 200 - duration: 86.410051ms - - id: 65 + duration: 86.491756ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3232,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/block/v1alpha1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a method: DELETE response: proto: HTTP/2.0 @@ -3244,26 +2917,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 52fbde98-2914-41fe-8840-11bdcb3a1bca + - c4818fa9-07be-4eba-975b-728ff614896b status: 204 No Content code: 204 - duration: 179.713504ms - - id: 66 + duration: 167.572203ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3279,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/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f method: GET response: proto: HTTP/2.0 @@ -3289,26 +2954,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 92321a5d-db78-4646-8bc7-dac9b45d0661 + - a659fd00-d28f-4bb1-a720-6ba3d658c199 status: 404 Not Found code: 404 - duration: 30.782664ms + duration: 27.891976ms diff --git a/internal/services/instance/testdata/security-group-any.cassette.yaml b/internal/services/instance/testdata/security-group-any.cassette.yaml index 60a5a9ffd..ceb452650 100644 --- a/internal/services/instance/testdata/security-group-any.cassette.yaml +++ b/internal/services/instance/testdata/security-group-any.cassette.yaml @@ -12,7 +12,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - 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}' + body: '{"name":"tf-sg-flamboyant-diffie","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: @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 605 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "0fc59d56-e4bf-478e-8f9b-94b8514e61c4", "creation_date": "2025-10-29T22:53:37.828406+00:00", "modification_date": "2025-10-29T22:53:37.828406+00:00", "name": "tf-sg-flamboyant-diffie", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "605" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53:37 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/79db769c-c15f-4bfe-ab57-f04d97c6676e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0fc59d56-e4bf-478e-8f9b-94b8514e61c4 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 28a9c9e0-31b3-4dd8-9db3-3a53c3285556 + - 0c1be0df-2a38-48f9-9fc7-0c2ec4f28074 status: 201 Created code: 201 - duration: 215.715278ms + duration: 180.025214ms - id: 1 request: proto: HTTP/1.1 @@ -72,7 +64,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/79db769c-c15f-4bfe-ab57-f04d97c6676e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0fc59d56-e4bf-478e-8f9b-94b8514e61c4 method: PATCH response: proto: HTTP/2.0 @@ -82,29 +74,21 @@ interactions: trailer: {} content_length: 605 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "0fc59d56-e4bf-478e-8f9b-94b8514e61c4", "creation_date": "2025-10-29T22:53:37.828406+00:00", "modification_date": "2025-10-29T22:53:37.828406+00:00", "name": "tf-sg-flamboyant-diffie", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "605" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fec433dd-01c9-4917-8992-4351ecb2bd71 + - 5d31f2c5-6b86-4e6c-91cf-da80d7191b23 status: 200 OK code: 200 - duration: 272.732442ms + duration: 148.550143ms - id: 2 request: proto: HTTP/1.1 @@ -123,7 +107,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/79db769c-c15f-4bfe-ab57-f04d97c6676e/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0fc59d56-e4bf-478e-8f9b-94b8514e61c4/rules method: PUT response: proto: HTTP/2.0 @@ -133,29 +117,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "10a7d500-9155-4623-824c-9985ce82a37e", "protocol": "ANY", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "0eb5c970-ceb4-424c-9a85-395f52bebf19", "protocol": "ANY", "direction": "inbound", "ip_range": "2.2.2.2", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "4b3effbf-994c-4634-93c8-5c5a7bb1cc75", "protocol": "ANY", "direction": "inbound", "ip_range": "3.3.3.3", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 3, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f8b20cbf-b39d-40fc-aa3d-af79de3d14b7 + - a7a53339-44f7-4e93-bed3-dea5d3e1b7d2 status: 200 OK code: 200 - duration: 427.516501ms + duration: 552.603035ms - id: 3 request: proto: HTTP/1.1 @@ -172,7 +148,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0fc59d56-e4bf-478e-8f9b-94b8514e61c4 method: GET response: proto: HTTP/2.0 @@ -182,29 +158,21 @@ interactions: trailer: {} content_length: 605 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "0fc59d56-e4bf-478e-8f9b-94b8514e61c4", "creation_date": "2025-10-29T22:53:37.828406+00:00", "modification_date": "2025-10-29T22:53:38.560608+00:00", "name": "tf-sg-flamboyant-diffie", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "605" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e1704c83-009e-4750-91c0-0ae518d154ad + - 01fd9f5f-816e-493a-bdf4-59320993ee6a status: 200 OK code: 200 - duration: 132.292964ms + duration: 84.313726ms - id: 4 request: proto: HTTP/1.1 @@ -217,11 +185,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0fc59d56-e4bf-478e-8f9b-94b8514e61c4/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -231,29 +201,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "10a7d500-9155-4623-824c-9985ce82a37e", "protocol": "ANY", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "0eb5c970-ceb4-424c-9a85-395f52bebf19", "protocol": "ANY", "direction": "inbound", "ip_range": "2.2.2.2", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "4b3effbf-994c-4634-93c8-5c5a7bb1cc75", "protocol": "ANY", "direction": "inbound", "ip_range": "3.3.3.3", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 3, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ac8dcf42-0d35-4f82-9265-30a607152799 + - 4226c37b-48d6-47d2-87f4-9e159db05c0b status: 200 OK code: 200 - duration: 93.910749ms + duration: 95.843274ms - id: 5 request: proto: HTTP/1.1 @@ -270,7 +232,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0fc59d56-e4bf-478e-8f9b-94b8514e61c4 method: GET response: proto: HTTP/2.0 @@ -280,29 +242,21 @@ interactions: trailer: {} content_length: 605 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "0fc59d56-e4bf-478e-8f9b-94b8514e61c4", "creation_date": "2025-10-29T22:53:37.828406+00:00", "modification_date": "2025-10-29T22:53:38.560608+00:00", "name": "tf-sg-flamboyant-diffie", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "605" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 28bcbd47-ee74-4242-aa46-61e57f031db6 + - 4b77af20-d2e2-4e5d-b643-71f78d5b211c status: 200 OK code: 200 - duration: 137.786809ms + duration: 410.799077ms - id: 6 request: proto: HTTP/1.1 @@ -315,11 +269,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0fc59d56-e4bf-478e-8f9b-94b8514e61c4/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -329,29 +285,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "10a7d500-9155-4623-824c-9985ce82a37e", "protocol": "ANY", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "0eb5c970-ceb4-424c-9a85-395f52bebf19", "protocol": "ANY", "direction": "inbound", "ip_range": "2.2.2.2", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "4b3effbf-994c-4634-93c8-5c5a7bb1cc75", "protocol": "ANY", "direction": "inbound", "ip_range": "3.3.3.3", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 3, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 112a333f-100e-407e-a2f7-6f55376c2e55 + - 2ff04b0e-d28c-4365-8a37-de873aef1640 status: 200 OK code: 200 - duration: 111.359396ms + duration: 288.952372ms - id: 7 request: proto: HTTP/1.1 @@ -368,7 +316,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0fc59d56-e4bf-478e-8f9b-94b8514e61c4 method: DELETE response: proto: HTTP/2.0 @@ -380,25 +328,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c3191bdb-2430-4f56-892c-62c2720fb068 + - ee5e985b-2c3e-4ad2-b203-bd30edf63f08 status: 204 No Content code: 204 - duration: 141.951885ms + duration: 152.573847ms - id: 8 request: proto: HTTP/1.1 @@ -415,7 +355,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0fc59d56-e4bf-478e-8f9b-94b8514e61c4 method: GET response: proto: HTTP/2.0 @@ -425,26 +365,18 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"79db769c-c15f-4bfe-ab57-f04d97c6676e","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_security_group", "resource_id": "0fc59d56-e4bf-478e-8f9b-94b8514e61c4"}' headers: Content-Length: - "151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8e7e6133-89d3-4d6c-8412-1d2fbf765ec8 + - 2d944d55-f2cb-4c29-9e97-2f47c6b207e4 status: 404 Not Found code: 404 - duration: 30.429812ms + duration: 29.022896ms diff --git a/internal/services/instance/testdata/security-group-basic.cassette.yaml b/internal/services/instance/testdata/security-group-basic.cassette.yaml index 7918f1044..1ed2d033d 100644 --- a/internal/services/instance/testdata/security-group-basic.cassette.yaml +++ b/internal/services/instance/testdata/security-group-basic.cassette.yaml @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 571 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "4220679b-35d4-4b52-be87-00485e99df06", "creation_date": "2025-10-29T22:54:06.737570+00:00", "modification_date": "2025-10-29T22:54:06.737570+00:00", "name": "sg-name", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "drop", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:54:06 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f77b9a0a-1b2f-40a2-ab7a-c6d469c5562d + - c6cdcc42-4bd1-4fa6-95ab-40cb4880c06b status: 201 Created code: 201 - duration: 215.203608ms + duration: 193.713164ms - id: 1 request: proto: HTTP/1.1 @@ -72,7 +64,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/c87064d9-c5ca-420a-82a1-4f53fa31dda0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 method: PATCH response: proto: HTTP/2.0 @@ -82,29 +74,21 @@ interactions: trailer: {} content_length: 571 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "4220679b-35d4-4b52-be87-00485e99df06", "creation_date": "2025-10-29T22:54:06.737570+00:00", "modification_date": "2025-10-29T22:54:06.737570+00:00", "name": "sg-name", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "drop", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ecb36fa4-c8be-4857-92cf-f5894e98e128 + - 68b9d94b-e588-493f-bdfc-a00a7d189318 status: 200 OK code: 200 - duration: 236.049752ms + duration: 153.335123ms - id: 2 request: proto: HTTP/1.1 @@ -123,7 +107,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/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules method: PUT response: proto: HTTP/2.0 @@ -133,29 +117,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "f99a744e-9dbb-4f67-837a-be267afc6dec", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "69760b9b-f6f3-4786-894c-ba6e54236196", "protocol": "TCP", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 2, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "2046" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 73721aba-eb2b-48ae-b8f9-61521540a1a7 + - a911b550-6bd8-400e-ba59-85eac79b0df6 status: 200 OK code: 200 - duration: 295.858367ms + duration: 733.665663ms - id: 3 request: proto: HTTP/1.1 @@ -172,7 +148,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 method: GET response: proto: HTTP/2.0 @@ -182,29 +158,21 @@ interactions: trailer: {} content_length: 569 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "4220679b-35d4-4b52-be87-00485e99df06", "creation_date": "2025-10-29T22:54:06.737570+00:00", "modification_date": "2025-10-29T22:54:06.952224+00:00", "name": "sg-name", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "drop", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "syncing", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "569" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b05c4d95-7e96-47ef-b569-4cc8082f7ee2 + - 22a9711a-dea9-47e5-a3b3-6dafbc5f5088 status: 200 OK code: 200 - duration: 106.886434ms + duration: 98.984225ms - id: 4 request: proto: HTTP/1.1 @@ -217,11 +185,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -231,29 +201,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "f99a744e-9dbb-4f67-837a-be267afc6dec", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "69760b9b-f6f3-4786-894c-ba6e54236196", "protocol": "TCP", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 2, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "2046" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4d9cb8df-6cc5-496d-ae19-4825c60cf3a6 + - ab2c1b9b-194c-4a65-b0ea-f06d04b00174 status: 200 OK code: 200 - duration: 256.376614ms + duration: 106.788899ms - id: 5 request: proto: HTTP/1.1 @@ -270,7 +232,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 method: GET response: proto: HTTP/2.0 @@ -280,29 +242,21 @@ interactions: trailer: {} content_length: 571 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "4220679b-35d4-4b52-be87-00485e99df06", "creation_date": "2025-10-29T22:54:06.737570+00:00", "modification_date": "2025-10-29T22:54:07.656660+00:00", "name": "sg-name", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "drop", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9e9b1c0f-1798-463c-9267-75ebe437754f + - d8c109ae-18b4-4964-8590-3428ca056fc3 status: 200 OK code: 200 - duration: 108.988855ms + duration: 114.776234ms - id: 6 request: proto: HTTP/1.1 @@ -315,11 +269,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -329,29 +285,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "f99a744e-9dbb-4f67-837a-be267afc6dec", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "69760b9b-f6f3-4786-894c-ba6e54236196", "protocol": "TCP", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 2, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "2046" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d07190f7-d5b9-48b3-ac66-a9f1ed5944f7 + - c635139c-5385-4633-8562-1f193521eecc status: 200 OK code: 200 - duration: 85.838252ms + duration: 90.779163ms - id: 7 request: proto: HTTP/1.1 @@ -364,11 +312,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -378,29 +328,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "f99a744e-9dbb-4f67-837a-be267afc6dec", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "69760b9b-f6f3-4786-894c-ba6e54236196", "protocol": "TCP", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 2, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "2046" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d619f06c-a41b-4159-841d-de2ebc95ecb6 + - 81075f60-67a0-4801-9b21-531e55f84937 status: 200 OK code: 200 - duration: 86.767845ms + duration: 90.690207ms - id: 8 request: proto: HTTP/1.1 @@ -417,7 +359,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 method: GET response: proto: HTTP/2.0 @@ -427,29 +369,21 @@ interactions: trailer: {} content_length: 571 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "4220679b-35d4-4b52-be87-00485e99df06", "creation_date": "2025-10-29T22:54:06.737570+00:00", "modification_date": "2025-10-29T22:54:07.656660+00:00", "name": "sg-name", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "drop", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2302cd49-4191-48e8-84b0-60661186551b + - 02623cb8-2c3f-49ad-ae56-e4cab5f57c44 status: 200 OK code: 200 - duration: 109.671874ms + duration: 133.503933ms - id: 9 request: proto: HTTP/1.1 @@ -462,11 +396,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -476,29 +412,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "f99a744e-9dbb-4f67-837a-be267afc6dec", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "69760b9b-f6f3-4786-894c-ba6e54236196", "protocol": "TCP", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 2, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "2046" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7edbb55e-2dbe-467a-aafd-fe37a91aeb53 + - a8e84b01-7778-4ef8-ac8e-b30fe157f368 status: 200 OK code: 200 - duration: 85.920707ms + duration: 89.919707ms - id: 10 request: proto: HTTP/1.1 @@ -515,7 +443,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 method: GET response: proto: HTTP/2.0 @@ -525,29 +453,21 @@ interactions: trailer: {} content_length: 571 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "4220679b-35d4-4b52-be87-00485e99df06", "creation_date": "2025-10-29T22:54:06.737570+00:00", "modification_date": "2025-10-29T22:54:07.656660+00:00", "name": "sg-name", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "drop", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d5edc01c-e8ae-48bd-aa18-c0ba059e559f + - d3b10671-013a-4465-bbeb-3f800c68991d status: 200 OK code: 200 - duration: 95.090361ms + duration: 103.063413ms - id: 11 request: proto: HTTP/1.1 @@ -560,11 +480,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -574,29 +496,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "f99a744e-9dbb-4f67-837a-be267afc6dec", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "69760b9b-f6f3-4786-894c-ba6e54236196", "protocol": "TCP", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 2, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "2046" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5ffcfef2-394d-480d-9153-fb3886d20ea4 + - 9ad16370-23d0-4cd3-94f7-ad434778f7f6 status: 200 OK code: 200 - duration: 106.267396ms + duration: 95.659188ms - id: 12 request: proto: HTTP/1.1 @@ -615,7 +529,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/c87064d9-c5ca-420a-82a1-4f53fa31dda0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 method: PATCH response: proto: HTTP/2.0 @@ -625,29 +539,21 @@ interactions: trailer: {} content_length: 587 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "4220679b-35d4-4b52-be87-00485e99df06", "creation_date": "2025-10-29T22:54:06.737570+00:00", "modification_date": "2025-10-29T22:54:09.269014+00:00", "name": "sg-name", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "syncing", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "587" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a72cc96d-657a-4d1e-ae2d-1e2cf53c2b24 + - 016bdb49-9f12-4598-8426-8ae88cb17c05 status: 200 OK code: 200 - duration: 293.70619ms + duration: 260.724176ms - id: 13 request: proto: HTTP/1.1 @@ -666,7 +572,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/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules method: PUT response: proto: HTTP/2.0 @@ -676,29 +582,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "23182595-6743-40e6-af8b-8e7bf380483c", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "7492e071-dd3d-4c26-b7d6-fed018fcea16", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 2, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "a9df9ae2-49f7-462d-a720-d2552f69491d", "protocol": "TCP", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 790f2035-87a3-4a2e-9a4b-fdd32f5b9038 + - 8096393a-cef3-45fd-a797-760672e27fe7 status: 200 OK code: 200 - duration: 326.044379ms + duration: 249.989544ms - id: 14 request: proto: HTTP/1.1 @@ -715,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/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 method: GET response: proto: HTTP/2.0 @@ -725,29 +623,21 @@ interactions: trailer: {} content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "4220679b-35d4-4b52-be87-00485e99df06", "creation_date": "2025-10-29T22:54:06.737570+00:00", "modification_date": "2025-10-29T22:54:09.531197+00:00", "name": "sg-name", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "589" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a17b138a-c66d-420a-b69a-842f689f54c0 + - 87c3457a-df00-4cf6-b1cf-4b44f6d05682 status: 200 OK code: 200 - duration: 114.064798ms + duration: 97.360681ms - id: 15 request: proto: HTTP/1.1 @@ -760,11 +650,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -774,29 +666,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "23182595-6743-40e6-af8b-8e7bf380483c", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "7492e071-dd3d-4c26-b7d6-fed018fcea16", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 2, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "a9df9ae2-49f7-462d-a720-d2552f69491d", "protocol": "TCP", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b2cd2851-0927-4101-a225-6e28418c99d1 + - 0b1375e9-028f-4c05-a9ad-52e1d0349daa status: 200 OK code: 200 - duration: 98.007248ms + duration: 100.106535ms - id: 16 request: proto: HTTP/1.1 @@ -813,7 +697,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 method: GET response: proto: HTTP/2.0 @@ -823,29 +707,21 @@ interactions: trailer: {} content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "4220679b-35d4-4b52-be87-00485e99df06", "creation_date": "2025-10-29T22:54:06.737570+00:00", "modification_date": "2025-10-29T22:54:09.531197+00:00", "name": "sg-name", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "589" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9bb695ab-831d-473c-b780-c606805b9583 + - 5badd436-b3d2-4490-b0ca-e2a292dc65ef status: 200 OK code: 200 - duration: 85.800052ms + duration: 95.877817ms - id: 17 request: proto: HTTP/1.1 @@ -858,11 +734,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -872,29 +750,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "23182595-6743-40e6-af8b-8e7bf380483c", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "7492e071-dd3d-4c26-b7d6-fed018fcea16", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 2, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "a9df9ae2-49f7-462d-a720-d2552f69491d", "protocol": "TCP", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab68f6b9-9ba4-4306-b874-8d5a1ae1cf6c + - a265382e-2e9d-4dd4-b523-5e32a23d7772 status: 200 OK code: 200 - duration: 106.73844ms + duration: 108.989024ms - id: 18 request: proto: HTTP/1.1 @@ -907,11 +777,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -921,29 +793,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "23182595-6743-40e6-af8b-8e7bf380483c", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "7492e071-dd3d-4c26-b7d6-fed018fcea16", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 2, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "a9df9ae2-49f7-462d-a720-d2552f69491d", "protocol": "TCP", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b81e5646-0af3-4d19-9372-c04855a2071a + - 7804d654-e3de-4008-889a-b0ddf6ab8a4f status: 200 OK code: 200 - duration: 140.106328ms + duration: 104.253599ms - id: 19 request: proto: HTTP/1.1 @@ -956,11 +820,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -970,29 +836,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "23182595-6743-40e6-af8b-8e7bf380483c", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "7492e071-dd3d-4c26-b7d6-fed018fcea16", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 2, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "a9df9ae2-49f7-462d-a720-d2552f69491d", "protocol": "TCP", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a0f31bfd-0391-44b2-9e58-3dee80c7824e + - 2cf7bbd7-1899-412d-b98b-9f5615f75798 status: 200 OK code: 200 - duration: 98.593737ms + duration: 109.963255ms - id: 20 request: proto: HTTP/1.1 @@ -1009,7 +867,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 method: GET response: proto: HTTP/2.0 @@ -1019,29 +877,21 @@ interactions: trailer: {} content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "4220679b-35d4-4b52-be87-00485e99df06", "creation_date": "2025-10-29T22:54:06.737570+00:00", "modification_date": "2025-10-29T22:54:09.531197+00:00", "name": "sg-name", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "589" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1b580974-401a-4570-a19e-04460cf38a93 + - f7abc7f2-a36c-4b25-8466-1df337d1d2b0 status: 200 OK code: 200 - duration: 96.882671ms + duration: 101.381709ms - id: 21 request: proto: HTTP/1.1 @@ -1054,11 +904,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1068,29 +920,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "23182595-6743-40e6-af8b-8e7bf380483c", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "7492e071-dd3d-4c26-b7d6-fed018fcea16", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 2, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "a9df9ae2-49f7-462d-a720-d2552f69491d", "protocol": "TCP", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5bdddef1-b86f-4308-aa9e-f8fbdde3c438 + - 6ef4bb62-a1d0-48e4-b9d7-7c2bdb896792 status: 200 OK code: 200 - duration: 119.13967ms + duration: 100.64949ms - id: 22 request: proto: HTTP/1.1 @@ -1107,7 +951,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 method: GET response: proto: HTTP/2.0 @@ -1117,29 +961,21 @@ interactions: trailer: {} content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "4220679b-35d4-4b52-be87-00485e99df06", "creation_date": "2025-10-29T22:54:06.737570+00:00", "modification_date": "2025-10-29T22:54:09.531197+00:00", "name": "sg-name", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "589" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a8d0ac59-3829-4769-be6c-4df56b4b153e + - 64d48cf2-8f8a-4327-929a-ef08e219e55c status: 200 OK code: 200 - duration: 107.619401ms + duration: 89.288998ms - id: 23 request: proto: HTTP/1.1 @@ -1152,11 +988,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1166,29 +1004,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "23182595-6743-40e6-af8b-8e7bf380483c", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "7492e071-dd3d-4c26-b7d6-fed018fcea16", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 2, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "a9df9ae2-49f7-462d-a720-d2552f69491d", "protocol": "TCP", "direction": "inbound", "ip_range": "1.1.1.1", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 180a321e-6cf4-41e2-a275-5c665a35d61a + - ab3e4c3c-81d8-4816-a958-90505bac3fb8 status: 200 OK code: 200 - duration: 98.078753ms + duration: 108.690817ms - id: 24 request: proto: HTTP/1.1 @@ -1207,7 +1037,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/c87064d9-c5ca-420a-82a1-4f53fa31dda0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 method: PATCH response: proto: HTTP/2.0 @@ -1217,29 +1047,21 @@ interactions: trailer: {} content_length: 571 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "4220679b-35d4-4b52-be87-00485e99df06", "creation_date": "2025-10-29T22:54:06.737570+00:00", "modification_date": "2025-10-29T22:54:11.506742+00:00", "name": "sg-name", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "syncing", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0adbf3d2-d5d5-40fb-9e63-f6dfeda00d1f + - d2f778cf-ca58-41f6-948d-a34c013cbcc8 status: 200 OK code: 200 - duration: 502.091347ms + duration: 248.318871ms - id: 25 request: proto: HTTP/1.1 @@ -1258,7 +1080,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/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules method: PUT response: proto: HTTP/2.0 @@ -1268,29 +1090,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5586eb0f-6706-421e-a0a1-a26d1bc4c2b9 + - 16a6db9b-f01a-4f72-bfd3-e1fa28596f1b status: 200 OK code: 200 - duration: 287.510959ms + duration: 245.476446ms - id: 26 request: proto: HTTP/1.1 @@ -1307,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/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 method: GET response: proto: HTTP/2.0 @@ -1317,29 +1131,21 @@ interactions: trailer: {} content_length: 571 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "4220679b-35d4-4b52-be87-00485e99df06", "creation_date": "2025-10-29T22:54:06.737570+00:00", "modification_date": "2025-10-29T22:54:11.760220+00:00", "name": "sg-name", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "syncing", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bdc6d615-409e-40b0-8d06-72dfa4c67121 + - 6b26067c-b3d7-4860-8317-f6dd67f3abf4 status: 200 OK code: 200 - duration: 88.206033ms + duration: 86.75002ms - id: 27 request: proto: HTTP/1.1 @@ -1352,11 +1158,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1366,29 +1174,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e7705591-c0b7-4ded-bbb2-95384578cd39 + - 66037ef7-4c7f-423b-a8b2-ce9bca9f0280 status: 200 OK code: 200 - duration: 112.455935ms + duration: 107.480834ms - id: 28 request: proto: HTTP/1.1 @@ -1405,7 +1205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 method: GET response: proto: HTTP/2.0 @@ -1415,29 +1215,21 @@ interactions: trailer: {} content_length: 573 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "4220679b-35d4-4b52-be87-00485e99df06", "creation_date": "2025-10-29T22:54:06.737570+00:00", "modification_date": "2025-10-29T22:54:11.982521+00:00", "name": "sg-name", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "573" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1f895914-edd4-405b-a707-73979437a38f + - 11c2f230-9bb2-498d-9003-a86bc312ceff status: 200 OK code: 200 - duration: 97.213603ms + duration: 79.449751ms - id: 29 request: proto: HTTP/1.1 @@ -1450,11 +1242,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1464,29 +1258,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0a21dec1-c61b-41a6-96c5-51d0847c07a5 + - 3f98bee7-4354-46c0-9500-4f712f2a140d status: 200 OK code: 200 - duration: 129.114244ms + duration: 105.1738ms - id: 30 request: proto: HTTP/1.1 @@ -1503,7 +1289,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 method: DELETE response: proto: HTTP/2.0 @@ -1515,25 +1301,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c89b53a4-d08d-439e-b907-d2a7d25ecc9b + - b20cb099-c4e5-4d3c-8f80-d718bc789d07 status: 204 No Content code: 204 - duration: 124.670226ms + duration: 148.63665ms - id: 31 request: proto: HTTP/1.1 @@ -1550,7 +1328,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 method: GET response: proto: HTTP/2.0 @@ -1560,26 +1338,18 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_security_group", "resource_id": "4220679b-35d4-4b52-be87-00485e99df06"}' headers: Content-Length: - "151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 47eb763f-bafd-48b0-a8e7-0d7e09e7bf08 + - 59ed8407-cc65-4490-9e68-fd3af40585ac status: 404 Not Found code: 404 - duration: 30.630389ms + duration: 29.335153ms 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 b065fdd5d..38c98288c 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,13 +6,13 @@ 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-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}' + body: '{"name":"tf-sg-epic-jang","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: @@ -27,33 +27,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 600 + content_length: 598 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "18411c7f-77ed-474a-bb90-49ca3c8482a6", "creation_date": "2025-10-29T22:53:37.796195+00:00", "modification_date": "2025-10-29T22:53:37.796195+00:00", "name": "tf-sg-epic-jang", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": false, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "598" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53:37 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bbebcf24-6ee9-442c-94df-1a61372f6be3 + - 4969d1ca-f7fa-4fbb-9434-6318d13ffbe1 status: 201 Created code: 201 - duration: 195.081154ms + duration: 208.854026ms - id: 1 request: proto: HTTP/1.1 @@ -72,7 +64,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/888b8b5d-e5a9-484a-bd8f-d42588476684 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 method: PATCH response: proto: HTTP/2.0 @@ -80,31 +72,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 600 + content_length: 598 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "18411c7f-77ed-474a-bb90-49ca3c8482a6", "creation_date": "2025-10-29T22:53:37.796195+00:00", "modification_date": "2025-10-29T22:53:37.796195+00:00", "name": "tf-sg-epic-jang", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": false, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "598" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4988d78-a5d9-474f-8a97-aee83db7a215 + - a9f1b99c-9ac3-4b52-a1ed-ca34985bfb2f status: 200 OK code: 200 - duration: 156.289423ms + duration: 165.579434ms - id: 2 request: proto: HTTP/1.1 @@ -123,7 +107,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/888b8b5d-e5a9-484a-bd8f-d42588476684/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6/rules method: PUT response: proto: HTTP/2.0 @@ -133,29 +117,21 @@ interactions: trailer: {} content_length: 13 uncompressed: false - body: '{"rules":[]}' + body: '{"rules": []}' headers: Content-Length: - "13" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ec360020-a5e1-4420-83ab-e7ebecfd9d3d + - 9081d211-25ea-461c-8a65-cca09e39d82d status: 200 OK code: 200 - duration: 165.859844ms + duration: 143.80978ms - id: 3 request: proto: HTTP/1.1 @@ -172,7 +148,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 method: GET response: proto: HTTP/2.0 @@ -180,31 +156,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 600 + content_length: 598 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "18411c7f-77ed-474a-bb90-49ca3c8482a6", "creation_date": "2025-10-29T22:53:37.796195+00:00", "modification_date": "2025-10-29T22:53:37.796195+00:00", "name": "tf-sg-epic-jang", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": false, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "598" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c91b7121-e84e-4696-8ac6-262f9e4e9ee9 + - a9ef33e1-13a2-4491-8f76-4e2541debd65 status: 200 OK code: 200 - duration: 102.246789ms + duration: 92.430422ms - id: 4 request: proto: HTTP/1.1 @@ -217,11 +185,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -231,29 +201,21 @@ interactions: trailer: {} content_length: 13 uncompressed: false - body: '{"rules":[]}' + body: '{"rules": []}' headers: Content-Length: - "13" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3e639e20-7f8a-41f8-b69d-2ea43a8bbcc0 + - 19418fa0-f963-44d4-bd73-7f05adfa2282 status: 200 OK code: 200 - duration: 109.295604ms + duration: 82.866431ms - id: 5 request: proto: HTTP/1.1 @@ -270,7 +232,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 method: GET response: proto: HTTP/2.0 @@ -278,31 +240,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 600 + content_length: 598 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "18411c7f-77ed-474a-bb90-49ca3c8482a6", "creation_date": "2025-10-29T22:53:37.796195+00:00", "modification_date": "2025-10-29T22:53:37.796195+00:00", "name": "tf-sg-epic-jang", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": false, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "598" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f07e315e-b97d-4f99-a965-0d422a8d26de + - 900ea928-8c43-43e0-8abf-9a3ca76ea154 status: 200 OK code: 200 - duration: 100.796642ms + duration: 95.256356ms - id: 6 request: proto: HTTP/1.1 @@ -315,11 +269,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -329,29 +285,21 @@ interactions: trailer: {} content_length: 13 uncompressed: false - body: '{"rules":[]}' + body: '{"rules": []}' headers: Content-Length: - "13" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6d5e64da-64f0-44a7-9adc-6869f64d8528 + - d3c240a5-ee12-44ed-a09d-0e5012a3220b status: 200 OK code: 200 - duration: 114.706468ms + duration: 84.777865ms - id: 7 request: proto: HTTP/1.1 @@ -368,7 +316,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 method: GET response: proto: HTTP/2.0 @@ -376,31 +324,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 600 + content_length: 598 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "18411c7f-77ed-474a-bb90-49ca3c8482a6", "creation_date": "2025-10-29T22:53:37.796195+00:00", "modification_date": "2025-10-29T22:53:37.796195+00:00", "name": "tf-sg-epic-jang", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": false, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "598" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 84fb0a5e-d0dd-483a-8edb-16160d0e04f1 + - 525b2513-475d-429d-ac31-fdf4fa9f89c1 status: 200 OK code: 200 - duration: 94.297448ms + duration: 442.064687ms - id: 8 request: proto: HTTP/1.1 @@ -413,11 +353,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -427,48 +369,40 @@ interactions: trailer: {} content_length: 13 uncompressed: false - body: '{"rules":[]}' + body: '{"rules": []}' headers: Content-Length: - "13" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 075af559-8bf9-4e85-83ca-d8ac95ea453d + - f2a72764-2367-46de-9afb-2e7756fd84d5 status: 200 OK code: 200 - duration: 101.919136ms + duration: 211.158146ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 170 + content_length: 168 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-crazy-fermi","enable_default_security":true,"inbound_default_policy":"accept","tags":["test-terraform"],"outbound_default_policy":"accept","stateful":true}' + body: '{"name":"tf-sg-epic-jang","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.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 method: PATCH response: proto: HTTP/2.0 @@ -476,31 +410,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 597 + content_length: 595 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "18411c7f-77ed-474a-bb90-49ca3c8482a6", "creation_date": "2025-10-29T22:53:37.796195+00:00", "modification_date": "2025-10-29T22:53:39.768971+00:00", "name": "tf-sg-epic-jang", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "syncing", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "597" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "595" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4b052660-a213-455e-8a8b-6d6842eab771 + - 4713b360-6b14-4848-86f0-1e8b276a4dfb status: 200 OK code: 200 - duration: 240.795356ms + duration: 292.361057ms - id: 10 request: proto: HTTP/1.1 @@ -519,7 +445,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/888b8b5d-e5a9-484a-bd8f-d42588476684/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6/rules method: PUT response: proto: HTTP/2.0 @@ -529,29 +455,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:29 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f6f02029-9dca-4406-b4bf-12af2de504d8 + - 02e83855-0d04-4442-897f-50aeec47a258 status: 200 OK code: 200 - duration: 167.820311ms + duration: 194.717436ms - id: 11 request: proto: HTTP/1.1 @@ -568,7 +486,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 method: GET response: proto: HTTP/2.0 @@ -576,31 +494,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 599 + content_length: 597 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "18411c7f-77ed-474a-bb90-49ca3c8482a6", "creation_date": "2025-10-29T22:53:37.796195+00:00", "modification_date": "2025-10-29T22:53:40.006478+00:00", "name": "tf-sg-epic-jang", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "599" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "597" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:29 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c416d141-42ee-4fbe-bc21-37877cbe4eb4 + - 561addd5-3315-4023-9fb7-6b8cbb807566 status: 200 OK code: 200 - duration: 101.24897ms + duration: 92.486699ms - id: 12 request: proto: HTTP/1.1 @@ -613,11 +523,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -627,29 +539,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:29 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 48605c5b-0abf-49a9-a5d9-587a8d08cad7 + - cd76afdc-f2bc-4b8d-8671-e473f07bebea status: 200 OK code: 200 - duration: 109.771538ms + duration: 79.975145ms - id: 13 request: proto: HTTP/1.1 @@ -666,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/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 method: GET response: proto: HTTP/2.0 @@ -674,31 +578,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 599 + content_length: 597 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "18411c7f-77ed-474a-bb90-49ca3c8482a6", "creation_date": "2025-10-29T22:53:37.796195+00:00", "modification_date": "2025-10-29T22:53:40.006478+00:00", "name": "tf-sg-epic-jang", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "599" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "597" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:29 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dfc540dc-10f6-4b5f-9e57-11e4ddca752b + - 615b657c-5547-43b8-9101-17e724158a46 status: 200 OK code: 200 - duration: 96.912081ms + duration: 90.332752ms - id: 14 request: proto: HTTP/1.1 @@ -711,11 +607,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -725,29 +623,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:29 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 80f004c0-35a6-48b8-900e-2affc8cc8f0d + - bd27b1ef-b973-4915-89ce-2da623de6cc3 status: 200 OK code: 200 - duration: 101.198356ms + duration: 108.1473ms - id: 15 request: proto: HTTP/1.1 @@ -764,7 +654,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 method: DELETE response: proto: HTTP/2.0 @@ -776,25 +666,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:29 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 24c07080-62ce-4925-875e-75ed8347bc4a + - a0b47724-49e7-4cfa-b339-4f1c6a9dbf73 status: 204 No Content code: 204 - duration: 148.63228ms + duration: 155.375286ms - id: 16 request: proto: HTTP/1.1 @@ -811,7 +693,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 method: GET response: proto: HTTP/2.0 @@ -821,26 +703,18 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"888b8b5d-e5a9-484a-bd8f-d42588476684","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_security_group", "resource_id": "18411c7f-77ed-474a-bb90-49ca3c8482a6"}' headers: Content-Length: - "151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:30 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dd1fb7ff-d727-4a6a-97f1-b359a41d363d + - 116e12d6-c57e-41d2-8cf1-a98918ef34bb status: 404 Not Found code: 404 - duration: 34.544491ms + duration: 31.065265ms diff --git a/internal/services/instance/testdata/security-group-icmp.cassette.yaml b/internal/services/instance/testdata/security-group-icmp.cassette.yaml index 9563b4f99..e0259cf78 100644 --- a/internal/services/instance/testdata/security-group-icmp.cassette.yaml +++ b/internal/services/instance/testdata/security-group-icmp.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 221 + content_length: 225 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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}' + body: '{"name":"tf-sg-heuristic-mcnulty","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: @@ -27,33 +27,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 605 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "f4f59684-ceb6-4dd8-8194-4282821b76ce", "creation_date": "2025-10-29T22:53:42.987103+00:00", "modification_date": "2025-10-29T22:53:42.987103+00:00", "name": "tf-sg-heuristic-mcnulty", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "605" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53:43 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dd0491af-41af-4729-bb02-d131faa87cda + - 93d19f62-e80e-4843-b4bd-941f0222e05f status: 201 Created code: 201 - duration: 202.865839ms + duration: 170.784669ms - id: 1 request: proto: HTTP/1.1 @@ -72,7 +64,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/9e174c2a-9eb8-4de2-8491-c39606dd7aee + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce method: PATCH response: proto: HTTP/2.0 @@ -80,31 +72,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 605 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "f4f59684-ceb6-4dd8-8194-4282821b76ce", "creation_date": "2025-10-29T22:53:42.987103+00:00", "modification_date": "2025-10-29T22:53:42.987103+00:00", "name": "tf-sg-heuristic-mcnulty", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "605" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 74147278-f4ca-42bd-aa95-b611d979ee2a + - e95bc6e5-a0ff-4932-8a32-e2d05b8387ed status: 200 OK code: 200 - duration: 155.112905ms + duration: 193.883379ms - id: 2 request: proto: HTTP/1.1 @@ -123,7 +107,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/9e174c2a-9eb8-4de2-8491-c39606dd7aee/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules method: PUT response: proto: HTTP/2.0 @@ -133,29 +117,21 @@ 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":"84137932-94b7-4eac-8b9d-200bd2d23a31","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "d9d73e9b-0d51-4115-8f73-33863eb9cbe2", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1792" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 31d188c1-363c-4eec-9d5c-8cbd5199835b + - cc68ae9f-6250-4126-95c1-38df425ca88b status: 200 OK code: 200 - duration: 348.259481ms + duration: 241.634783ms - id: 3 request: proto: HTTP/1.1 @@ -172,7 +148,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce method: GET response: proto: HTTP/2.0 @@ -180,31 +156,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 605 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "f4f59684-ceb6-4dd8-8194-4282821b76ce", "creation_date": "2025-10-29T22:53:42.987103+00:00", "modification_date": "2025-10-29T22:53:43.456549+00:00", "name": "tf-sg-heuristic-mcnulty", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "605" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0fecbb74-e992-4b3e-ae32-ffe1d710534e + - 237a43b6-614d-468d-b721-dd94211d8a46 status: 200 OK code: 200 - duration: 116.065274ms + duration: 106.249863ms - id: 4 request: proto: HTTP/1.1 @@ -217,11 +185,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -231,29 +201,21 @@ 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":"84137932-94b7-4eac-8b9d-200bd2d23a31","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "d9d73e9b-0d51-4115-8f73-33863eb9cbe2", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1792" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5223a858-d1d0-47e3-b851-c06f75664106 + - 9324d9aa-b2df-4255-9f85-a4c66353de40 status: 200 OK code: 200 - duration: 88.375757ms + duration: 142.489834ms - id: 5 request: proto: HTTP/1.1 @@ -266,11 +228,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -280,29 +244,21 @@ 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":"84137932-94b7-4eac-8b9d-200bd2d23a31","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "d9d73e9b-0d51-4115-8f73-33863eb9cbe2", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1792" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9dbd1f3a-6346-4b16-b7c3-ee7e1e6a2b68 + - a4c87ff5-cde9-45c0-b510-588dd3c67baa status: 200 OK code: 200 - duration: 106.12646ms + duration: 104.244654ms - id: 6 request: proto: HTTP/1.1 @@ -319,7 +275,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce method: GET response: proto: HTTP/2.0 @@ -327,31 +283,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 605 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "f4f59684-ceb6-4dd8-8194-4282821b76ce", "creation_date": "2025-10-29T22:53:42.987103+00:00", "modification_date": "2025-10-29T22:53:43.456549+00:00", "name": "tf-sg-heuristic-mcnulty", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "605" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - adbf80bb-03e3-4aac-96b1-d785bd5e1e63 + - 2d0fc4a9-5b83-4920-bcdb-14b019bec9f4 status: 200 OK code: 200 - duration: 99.504021ms + duration: 94.80807ms - id: 7 request: proto: HTTP/1.1 @@ -364,11 +312,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -378,29 +328,21 @@ 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":"84137932-94b7-4eac-8b9d-200bd2d23a31","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "d9d73e9b-0d51-4115-8f73-33863eb9cbe2", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1792" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7c19461d-7f6b-4960-b282-9676e6afc0b3 + - 4e00fe99-5a2f-4e89-927c-0fb88c8af3ad status: 200 OK code: 200 - duration: 125.059781ms + duration: 96.779767ms - id: 8 request: proto: HTTP/1.1 @@ -417,7 +359,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce method: GET response: proto: HTTP/2.0 @@ -425,31 +367,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 605 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "f4f59684-ceb6-4dd8-8194-4282821b76ce", "creation_date": "2025-10-29T22:53:42.987103+00:00", "modification_date": "2025-10-29T22:53:43.456549+00:00", "name": "tf-sg-heuristic-mcnulty", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "605" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2283ef76-19ce-4106-b6a6-f12c06f0b62b + - 9dfd011b-f2a3-44f5-b6b5-44f162749350 status: 200 OK code: 200 - duration: 86.643502ms + duration: 120.650189ms - id: 9 request: proto: HTTP/1.1 @@ -462,11 +396,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -476,48 +412,40 @@ 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":"84137932-94b7-4eac-8b9d-200bd2d23a31","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "d9d73e9b-0d51-4115-8f73-33863eb9cbe2", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1792" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 55b2b3b8-4438-4066-b709-1dfe1723059e + - dd621627-a0dc-4d2c-b074-a2521ff02339 status: 200 OK code: 200 - duration: 114.524738ms + duration: 95.664362ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 141 + content_length: 145 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-sweet-johnson","inbound_default_policy":"accept","tags":["test-terraform"],"outbound_default_policy":"accept","stateful":true}' + body: '{"name":"tf-sg-heuristic-mcnulty","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.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce method: PATCH response: proto: HTTP/2.0 @@ -525,31 +453,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 605 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "f4f59684-ceb6-4dd8-8194-4282821b76ce", "creation_date": "2025-10-29T22:53:42.987103+00:00", "modification_date": "2025-10-29T22:53:43.456549+00:00", "name": "tf-sg-heuristic-mcnulty", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "605" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 77cc719a-0d38-4922-bfe8-039eaf771516 + - 75405db4-c06b-4294-9cba-a6dacae39af7 status: 200 OK code: 200 - duration: 167.95373ms + duration: 174.28803ms - id: 11 request: proto: HTTP/1.1 @@ -568,7 +488,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/9e174c2a-9eb8-4de2-8491-c39606dd7aee/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules method: PUT response: proto: HTTP/2.0 @@ -578,29 +498,21 @@ 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":"f76cddc6-6212-4144-b348-7dfdf7b5626a","ip_range":"8.8.8.8","position":1,"protocol":"ICMP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "1c0fef1a-d939-44ca-9a9f-81a0c957f98b", "protocol": "ICMP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1791" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 42da14cd-1f2c-41b7-b263-34866bd5fe93 + - 27a44010-02e2-4225-86fc-d3e95bc21ee7 status: 200 OK code: 200 - duration: 239.836252ms + duration: 302.058063ms - id: 12 request: proto: HTTP/1.1 @@ -617,7 +529,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce method: GET response: proto: HTTP/2.0 @@ -625,31 +537,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 605 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "f4f59684-ceb6-4dd8-8194-4282821b76ce", "creation_date": "2025-10-29T22:53:42.987103+00:00", "modification_date": "2025-10-29T22:53:45.288059+00:00", "name": "tf-sg-heuristic-mcnulty", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "605" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1bf451e4-2044-435a-89e2-5863e02a0f6c + - 4c8e6f56-c295-4152-a479-14c5ecb476ec status: 200 OK code: 200 - duration: 109.096247ms + duration: 97.622563ms - id: 13 request: proto: HTTP/1.1 @@ -662,11 +566,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -676,29 +582,21 @@ 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":"f76cddc6-6212-4144-b348-7dfdf7b5626a","ip_range":"8.8.8.8","position":1,"protocol":"ICMP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "1c0fef1a-d939-44ca-9a9f-81a0c957f98b", "protocol": "ICMP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1791" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ec1e5f9d-97d7-424a-b49b-73c02899646b + - be357415-9b9e-4ec8-b71e-06de6a3a92c6 status: 200 OK code: 200 - duration: 87.313098ms + duration: 120.118095ms - id: 14 request: proto: HTTP/1.1 @@ -711,11 +609,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -725,29 +625,21 @@ 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":"f76cddc6-6212-4144-b348-7dfdf7b5626a","ip_range":"8.8.8.8","position":1,"protocol":"ICMP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "1c0fef1a-d939-44ca-9a9f-81a0c957f98b", "protocol": "ICMP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1791" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e5e8ea38-54c8-42a2-9a28-81fad89131e8 + - 1a3972da-9586-4dbd-922a-08b2e8f44534 status: 200 OK code: 200 - duration: 101.666063ms + duration: 108.575212ms - id: 15 request: proto: HTTP/1.1 @@ -764,7 +656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce method: GET response: proto: HTTP/2.0 @@ -772,31 +664,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 605 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "f4f59684-ceb6-4dd8-8194-4282821b76ce", "creation_date": "2025-10-29T22:53:42.987103+00:00", "modification_date": "2025-10-29T22:53:45.288059+00:00", "name": "tf-sg-heuristic-mcnulty", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "605" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6dd5fa7f-40f3-47a8-9ff6-2253b80543f0 + - 1de42daa-dfb8-4ec8-b2c9-1d25346247c4 status: 200 OK code: 200 - duration: 114.782734ms + duration: 109.220037ms - id: 16 request: proto: HTTP/1.1 @@ -809,11 +693,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -823,29 +709,21 @@ 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":"f76cddc6-6212-4144-b348-7dfdf7b5626a","ip_range":"8.8.8.8","position":1,"protocol":"ICMP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "1c0fef1a-d939-44ca-9a9f-81a0c957f98b", "protocol": "ICMP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1791" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4dcca2ca-e210-4e1f-8ead-71c49b5281c6 + - 34d327af-456f-4fc1-9972-ba914cf0fa4e status: 200 OK code: 200 - duration: 89.881591ms + duration: 95.351146ms - id: 17 request: proto: HTTP/1.1 @@ -862,7 +740,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce method: DELETE response: proto: HTTP/2.0 @@ -874,25 +752,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d780c76d-9daf-492c-bccc-d71ae312f97f + - 666bc02e-8f7d-43ba-b17f-2aa877d77edb status: 204 No Content code: 204 - duration: 152.298656ms + duration: 182.27768ms - id: 18 request: proto: HTTP/1.1 @@ -909,7 +779,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce method: GET response: proto: HTTP/2.0 @@ -919,26 +789,18 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"9e174c2a-9eb8-4de2-8491-c39606dd7aee","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_security_group", "resource_id": "f4f59684-ceb6-4dd8-8194-4282821b76ce"}' headers: Content-Length: - "151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bb001e46-f702-4ca4-b77f-4cb305594a8e + - ca93b4f8-775e-4684-806a-453cf37e5bcf status: 404 Not Found code: 404 - duration: 27.515131ms + duration: 25.953939ms 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 68a8e4f51..61f38a0c6 100644 --- a/internal/services/instance/testdata/security-group-remove-port.cassette.yaml +++ b/internal/services/instance/testdata/security-group-remove-port.cassette.yaml @@ -12,7 +12,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - 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}' + body: '{"name":"tf-sg-trusting-hellman","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: @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 604 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "c47c628a-c22d-48d0-b443-ee0e9d08adb9", "creation_date": "2025-10-29T22:53:37.807494+00:00", "modification_date": "2025-10-29T22:53:37.807494+00:00", "name": "tf-sg-trusting-hellman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "604" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53:37 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d14f19b7-5e00-4b24-9349-356a50a52e17 + - 9c8da80b-645a-4a20-ba9a-9ba0afe19e18 status: 201 Created code: 201 - duration: 245.982054ms + duration: 208.651027ms - id: 1 request: proto: HTTP/1.1 @@ -72,7 +64,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/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 method: PATCH response: proto: HTTP/2.0 @@ -82,29 +74,21 @@ interactions: trailer: {} content_length: 604 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "c47c628a-c22d-48d0-b443-ee0e9d08adb9", "creation_date": "2025-10-29T22:53:37.807494+00:00", "modification_date": "2025-10-29T22:53:37.807494+00:00", "name": "tf-sg-trusting-hellman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "604" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c99a288c-b629-4483-ae68-98625c81b68e + - 607f213d-245e-410f-9b83-1492c980abd7 status: 200 OK code: 200 - duration: 171.405776ms + duration: 168.02694ms - id: 2 request: proto: HTTP/1.1 @@ -123,7 +107,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/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules method: PUT response: proto: HTTP/2.0 @@ -133,29 +117,21 @@ 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":"56d2441b-f78c-4d39-a8fc-953744d85d9f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "a0bf5710-e3d3-4743-aeb6-89e749fdb88a", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1792" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 81b3bdb2-52d1-4019-856b-41c06511b78a + - 46c00261-19fc-4dae-9c5a-653c8658947a status: 200 OK code: 200 - duration: 347.775444ms + duration: 328.556762ms - id: 3 request: proto: HTTP/1.1 @@ -172,7 +148,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 method: GET response: proto: HTTP/2.0 @@ -180,31 +156,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 602 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "c47c628a-c22d-48d0-b443-ee0e9d08adb9", "creation_date": "2025-10-29T22:53:37.807494+00:00", "modification_date": "2025-10-29T22:53:38.052025+00:00", "name": "tf-sg-trusting-hellman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "syncing", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "604" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "602" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5d946b4a-f4b3-4257-9538-b120439696b2 + - 02611678-03a2-43cd-a1f8-d22e07737100 status: 200 OK code: 200 - duration: 273.391468ms + duration: 86.268712ms - id: 4 request: proto: HTTP/1.1 @@ -217,11 +185,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -231,29 +201,21 @@ 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":"56d2441b-f78c-4d39-a8fc-953744d85d9f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "a0bf5710-e3d3-4743-aeb6-89e749fdb88a", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1792" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a3deb881-0a6b-4443-a7a4-4f27f6534432 + - 5a6ebf9b-eca3-4d82-af48-a5f39f975cb5 status: 200 OK code: 200 - duration: 101.516372ms + duration: 110.205728ms - id: 5 request: proto: HTTP/1.1 @@ -266,11 +228,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -280,29 +244,21 @@ 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":"56d2441b-f78c-4d39-a8fc-953744d85d9f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "a0bf5710-e3d3-4743-aeb6-89e749fdb88a", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1792" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bfd5baea-fd40-4a3d-aa44-0d688f557b8e + - 620084d0-4975-443c-9320-7589a59109e7 status: 200 OK code: 200 - duration: 152.025992ms + duration: 92.129139ms - id: 6 request: proto: HTTP/1.1 @@ -319,7 +275,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 method: GET response: proto: HTTP/2.0 @@ -329,29 +285,21 @@ interactions: trailer: {} content_length: 604 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "c47c628a-c22d-48d0-b443-ee0e9d08adb9", "creation_date": "2025-10-29T22:53:37.807494+00:00", "modification_date": "2025-10-29T22:53:38.359010+00:00", "name": "tf-sg-trusting-hellman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "604" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 76eb556d-83d2-4151-b54f-a9ddbbd52f54 + - 07d74f55-5842-40dd-9a23-412d22439c06 status: 200 OK code: 200 - duration: 94.317431ms + duration: 305.592876ms - id: 7 request: proto: HTTP/1.1 @@ -364,11 +312,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -378,29 +328,21 @@ 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":"56d2441b-f78c-4d39-a8fc-953744d85d9f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "a0bf5710-e3d3-4743-aeb6-89e749fdb88a", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1792" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 93650f78-86ca-40f9-a818-23d3586b89af + - fe2ef2bc-9022-47e0-b50e-2969faaac1b1 status: 200 OK code: 200 - duration: 89.897699ms + duration: 257.133369ms - id: 8 request: proto: HTTP/1.1 @@ -417,7 +359,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 method: GET response: proto: HTTP/2.0 @@ -427,29 +369,21 @@ interactions: trailer: {} content_length: 604 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "c47c628a-c22d-48d0-b443-ee0e9d08adb9", "creation_date": "2025-10-29T22:53:37.807494+00:00", "modification_date": "2025-10-29T22:53:38.359010+00:00", "name": "tf-sg-trusting-hellman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "604" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e7cc043f-f784-4241-8a7c-7588e7a414d0 + - 4f5865fa-ea65-486d-a423-000a325126f6 status: 200 OK code: 200 - duration: 92.070412ms + duration: 91.370121ms - id: 9 request: proto: HTTP/1.1 @@ -462,11 +396,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -476,29 +412,21 @@ 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":"56d2441b-f78c-4d39-a8fc-953744d85d9f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "a0bf5710-e3d3-4743-aeb6-89e749fdb88a", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1792" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0ad7f10e-820b-4923-b187-ffdf0f69bff2 + - 6919c2cd-5ea0-4d2f-bc5d-9329c276c1a7 status: 200 OK code: 200 - duration: 85.131258ms + duration: 86.936951ms - id: 10 request: proto: HTTP/1.1 @@ -510,14 +438,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-funny-mirzakhani","inbound_default_policy":"accept","tags":[],"outbound_default_policy":"accept","stateful":true}' + body: '{"name":"tf-sg-trusting-hellman","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.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 method: PATCH response: proto: HTTP/2.0 @@ -527,29 +455,21 @@ interactions: trailer: {} content_length: 586 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "c47c628a-c22d-48d0-b443-ee0e9d08adb9", "creation_date": "2025-10-29T22:53:37.807494+00:00", "modification_date": "2025-10-29T22:53:39.962990+00:00", "name": "tf-sg-trusting-hellman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "syncing", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "586" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eb283f84-3484-4840-a2ba-d141f9376caf + - fa1fdd41-82f6-40c0-b36f-1b7ad36127db status: 200 OK code: 200 - duration: 273.404727ms + duration: 282.112554ms - id: 11 request: proto: HTTP/1.1 @@ -568,7 +488,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/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules method: PUT response: proto: HTTP/2.0 @@ -578,29 +498,21 @@ 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":"33f06877-217c-4c41-9a04-0c3f6327fae9","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "0c4df06b-838e-43b5-8655-8bfb8acb7079", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1794" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4d7eb9c6-53ed-49f5-bc05-ee9906eaf521 + - b92bfd33-0901-4fb2-8257-b76feef36a4f status: 200 OK code: 200 - duration: 260.227022ms + duration: 474.152104ms - id: 12 request: proto: HTTP/1.1 @@ -617,7 +529,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 method: GET response: proto: HTTP/2.0 @@ -627,29 +539,21 @@ interactions: trailer: {} content_length: 588 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "c47c628a-c22d-48d0-b443-ee0e9d08adb9", "creation_date": "2025-10-29T22:53:37.807494+00:00", "modification_date": "2025-10-29T22:53:40.246678+00:00", "name": "tf-sg-trusting-hellman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d61ca708-cb13-4c2e-9ca5-dca6283e1a9b + - e99f6bc1-7607-4790-96ab-b25eab73ba06 status: 200 OK code: 200 - duration: 107.351347ms + duration: 114.106022ms - id: 13 request: proto: HTTP/1.1 @@ -662,11 +566,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -676,29 +582,21 @@ 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":"33f06877-217c-4c41-9a04-0c3f6327fae9","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "0c4df06b-838e-43b5-8655-8bfb8acb7079", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1794" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e042f211-6242-4fcd-87b6-48111e82d05d + - ee718b4b-9c55-451c-814c-55e3b38bb25c status: 200 OK code: 200 - duration: 107.306613ms + duration: 124.230902ms - id: 14 request: proto: HTTP/1.1 @@ -711,11 +609,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -725,29 +625,21 @@ 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":"33f06877-217c-4c41-9a04-0c3f6327fae9","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "0c4df06b-838e-43b5-8655-8bfb8acb7079", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1794" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 39961028-5744-40d1-9fdc-8d2d8ffc8d3c + - c05b5125-04bf-4c39-b8bd-a2ba25ed0f99 status: 200 OK code: 200 - duration: 150.829693ms + duration: 108.013651ms - id: 15 request: proto: HTTP/1.1 @@ -764,7 +656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 method: GET response: proto: HTTP/2.0 @@ -774,29 +666,21 @@ interactions: trailer: {} content_length: 588 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "c47c628a-c22d-48d0-b443-ee0e9d08adb9", "creation_date": "2025-10-29T22:53:37.807494+00:00", "modification_date": "2025-10-29T22:53:40.246678+00:00", "name": "tf-sg-trusting-hellman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 986ba312-0a00-4f1f-b1bb-f27ddb073fb5 + - b658fe54-9b27-4ec5-bf26-bf1fa10ff3ba status: 200 OK code: 200 - duration: 96.586896ms + duration: 113.357302ms - id: 16 request: proto: HTTP/1.1 @@ -809,11 +693,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -823,29 +709,21 @@ 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":"33f06877-217c-4c41-9a04-0c3f6327fae9","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "0c4df06b-838e-43b5-8655-8bfb8acb7079", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1794" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0937e056-af6d-448c-9d14-d1213a2d8eb5 + - fc4e4d74-f237-4ecf-b483-100f27269caf status: 200 OK code: 200 - duration: 122.503092ms + duration: 89.407231ms - id: 17 request: proto: HTTP/1.1 @@ -862,7 +740,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 method: DELETE response: proto: HTTP/2.0 @@ -874,25 +752,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45bd5663-b2d8-4323-8f34-afe37f46c7cd + - cd10d9b5-7a06-414b-9cf3-13a8babc971f status: 204 No Content code: 204 - duration: 178.579535ms + duration: 141.863111ms - id: 18 request: proto: HTTP/1.1 @@ -909,7 +779,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 method: GET response: proto: HTTP/2.0 @@ -919,26 +789,18 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_security_group", "resource_id": "c47c628a-c22d-48d0-b443-ee0e9d08adb9"}' headers: Content-Length: - "151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 23199e3e-b582-4329-b870-5bf754b2cceb + - 4f4e480c-260e-4f4e-846d-7b68930a018f status: 404 Not Found code: 404 - duration: 25.700171ms + duration: 35.139963ms 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 4aaa5d92d..552d626aa 100644 --- a/internal/services/instance/testdata/security-group-rules-basic.cassette.yaml +++ b/internal/services/instance/testdata/security-group-rules-basic.cassette.yaml @@ -6,13 +6,13 @@ interactions: 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-sg-hopeful-williams","project":"105bdce1-64c0-48ab-899d-868455867ecf","stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' + body: '{"name":"tf-sg-beautiful-wozniak","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,33 +27,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8", "creation_date": "2025-10-29T22:53:37.822614+00:00", "modification_date": "2025-10-29T22:53:37.822614+00:00", "name": "tf-sg-beautiful-wozniak", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "589" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53:37 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a655cd73-b5f7-479d-bb79-6d12adfeeb1e + - fad15798-ab5d-47f3-8f0d-6be66d974c9e status: 201 Created code: 201 - duration: 186.315796ms + duration: 238.682289ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 method: GET response: proto: HTTP/2.0 @@ -78,31 +70,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8", "creation_date": "2025-10-29T22:53:37.822614+00:00", "modification_date": "2025-10-29T22:53:37.822614+00:00", "name": "tf-sg-beautiful-wozniak", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "589" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bdd726ad-d647-47aa-b280-eb1e07be57b0 + - 43b46479-3a4c-4db9-a2d8-9184f133b511 status: 200 OK code: 200 - duration: 89.143515ms + duration: 120.992517ms - id: 2 request: proto: HTTP/1.1 @@ -121,7 +105,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/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules method: PUT response: proto: HTTP/2.0 @@ -131,29 +115,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2ddd47e1-791f-44cf-83ea-8dab06ed2f8a + - 955040a8-e0c1-4aff-9721-151a4fb8829d status: 200 OK code: 200 - duration: 178.251975ms + duration: 166.087905ms - id: 3 request: proto: HTTP/1.1 @@ -166,11 +142,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -180,29 +158,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f6188d6-b92a-46b8-86c6-7484bbde57b3 + - 02624cfc-d7a7-4d6e-9cfa-87851fec44d4 status: 200 OK code: 200 - duration: 232.152589ms + duration: 141.524326ms - id: 4 request: proto: HTTP/1.1 @@ -219,7 +189,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 method: GET response: proto: HTTP/2.0 @@ -227,31 +197,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8", "creation_date": "2025-10-29T22:53:37.822614+00:00", "modification_date": "2025-10-29T22:53:37.822614+00:00", "name": "tf-sg-beautiful-wozniak", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "589" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0bb0d7be-57fc-413f-a0ff-2402b7cadb69 + - 56ebb399-7497-41d2-aba3-0218b0b8acf4 status: 200 OK code: 200 - duration: 278.647508ms + duration: 1.690228877s - id: 5 request: proto: HTTP/1.1 @@ -268,7 +230,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 method: GET response: proto: HTTP/2.0 @@ -276,31 +238,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8", "creation_date": "2025-10-29T22:53:37.822614+00:00", "modification_date": "2025-10-29T22:53:37.822614+00:00", "name": "tf-sg-beautiful-wozniak", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "589" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9a72aa19-2f34-4e14-ab8b-48b73a07aaf6 + - 24cfa910-4f13-4d43-b31c-1f1e6b8f2d5f status: 200 OK code: 200 - duration: 136.566422ms + duration: 95.403412ms - id: 6 request: proto: HTTP/1.1 @@ -313,11 +267,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -327,29 +283,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a94036f1-9d67-4f98-9f5f-479d15376080 + - fdd35a4b-684e-4384-980b-a380ac1e6590 status: 200 OK code: 200 - duration: 94.868595ms + duration: 105.865964ms - id: 7 request: proto: HTTP/1.1 @@ -366,7 +314,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 method: GET response: proto: HTTP/2.0 @@ -374,31 +322,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8", "creation_date": "2025-10-29T22:53:37.822614+00:00", "modification_date": "2025-10-29T22:53:37.822614+00:00", "name": "tf-sg-beautiful-wozniak", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "589" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fdd17344-1dc3-4d36-9f16-d4a354122e29 + - d997cb56-93a3-46c3-9744-6359dd4b22c1 status: 200 OK code: 200 - duration: 107.850572ms + duration: 102.580772ms - id: 8 request: proto: HTTP/1.1 @@ -411,11 +351,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -425,29 +367,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3c171bba-4205-41d9-85c5-40035532cf72 + - 150391cb-fe25-4a1b-8f17-231648a7c702 status: 200 OK code: 200 - duration: 99.368076ms + duration: 88.400619ms - id: 9 request: proto: HTTP/1.1 @@ -466,7 +400,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/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules method: PUT response: proto: HTTP/2.0 @@ -476,29 +410,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "ab8f4902-23f9-4bb0-a51d-0585cb0b0c19", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "8c45d747-16e5-44ce-959a-b33f43f7602c", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "a6ee099d-f881-4955-893e-66d6ff52c05f", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "d29a1ad7-4efa-424d-b9d4-890c72521d7a", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 4, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "2560" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c596a119-5238-40ce-bccb-8dce6969ecf9 + - 19d4f65c-9de7-4ce2-90db-bf9e051fcc95 status: 200 OK code: 200 - duration: 246.59114ms + duration: 263.209992ms - id: 10 request: proto: HTTP/1.1 @@ -511,11 +437,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -525,29 +453,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "ab8f4902-23f9-4bb0-a51d-0585cb0b0c19", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "8c45d747-16e5-44ce-959a-b33f43f7602c", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "a6ee099d-f881-4955-893e-66d6ff52c05f", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "d29a1ad7-4efa-424d-b9d4-890c72521d7a", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 4, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "2560" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5dd74fb0-fc38-48d3-b979-0e2b89fd1574 + - 957889a8-8d8a-4f10-9c5d-2d87fc1b8dd7 status: 200 OK code: 200 - duration: 108.679906ms + duration: 94.1987ms - id: 11 request: proto: HTTP/1.1 @@ -564,7 +484,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 method: GET response: proto: HTTP/2.0 @@ -572,31 +492,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8", "creation_date": "2025-10-29T22:53:37.822614+00:00", "modification_date": "2025-10-29T22:53:41.382520+00:00", "name": "tf-sg-beautiful-wozniak", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "589" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 37337cad-0aba-4bc2-bd38-09048894334d + - d74a74e3-81ca-4f02-a3dc-b2ad14e37dee status: 200 OK code: 200 - duration: 110.569227ms + duration: 90.972608ms - id: 12 request: proto: HTTP/1.1 @@ -613,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/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 method: GET response: proto: HTTP/2.0 @@ -621,31 +533,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8", "creation_date": "2025-10-29T22:53:37.822614+00:00", "modification_date": "2025-10-29T22:53:41.382520+00:00", "name": "tf-sg-beautiful-wozniak", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "589" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fd0af842-c49e-4e94-92f9-015cb9d6ac44 + - 0ab71b6b-ff51-416b-8662-bbf9902789c4 status: 200 OK code: 200 - duration: 94.47615ms + duration: 95.685079ms - id: 13 request: proto: HTTP/1.1 @@ -658,11 +562,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -672,29 +578,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "ab8f4902-23f9-4bb0-a51d-0585cb0b0c19", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "8c45d747-16e5-44ce-959a-b33f43f7602c", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "a6ee099d-f881-4955-893e-66d6ff52c05f", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "d29a1ad7-4efa-424d-b9d4-890c72521d7a", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 4, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "2560" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 13d5777a-a32a-4084-9685-7494aee25c4f + - 2aa0f01b-a5d9-4d26-8f3b-5d8d2dcf84c1 status: 200 OK code: 200 - duration: 140.548797ms + duration: 128.110026ms - id: 14 request: proto: HTTP/1.1 @@ -711,7 +609,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 method: GET response: proto: HTTP/2.0 @@ -719,31 +617,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8", "creation_date": "2025-10-29T22:53:37.822614+00:00", "modification_date": "2025-10-29T22:53:41.382520+00:00", "name": "tf-sg-beautiful-wozniak", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "589" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f732edb2-33af-4269-9acd-935729458d8c + - 9c32b80b-2631-4834-b8d0-d34af6b9e28d status: 200 OK code: 200 - duration: 104.674733ms + duration: 92.552592ms - id: 15 request: proto: HTTP/1.1 @@ -756,11 +646,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -770,29 +662,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "ab8f4902-23f9-4bb0-a51d-0585cb0b0c19", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "8c45d747-16e5-44ce-959a-b33f43f7602c", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "a6ee099d-f881-4955-893e-66d6ff52c05f", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "d29a1ad7-4efa-424d-b9d4-890c72521d7a", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 4, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "2560" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2ad4e729-e869-4ee1-bc6a-9176adeee556 + - cf645e91-5fb1-4373-90b5-54758a2aab1a status: 200 OK code: 200 - duration: 118.833996ms + duration: 90.911905ms - id: 16 request: proto: HTTP/1.1 @@ -811,7 +695,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/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules method: PUT response: proto: HTTP/2.0 @@ -821,29 +705,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "21af8111-a867-4828-8c13-8ba2c515032c", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "46ada773-22f3-42d6-989c-6a1b7ff83e9f", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "2047" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c2e971f3-4de9-42b1-a03f-49d924e898ef + - 84157417-9ca5-4ae6-9bff-f83c34eeb5c2 status: 200 OK code: 200 - duration: 335.199588ms + duration: 279.65443ms - id: 17 request: proto: HTTP/1.1 @@ -856,11 +732,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -870,29 +748,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "21af8111-a867-4828-8c13-8ba2c515032c", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "46ada773-22f3-42d6-989c-6a1b7ff83e9f", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "2047" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6e679fdf-cfa0-4ed2-9bb4-0114d19ee6b0 + - 131ec73d-8f7e-49c9-875c-59f1ff91ab0d status: 200 OK code: 200 - duration: 109.659794ms + duration: 80.289994ms - id: 18 request: proto: HTTP/1.1 @@ -909,7 +779,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 method: GET response: proto: HTTP/2.0 @@ -917,31 +787,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8", "creation_date": "2025-10-29T22:53:37.822614+00:00", "modification_date": "2025-10-29T22:53:42.670653+00:00", "name": "tf-sg-beautiful-wozniak", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "589" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d934b0ad-b874-4663-a6d7-5259ff4699e5 + - e7109cdb-4611-49d4-9cee-1fe153a69266 status: 200 OK code: 200 - duration: 106.189451ms + duration: 97.467553ms - id: 19 request: proto: HTTP/1.1 @@ -958,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/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 method: GET response: proto: HTTP/2.0 @@ -966,31 +828,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8", "creation_date": "2025-10-29T22:53:37.822614+00:00", "modification_date": "2025-10-29T22:53:42.670653+00:00", "name": "tf-sg-beautiful-wozniak", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "589" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 14e2e42e-eb86-44e2-96c2-3ba94b93cdad + - 9fd2f7a0-4f37-46d4-ba6c-3e42adefeb81 status: 200 OK code: 200 - duration: 99.257101ms + duration: 113.023659ms - id: 20 request: proto: HTTP/1.1 @@ -1003,11 +857,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1017,29 +873,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "21af8111-a867-4828-8c13-8ba2c515032c", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "46ada773-22f3-42d6-989c-6a1b7ff83e9f", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "2047" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 55b001be-1a7a-403e-b009-dff4e390fe3d + - e6dab0f9-e86f-4461-941f-3a7d783567ca status: 200 OK code: 200 - duration: 87.298661ms + duration: 92.510354ms - id: 21 request: proto: HTTP/1.1 @@ -1056,7 +904,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 method: GET response: proto: HTTP/2.0 @@ -1064,31 +912,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8", "creation_date": "2025-10-29T22:53:37.822614+00:00", "modification_date": "2025-10-29T22:53:42.670653+00:00", "name": "tf-sg-beautiful-wozniak", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "589" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ecfd0263-2709-420d-bceb-580cff6de9a3 + - 4778b813-802b-4423-9c98-e0e98088c100 status: 200 OK code: 200 - duration: 95.347635ms + duration: 105.011458ms - id: 22 request: proto: HTTP/1.1 @@ -1101,11 +941,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1115,29 +957,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "21af8111-a867-4828-8c13-8ba2c515032c", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 1, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "46ada773-22f3-42d6-989c-6a1b7ff83e9f", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "2047" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9c747486-f75b-4916-beaa-734e7a4bc34a + - 166b7f43-d3be-4ab7-90bc-57d33c412635 status: 200 OK code: 200 - duration: 100.891735ms + duration: 112.705864ms - id: 23 request: proto: HTTP/1.1 @@ -1156,7 +990,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/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules method: PUT response: proto: HTTP/2.0 @@ -1166,29 +1000,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 072a8111-91a8-46ec-8eaa-616dc310ae39 + - c2b27772-9ca1-409c-887a-1b5172a2cac7 status: 200 OK code: 200 - duration: 305.446979ms + duration: 320.431626ms - id: 24 request: proto: HTTP/1.1 @@ -1201,11 +1027,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1215,29 +1043,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8c5cbdc6-4e4b-42f9-8213-030638c5efea + - 3fb8725c-87f9-4cba-8ba6-14e0cb7cd4b9 status: 200 OK code: 200 - duration: 96.529421ms + duration: 105.008783ms - id: 25 request: proto: HTTP/1.1 @@ -1254,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/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 method: GET response: proto: HTTP/2.0 @@ -1262,31 +1082,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8", "creation_date": "2025-10-29T22:53:37.822614+00:00", "modification_date": "2025-10-29T22:53:44.137151+00:00", "name": "tf-sg-beautiful-wozniak", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "589" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8241fecb-8a11-46a7-bbd9-f0d7d570dee8 + - 1b0a4b19-a9b0-42c9-b7f7-56f485cb1ef9 status: 200 OK code: 200 - duration: 95.885905ms + duration: 104.457292ms - id: 26 request: proto: HTTP/1.1 @@ -1303,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/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 method: GET response: proto: HTTP/2.0 @@ -1311,31 +1123,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8", "creation_date": "2025-10-29T22:53:37.822614+00:00", "modification_date": "2025-10-29T22:53:44.137151+00:00", "name": "tf-sg-beautiful-wozniak", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "589" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e48ddd13-9496-4822-9ca7-8e21c00ea3ea + - 0600ed0b-5365-4f5c-8e58-9c3ea4d1653e status: 200 OK code: 200 - duration: 106.10249ms + duration: 97.920289ms - id: 27 request: proto: HTTP/1.1 @@ -1348,11 +1152,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1362,29 +1168,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 221f0a45-1286-47c3-b7cb-c4ebad42bdea + - 21110011-3853-4d15-9ef5-5262516e0c86 status: 200 OK code: 200 - duration: 83.5836ms + duration: 115.337515ms - id: 28 request: proto: HTTP/1.1 @@ -1403,7 +1201,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/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules method: PUT response: proto: HTTP/2.0 @@ -1413,29 +1211,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2925c324-1d8d-4b32-8d6c-4ba59594d52d + - a392d2f6-7f6f-4fe0-be40-f91ffdaeb753 status: 200 OK code: 200 - duration: 139.801572ms + duration: 164.029901ms - id: 29 request: proto: HTTP/1.1 @@ -1452,7 +1242,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 method: DELETE response: proto: HTTP/2.0 @@ -1464,25 +1254,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ccf6a015-7213-45a5-9ef2-d9ee0c511e11 + - 0a9605c4-ded5-4b0f-b159-ce94f5ce1e70 status: 204 No Content code: 204 - duration: 138.463654ms + duration: 142.16608ms - id: 30 request: proto: HTTP/1.1 @@ -1499,7 +1281,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 method: GET response: proto: HTTP/2.0 @@ -1509,26 +1291,18 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"8b2602d3-5bc2-492e-b1d9-cd37cb5c6305","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_security_group", "resource_id": "d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8"}' headers: Content-Length: - "151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 19f74ca5-f7e8-4367-9217-06cfcc8d2676 + - df5901f9-1213-462f-87cd-47758647c363 status: 404 Not Found code: 404 - duration: 31.25491ms + duration: 31.13223ms 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 e0cbca057..435f4cc3f 100644 --- a/internal/services/instance/testdata/security-group-rules-basic2.cassette.yaml +++ b/internal/services/instance/testdata/security-group-rules-basic2.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 194 + content_length: 196 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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}' + body: '{"name":"tf-sg-competent-bose","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,33 +27,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 584 + content_length: 586 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "2fc063dc-c801-4f92-b55b-d278e743545c", "creation_date": "2025-10-29T23:08:00.342432+00:00", "modification_date": "2025-10-29T23:08:00.342432+00:00", "name": "tf-sg-competent-bose", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "584" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "586" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 23:08:00 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c4f64410-e117-4828-b47c-d209bc49dd60 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/2fc063dc-c801-4f92-b55b-d278e743545c Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 4947bff8-9d7c-4184-a541-9e3fac2066e7 + - 0f068e08-9866-44a6-89d1-1f534a540e93 status: 201 Created code: 201 - duration: 207.923126ms + duration: 282.550507ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/2fc063dc-c801-4f92-b55b-d278e743545c method: GET response: proto: HTTP/2.0 @@ -78,31 +70,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 584 + content_length: 586 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "2fc063dc-c801-4f92-b55b-d278e743545c", "creation_date": "2025-10-29T23:08:00.342432+00:00", "modification_date": "2025-10-29T23:08:00.342432+00:00", "name": "tf-sg-competent-bose", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "584" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "586" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 23:08:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 81a6fd03-9863-45a2-92c0-7d35a7c2d670 + - b17e27d3-6906-43e4-a3ef-0f339f343863 status: 200 OK code: 200 - duration: 131.965649ms + duration: 117.272129ms - id: 2 request: proto: HTTP/1.1 @@ -121,7 +105,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/c4f64410-e117-4828-b47c-d209bc49dd60/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/2fc063dc-c801-4f92-b55b-d278e743545c/rules method: PUT response: proto: HTTP/2.0 @@ -131,29 +115,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "0ada160e-ab2f-4475-b06c-f825bd4a997e", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "fe681240-a8bb-4e76-a96f-3b237a9ab97c", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "268aeb39-c04f-40ad-bd8d-81be40a0181d", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "745cb151-497a-42b7-adc6-a3b3ebe5aab1", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 4, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "2560" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 23:08:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 484c4343-0e39-4aac-862d-b5e3a5872805 + - b9e8e11c-a973-477d-b434-8bb27eb9c414 status: 200 OK code: 200 - duration: 254.496188ms + duration: 278.858449ms - id: 3 request: proto: HTTP/1.1 @@ -166,11 +142,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/2fc063dc-c801-4f92-b55b-d278e743545c/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -180,29 +158,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "0ada160e-ab2f-4475-b06c-f825bd4a997e", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "fe681240-a8bb-4e76-a96f-3b237a9ab97c", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "268aeb39-c04f-40ad-bd8d-81be40a0181d", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "745cb151-497a-42b7-adc6-a3b3ebe5aab1", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 4, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "2560" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 23:08:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 5b4e5657-8456-48e9-90e8-3f043d54994a + - 9225928a-efa9-4fc3-979a-cac28d862448 status: 200 OK code: 200 - duration: 251.548214ms + duration: 111.697093ms - id: 4 request: proto: HTTP/1.1 @@ -219,7 +189,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/2fc063dc-c801-4f92-b55b-d278e743545c method: GET response: proto: HTTP/2.0 @@ -227,31 +197,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 584 + content_length: 586 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "2fc063dc-c801-4f92-b55b-d278e743545c", "creation_date": "2025-10-29T23:08:00.342432+00:00", "modification_date": "2025-10-29T23:08:00.803326+00:00", "name": "tf-sg-competent-bose", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "584" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "586" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 23:08: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 + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 1cd60519-9bcf-4d2b-a8c5-fee24968d7aa + - c8f24c70-3803-498c-9cef-94b1d37cec3c status: 200 OK code: 200 - duration: 190.687279ms + duration: 116.876473ms - id: 5 request: proto: HTTP/1.1 @@ -264,11 +226,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/2fc063dc-c801-4f92-b55b-d278e743545c/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -278,29 +242,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "0ada160e-ab2f-4475-b06c-f825bd4a997e", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "fe681240-a8bb-4e76-a96f-3b237a9ab97c", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "268aeb39-c04f-40ad-bd8d-81be40a0181d", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "745cb151-497a-42b7-adc6-a3b3ebe5aab1", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 4, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "2560" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 23:08: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 + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 929a23b8-3fb4-4d16-821f-fbc6bf2f44cc + - 192df918-89d4-45a7-85d7-1d30b928afd3 status: 200 OK code: 200 - duration: 113.676669ms + duration: 115.603546ms - id: 6 request: proto: HTTP/1.1 @@ -313,11 +269,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/2fc063dc-c801-4f92-b55b-d278e743545c/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -327,29 +285,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "0ada160e-ab2f-4475-b06c-f825bd4a997e", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "fe681240-a8bb-4e76-a96f-3b237a9ab97c", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "268aeb39-c04f-40ad-bd8d-81be40a0181d", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "745cb151-497a-42b7-adc6-a3b3ebe5aab1", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 4, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "2560" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 23:08: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 + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - bab557be-7dd8-413c-be06-c752e1771915 + - 8cfbf461-daf5-40bc-a92f-99d26447b7dc status: 200 OK code: 200 - duration: 103.032002ms + duration: 126.823621ms - id: 7 request: proto: HTTP/1.1 @@ -368,7 +318,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/c4f64410-e117-4828-b47c-d209bc49dd60/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/2fc063dc-c801-4f92-b55b-d278e743545c/rules method: PUT response: proto: HTTP/2.0 @@ -378,29 +328,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 23:08: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 + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - dd9ee7d1-3e42-4bcc-a04b-5618ff8d4b74 + - f18ad219-3806-4a21-9b86-a9c5bcc944c4 status: 200 OK code: 200 - duration: 256.149933ms + duration: 322.825221ms - id: 8 request: proto: HTTP/1.1 @@ -417,7 +359,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/2fc063dc-c801-4f92-b55b-d278e743545c method: DELETE response: proto: HTTP/2.0 @@ -429,25 +371,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 23:08: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 + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 04c1f58e-3842-4d71-89a5-a4585f51ce51 + - 3085e285-6f6f-4ac5-aa73-463d157643d5 status: 204 No Content code: 204 - duration: 138.596348ms + duration: 163.830589ms - id: 9 request: proto: HTTP/1.1 @@ -464,7 +398,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/2fc063dc-c801-4f92-b55b-d278e743545c method: GET response: proto: HTTP/2.0 @@ -474,26 +408,18 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"c4f64410-e117-4828-b47c-d209bc49dd60","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_security_group", "resource_id": "2fc063dc-c801-4f92-b55b-d278e743545c"}' headers: Content-Length: - "151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 23:08: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 + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 9c1e4d99-6033-4c72-8ecf-76002bb23dc5 + - 9a9e7c5e-55e1-4e89-b806-b7a84115113d status: 404 Not Found code: 404 - duration: 38.764301ms + duration: 32.930451ms 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 ae907d1d3..8df06d143 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: 198 + content_length: 197 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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}' + body: '{"name":"tf-sg-wizardly-euclid","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,33 +27,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 587 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "ddb5540b-6708-4f84-a077-8c980819d368", "creation_date": "2025-10-29T22:53:44.609327+00:00", "modification_date": "2025-10-29T22:53:44.609327+00:00", "name": "tf-sg-wizardly-euclid", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "587" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:38:51 GMT + - Wed, 29 Oct 2025 22:53:44 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ddb5540b-6708-4f84-a077-8c980819d368 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa85f65c-ae10-4809-bdd5-537d0241345c + - 06da8c00-78fe-47c4-a413-4be32368245d status: 201 Created code: 201 - duration: 242.302471ms + duration: 183.887189ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ddb5540b-6708-4f84-a077-8c980819d368 method: GET response: proto: HTTP/2.0 @@ -78,31 +70,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 587 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "ddb5540b-6708-4f84-a077-8c980819d368", "creation_date": "2025-10-29T22:53:44.609327+00:00", "modification_date": "2025-10-29T22:53:44.609327+00:00", "name": "tf-sg-wizardly-euclid", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "587" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:38:51 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4242f4bb-6c91-4838-ae91-dac84c1c0e10 + - 390fe22b-fd24-4924-9d1c-e88f0468d955 status: 200 OK code: 200 - duration: 105.704928ms + duration: 92.22992ms - id: 2 request: proto: HTTP/1.1 @@ -121,7 +105,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/0ac4ec05-c928-4668-9455-1068a5771614/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ddb5540b-6708-4f84-a077-8c980819d368/rules method: PUT response: proto: HTTP/2.0 @@ -131,29 +115,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "82af2cb8-a4fa-4acd-86f0-3637389cd83f", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "d870bd7a-25ee-424d-8801-18ed4451d3c9", "protocol": "TCP", "direction": "inbound", "ip_range": "1.2.0.0/16", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "4e8437fe-ec4e-4af7-a31f-9c78f8225e35", "protocol": "TCP", "direction": "outbound", "ip_range": "1.2.3.0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "89e13211-2f60-4430-bc50-6ea47e5509c8", "protocol": "TCP", "direction": "outbound", "ip_range": "2002::/24", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 4, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "aaf05951-95e8-46d9-b572-6116320ff474", "protocol": "TCP", "direction": "outbound", "ip_range": "2002:0:0:1234::/64", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 5, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "e7f93b68-2829-4746-9d8d-b386506f5cd4", "protocol": "TCP", "direction": "outbound", "ip_range": "2002::1234:abcd:ffff:c0a8:101", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 6, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "3100" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:38:52 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f54471a5-cb32-42aa-9126-553bda21f0aa + - 495f7c48-56b6-4f3a-ae9b-725383455617 status: 200 OK code: 200 - duration: 743.459223ms + duration: 304.894626ms - id: 3 request: proto: HTTP/1.1 @@ -166,11 +142,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614/rules?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ddb5540b-6708-4f84-a077-8c980819d368/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -180,29 +158,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "82af2cb8-a4fa-4acd-86f0-3637389cd83f", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "d870bd7a-25ee-424d-8801-18ed4451d3c9", "protocol": "TCP", "direction": "inbound", "ip_range": "1.2.0.0/16", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "4e8437fe-ec4e-4af7-a31f-9c78f8225e35", "protocol": "TCP", "direction": "outbound", "ip_range": "1.2.3.0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "89e13211-2f60-4430-bc50-6ea47e5509c8", "protocol": "TCP", "direction": "outbound", "ip_range": "2002::/24", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 4, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "aaf05951-95e8-46d9-b572-6116320ff474", "protocol": "TCP", "direction": "outbound", "ip_range": "2002:0:0:1234::/64", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 5, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "e7f93b68-2829-4746-9d8d-b386506f5cd4", "protocol": "TCP", "direction": "outbound", "ip_range": "2002::1234:abcd:ffff:c0a8:101", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 6, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "3100" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:38:52 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 82d29ab6-bd32-4c39-87be-1867e9344f8f + - f50cb135-8c15-4cfe-be6d-a0f75401c21f status: 200 OK code: 200 - duration: 113.602828ms + duration: 107.827253ms - id: 4 request: proto: HTTP/1.1 @@ -219,7 +189,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ddb5540b-6708-4f84-a077-8c980819d368 method: GET response: proto: HTTP/2.0 @@ -227,31 +197,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 587 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "ddb5540b-6708-4f84-a077-8c980819d368", "creation_date": "2025-10-29T22:53:44.609327+00:00", "modification_date": "2025-10-29T22:53:45.051279+00:00", "name": "tf-sg-wizardly-euclid", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "587" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:38:53 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6e898c4f-fa18-4a6c-bfc3-4a8993c2befd + - 37ef374f-00cd-402d-89a0-d0ef7f81304e status: 200 OK code: 200 - duration: 88.573203ms + duration: 114.485252ms - id: 5 request: proto: HTTP/1.1 @@ -264,11 +226,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614/rules?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ddb5540b-6708-4f84-a077-8c980819d368/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -278,29 +242,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "82af2cb8-a4fa-4acd-86f0-3637389cd83f", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "d870bd7a-25ee-424d-8801-18ed4451d3c9", "protocol": "TCP", "direction": "inbound", "ip_range": "1.2.0.0/16", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "4e8437fe-ec4e-4af7-a31f-9c78f8225e35", "protocol": "TCP", "direction": "outbound", "ip_range": "1.2.3.0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "89e13211-2f60-4430-bc50-6ea47e5509c8", "protocol": "TCP", "direction": "outbound", "ip_range": "2002::/24", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 4, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "aaf05951-95e8-46d9-b572-6116320ff474", "protocol": "TCP", "direction": "outbound", "ip_range": "2002:0:0:1234::/64", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 5, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "e7f93b68-2829-4746-9d8d-b386506f5cd4", "protocol": "TCP", "direction": "outbound", "ip_range": "2002::1234:abcd:ffff:c0a8:101", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 6, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "3100" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:38:53 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c9b41424-69dd-442a-9050-4c083bf4b736 + - 2fc15882-1daf-420d-bc70-04be330ada66 status: 200 OK code: 200 - duration: 122.208906ms + duration: 87.900976ms - id: 6 request: proto: HTTP/1.1 @@ -313,11 +269,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614/rules?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ddb5540b-6708-4f84-a077-8c980819d368/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -327,29 +285,21 @@ 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":"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"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "82af2cb8-a4fa-4acd-86f0-3637389cd83f", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "d870bd7a-25ee-424d-8801-18ed4451d3c9", "protocol": "TCP", "direction": "inbound", "ip_range": "1.2.0.0/16", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 2, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "4e8437fe-ec4e-4af7-a31f-9c78f8225e35", "protocol": "TCP", "direction": "outbound", "ip_range": "1.2.3.0", "dest_ip_range": null, "dest_port_from": 80, "dest_port_to": null, "position": 3, "editable": true, "action": "accept", "zone": "fr-par-1"}, {"id": "89e13211-2f60-4430-bc50-6ea47e5509c8", "protocol": "TCP", "direction": "outbound", "ip_range": "2002::/24", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 4, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "aaf05951-95e8-46d9-b572-6116320ff474", "protocol": "TCP", "direction": "outbound", "ip_range": "2002:0:0:1234::/64", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 5, "editable": true, "action": "drop", "zone": "fr-par-1"}, {"id": "e7f93b68-2829-4746-9d8d-b386506f5cd4", "protocol": "TCP", "direction": "outbound", "ip_range": "2002::1234:abcd:ffff:c0a8:101", "dest_ip_range": null, "dest_port_from": 443, "dest_port_to": null, "position": 6, "editable": true, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "3100" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:38:53 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ade48ba0-8e3f-4e86-aa30-6be15614033c + - 9f73a248-fa32-438f-be8b-12df5caaefbd status: 200 OK code: 200 - duration: 92.252798ms + duration: 104.100185ms - id: 7 request: proto: HTTP/1.1 @@ -368,7 +318,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/0ac4ec05-c928-4668-9455-1068a5771614/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ddb5540b-6708-4f84-a077-8c980819d368/rules method: PUT response: proto: HTTP/2.0 @@ -378,29 +328,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:38:54 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f04859a8-edbc-4192-a42d-0611a11ef328 + - 4bb6be8c-ef9e-4617-a96c-6855c1b1d779 status: 200 OK code: 200 - duration: 274.524413ms + duration: 353.800241ms - id: 8 request: proto: HTTP/1.1 @@ -417,7 +359,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ddb5540b-6708-4f84-a077-8c980819d368 method: DELETE response: proto: HTTP/2.0 @@ -429,25 +371,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:38:54 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4f35d351-9d0d-462c-8fd0-3be080bd2250 + - 886c2cd9-6ffe-4c58-b1e5-d6a5a450d3bb status: 204 No Content code: 204 - duration: 157.122426ms + duration: 168.82162ms - id: 9 request: proto: HTTP/1.1 @@ -464,7 +398,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ddb5540b-6708-4f84-a077-8c980819d368 method: GET response: proto: HTTP/2.0 @@ -474,26 +408,18 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"0ac4ec05-c928-4668-9455-1068a5771614","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_security_group", "resource_id": "ddb5540b-6708-4f84-a077-8c980819d368"}' headers: Content-Length: - "151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:38:54 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fa361f84-8c9f-4371-8c72-6ced44382141 + - aaa5e64f-a571-4b8f-b2ef-97a586c77dbd status: 404 Not Found code: 404 - duration: 28.075209ms + duration: 40.458559ms diff --git a/internal/services/instance/testdata/security-group-tags.cassette.yaml b/internal/services/instance/testdata/security-group-tags.cassette.yaml index 844a2f400..b8c7b034b 100644 --- a/internal/services/instance/testdata/security-group-tags.cassette.yaml +++ b/internal/services/instance/testdata/security-group-tags.cassette.yaml @@ -12,7 +12,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - 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}' + body: '{"name":"tf-sg-agitated-driscoll","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: @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 601 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb", "creation_date": "2025-10-29T22:53:37.812623+00:00", "modification_date": "2025-10-29T22:53:37.812623+00:00", "name": "tf-sg-agitated-driscoll", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["foo", "bar"], "zone": "fr-par-1"}}' headers: Content-Length: - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:53:37 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 305ed0ac-8a21-420d-b867-3cfe19df135d + - 808b05b9-5606-4e18-9720-570d8edfbfbe status: 201 Created code: 201 - duration: 183.682529ms + duration: 175.093313ms - id: 1 request: proto: HTTP/1.1 @@ -72,7 +64,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/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb method: PATCH response: proto: HTTP/2.0 @@ -82,29 +74,21 @@ interactions: trailer: {} content_length: 601 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb", "creation_date": "2025-10-29T22:53:37.812623+00:00", "modification_date": "2025-10-29T22:53:37.812623+00:00", "name": "tf-sg-agitated-driscoll", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["foo", "bar"], "zone": "fr-par-1"}}' headers: Content-Length: - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b7f5d5be-1731-41e6-ab61-8cbed4e2a248 + - caf33073-b09a-4df2-b9eb-1998edc44167 status: 200 OK code: 200 - duration: 141.456962ms + duration: 216.901365ms - id: 2 request: proto: HTTP/1.1 @@ -123,7 +107,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/41577ea7-b7f8-4aac-8ac6-3808ab88beb9/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules method: PUT response: proto: HTTP/2.0 @@ -133,29 +117,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 65900ccb-7767-42e2-9264-fb49fecb3b86 + - 58efb3f5-71d4-4eca-9a27-cf62bb8ad3d5 status: 200 OK code: 200 - duration: 194.650462ms + duration: 168.251189ms - id: 3 request: proto: HTTP/1.1 @@ -172,7 +148,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb method: GET response: proto: HTTP/2.0 @@ -182,29 +158,21 @@ interactions: trailer: {} content_length: 601 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb", "creation_date": "2025-10-29T22:53:37.812623+00:00", "modification_date": "2025-10-29T22:53:37.812623+00:00", "name": "tf-sg-agitated-driscoll", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["foo", "bar"], "zone": "fr-par-1"}}' headers: Content-Length: - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3f88d4d8-bf1e-48d6-9c4f-cc95a8b1c31d + - e1444248-d1c9-471e-b2ea-020c45f6bf31 status: 200 OK code: 200 - duration: 110.378511ms + duration: 103.059727ms - id: 4 request: proto: HTTP/1.1 @@ -217,11 +185,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -231,29 +201,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dab19b66-85b8-4e24-8661-0db25e528efb + - af91419c-7468-4761-8c46-d8caedae01d4 status: 200 OK code: 200 - duration: 91.991963ms + duration: 83.222175ms - id: 5 request: proto: HTTP/1.1 @@ -270,7 +232,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb method: GET response: proto: HTTP/2.0 @@ -280,29 +242,21 @@ interactions: trailer: {} content_length: 601 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb", "creation_date": "2025-10-29T22:53:37.812623+00:00", "modification_date": "2025-10-29T22:53:37.812623+00:00", "name": "tf-sg-agitated-driscoll", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["foo", "bar"], "zone": "fr-par-1"}}' headers: Content-Length: - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 602a3919-626d-4d27-94b4-b4aeec312dae + - c819c11d-ab4b-4321-81c6-2ff2988edc27 status: 200 OK code: 200 - duration: 111.294169ms + duration: 104.77289ms - id: 6 request: proto: HTTP/1.1 @@ -315,11 +269,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -329,29 +285,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b109d6be-d13f-445b-b965-b0710be9c282 + - 4b223bc2-2d84-4535-888d-996d7e3ac18f status: 200 OK code: 200 - duration: 92.701603ms + duration: 83.285084ms - id: 7 request: proto: HTTP/1.1 @@ -368,7 +316,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb method: GET response: proto: HTTP/2.0 @@ -378,29 +326,21 @@ interactions: trailer: {} content_length: 601 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb", "creation_date": "2025-10-29T22:53:37.812623+00:00", "modification_date": "2025-10-29T22:53:37.812623+00:00", "name": "tf-sg-agitated-driscoll", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["foo", "bar"], "zone": "fr-par-1"}}' headers: Content-Length: - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 904389cb-642a-472e-92c5-2f2344caf336 + - 43b130c7-bbab-4820-8603-207d156eaf83 status: 200 OK code: 200 - duration: 107.394899ms + duration: 242.659055ms - id: 8 request: proto: HTTP/1.1 @@ -413,11 +353,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -427,29 +369,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3c51638d-1bcc-45c3-9b2a-e4b733cba8b1 + - 1b4c0fe3-4c8f-457f-88e0-a6a7afa8ce6b status: 200 OK code: 200 - duration: 102.309375ms + duration: 95.980951ms - id: 9 request: proto: HTTP/1.1 @@ -461,14 +395,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-flamboyant-agnesi","inbound_default_policy":"accept","tags":["foo","buzz"],"outbound_default_policy":"accept","stateful":true}' + body: '{"name":"tf-sg-agitated-driscoll","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.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb method: PATCH response: proto: HTTP/2.0 @@ -478,29 +412,21 @@ interactions: trailer: {} content_length: 600 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb", "creation_date": "2025-10-29T22:53:37.812623+00:00", "modification_date": "2025-10-29T22:53:39.530458+00:00", "name": "tf-sg-agitated-driscoll", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "syncing", "tags": ["foo", "buzz"], "zone": "fr-par-1"}}' headers: Content-Length: - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b429bdc8-8438-463a-984d-a06eac3dbc64 + - 155e6004-4d5c-4403-bf1a-5993a0f93b6e status: 200 OK code: 200 - duration: 266.775624ms + duration: 242.738484ms - id: 10 request: proto: HTTP/1.1 @@ -519,7 +445,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/41577ea7-b7f8-4aac-8ac6-3808ab88beb9/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules method: PUT response: proto: HTTP/2.0 @@ -529,29 +455,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bad7c69c-8463-4ff1-b344-b1106705e8de + - 7af0cede-f4a4-4ad3-925a-baaf13d9fe89 status: 200 OK code: 200 - duration: 163.37335ms + duration: 150.23831ms - id: 11 request: proto: HTTP/1.1 @@ -568,7 +486,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb method: GET response: proto: HTTP/2.0 @@ -576,31 +494,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 602 + content_length: 600 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb", "creation_date": "2025-10-29T22:53:37.812623+00:00", "modification_date": "2025-10-29T22:53:39.530458+00:00", "name": "tf-sg-agitated-driscoll", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "syncing", "tags": ["foo", "buzz"], "zone": "fr-par-1"}}' headers: Content-Length: - - "602" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "600" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 020400ad-dc52-40d0-9929-ef06c682f64a + - 18b8285d-3274-428a-80ef-290cee4c7e37 status: 200 OK code: 200 - duration: 95.51106ms + duration: 109.487376ms - id: 12 request: proto: HTTP/1.1 @@ -613,11 +523,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -627,29 +539,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0ce5be43-a77e-43b9-b26f-b286bb146a19 + - 693dfba6-4d54-41dd-8be0-39d8c568731e status: 200 OK code: 200 - duration: 128.30528ms + duration: 93.378355ms - id: 13 request: proto: HTTP/1.1 @@ -666,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/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb method: GET response: proto: HTTP/2.0 @@ -676,29 +580,21 @@ interactions: trailer: {} content_length: 602 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb", "creation_date": "2025-10-29T22:53:37.812623+00:00", "modification_date": "2025-10-29T22:53:40.202022+00:00", "name": "tf-sg-agitated-driscoll", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["foo", "buzz"], "zone": "fr-par-1"}}' headers: Content-Length: - "602" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7b377018-25ff-463d-962e-98eaf9650e51 + - 61df0e3c-d982-4094-a80a-ff3e0e7d345e status: 200 OK code: 200 - duration: 102.598769ms + duration: 97.40256ms - id: 14 request: proto: HTTP/1.1 @@ -711,11 +607,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -725,29 +623,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f3715e63-5338-4b75-9645-e809377a7916 + - 33f42b80-6c53-4165-912d-b790f5654d77 status: 200 OK code: 200 - duration: 91.32273ms + duration: 100.984117ms - id: 15 request: proto: HTTP/1.1 @@ -764,7 +654,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb method: GET response: proto: HTTP/2.0 @@ -774,29 +664,21 @@ interactions: trailer: {} content_length: 602 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb", "creation_date": "2025-10-29T22:53:37.812623+00:00", "modification_date": "2025-10-29T22:53:40.202022+00:00", "name": "tf-sg-agitated-driscoll", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["foo", "buzz"], "zone": "fr-par-1"}}' headers: Content-Length: - "602" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6c125f1e-f36e-4057-acc2-4d0554a6eed5 + - 86435471-d293-4851-93a3-28ef968cbaf9 status: 200 OK code: 200 - duration: 98.268611ms + duration: 102.749998ms - id: 16 request: proto: HTTP/1.1 @@ -809,11 +691,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -823,29 +707,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c089f1b7-c85e-4353-81bf-1568ff10a6e0 + - a81a93e2-dcc6-4529-93f2-5d84fda29a87 status: 200 OK code: 200 - duration: 110.374926ms + duration: 102.24796ms - id: 17 request: proto: HTTP/1.1 @@ -857,14 +733,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-flamboyant-agnesi","inbound_default_policy":"accept","tags":[],"outbound_default_policy":"accept","stateful":true}' + body: '{"name":"tf-sg-agitated-driscoll","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.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb method: PATCH response: proto: HTTP/2.0 @@ -874,29 +750,21 @@ interactions: trailer: {} content_length: 587 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb", "creation_date": "2025-10-29T22:53:37.812623+00:00", "modification_date": "2025-10-29T22:53:41.063373+00:00", "name": "tf-sg-agitated-driscoll", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "syncing", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "587" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9fd9efcc-bae9-4228-afc0-161235510d72 + - b0db046c-fa5c-40ea-b1e9-71770028ae41 status: 200 OK code: 200 - duration: 230.935369ms + duration: 246.653315ms - id: 18 request: proto: HTTP/1.1 @@ -915,7 +783,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/41577ea7-b7f8-4aac-8ac6-3808ab88beb9/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules method: PUT response: proto: HTTP/2.0 @@ -925,29 +793,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2fe1b15f-61a5-479e-9c96-dbdc76051743 + - e0998b74-9df0-46a4-ab7b-85efaa1eae58 status: 200 OK code: 200 - duration: 172.665753ms + duration: 154.595007ms - id: 19 request: proto: HTTP/1.1 @@ -964,7 +824,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb method: GET response: proto: HTTP/2.0 @@ -974,29 +834,21 @@ interactions: trailer: {} content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb", "creation_date": "2025-10-29T22:53:37.812623+00:00", "modification_date": "2025-10-29T22:53:41.284894+00:00", "name": "tf-sg-agitated-driscoll", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "589" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa614917-69c3-48b4-9c9d-ba399e840608 + - 87fa96a7-cb61-47b5-b848-8e4ffb687982 status: 200 OK code: 200 - duration: 105.748133ms + duration: 92.754169ms - id: 20 request: proto: HTTP/1.1 @@ -1009,11 +861,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1023,29 +877,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8cf69371-8cdf-4071-9ed1-82ecf6a918b9 + - b89a9f6d-2ada-4fc0-96f3-c1c164b74b99 status: 200 OK code: 200 - duration: 83.175588ms + duration: 88.489475ms - id: 21 request: proto: HTTP/1.1 @@ -1062,7 +908,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb method: GET response: proto: HTTP/2.0 @@ -1072,29 +918,21 @@ interactions: trailer: {} content_length: 589 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb", "creation_date": "2025-10-29T22:53:37.812623+00:00", "modification_date": "2025-10-29T22:53:41.284894+00:00", "name": "tf-sg-agitated-driscoll", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "589" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 605120a5-985f-4301-af92-da25719ff21c + - 58304f11-a435-4bd8-8926-0a9355d94f81 status: 200 OK code: 200 - duration: 95.652428ms + duration: 80.816408ms - id: 22 request: proto: HTTP/1.1 @@ -1107,11 +945,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1121,29 +961,21 @@ interactions: trailer: {} content_length: 1536 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: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}]}' headers: Content-Length: - "1536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b3bed651-db84-4413-b199-631e8b99daac + - 894c2339-6b82-4b39-a0ac-886dfee18ff0 status: 200 OK code: 200 - duration: 91.161819ms + duration: 85.18169ms - id: 23 request: proto: HTTP/1.1 @@ -1160,7 +992,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb method: DELETE response: proto: HTTP/2.0 @@ -1172,25 +1004,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab720539-477d-4937-8dc6-345247f0b43b + - 3c80a6f7-3fc8-4cd0-a5e4-b8bd671c40b8 status: 204 No Content code: 204 - duration: 135.228621ms + duration: 160.312948ms - id: 24 request: proto: HTTP/1.1 @@ -1207,7 +1031,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb method: GET response: proto: HTTP/2.0 @@ -1217,26 +1041,18 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"41577ea7-b7f8-4aac-8ac6-3808ab88beb9","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_security_group", "resource_id": "033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb"}' headers: Content-Length: - "151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 420856fc-c4b5-4ddf-9d81-33b503b3bd18 + - bda40915-fe59-425c-be7a-77901bc9ee50 status: 404 Not Found code: 404 - duration: 25.792112ms + duration: 28.465705ms 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 e220c1115..590ce57cb 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,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 218 + content_length: 225 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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}' + body: '{"name":"tf-sg-crazy-stonebraker","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: @@ -27,33 +27,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 598 + content_length: 605 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "63f12fca-4896-4280-97bd-04962a6949e3", "creation_date": "2025-10-29T22:53:40.627068+00:00", "modification_date": "2025-10-29T22:53:40.627068+00:00", "name": "tf-sg-crazy-stonebraker", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "598" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "605" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53:40 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/21ed41b8-84b6-42ef-a252-d3e17865d8cb + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/63f12fca-4896-4280-97bd-04962a6949e3 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7720cd64-afeb-4506-9aa5-d03743629a76 + - 96914e35-584b-402f-b173-72c97712af53 status: 201 Created code: 201 - duration: 248.659221ms + duration: 215.46012ms - id: 1 request: proto: HTTP/1.1 @@ -72,7 +64,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/21ed41b8-84b6-42ef-a252-d3e17865d8cb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/63f12fca-4896-4280-97bd-04962a6949e3 method: PATCH response: proto: HTTP/2.0 @@ -80,31 +72,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 598 + content_length: 605 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "63f12fca-4896-4280-97bd-04962a6949e3", "creation_date": "2025-10-29T22:53:40.627068+00:00", "modification_date": "2025-10-29T22:53:40.627068+00:00", "name": "tf-sg-crazy-stonebraker", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "598" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "605" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 695c10e2-e57b-4a6a-9caa-4c8587ebff2b + - 72e0e26e-143b-4b97-ba79-94cf4ab3c89c status: 200 OK code: 200 - duration: 172.227827ms + duration: 170.547053ms - id: 2 request: proto: HTTP/1.1 @@ -123,7 +107,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/21ed41b8-84b6-42ef-a252-d3e17865d8cb/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/63f12fca-4896-4280-97bd-04962a6949e3/rules method: PUT response: proto: HTTP/2.0 @@ -133,29 +117,21 @@ 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":"8ff010e3-1426-4fd2-a875-ec173caf5038","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "695d393c-68c8-403f-abf4-78daf21accf8", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1794" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 89c9adbb-e0ed-4dc1-89fc-ecd3173d06ae + - 9d38e44e-7d8a-4617-8d43-72034ddae5f7 status: 200 OK code: 200 - duration: 489.653359ms + duration: 255.184796ms - id: 3 request: proto: HTTP/1.1 @@ -172,7 +148,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/63f12fca-4896-4280-97bd-04962a6949e3 method: GET response: proto: HTTP/2.0 @@ -180,31 +156,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 598 + content_length: 603 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "63f12fca-4896-4280-97bd-04962a6949e3", "creation_date": "2025-10-29T22:53:40.627068+00:00", "modification_date": "2025-10-29T22:53:40.855081+00:00", "name": "tf-sg-crazy-stonebraker", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "syncing", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "598" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "603" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 89e831e0-c2f9-41f1-bf54-a7a2e173e3ca + - 6ac6b3e8-544d-479d-8310-1dd8af056725 status: 200 OK code: 200 - duration: 229.201362ms + duration: 102.53102ms - id: 4 request: proto: HTTP/1.1 @@ -217,11 +185,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/63f12fca-4896-4280-97bd-04962a6949e3/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -231,29 +201,21 @@ 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":"8ff010e3-1426-4fd2-a875-ec173caf5038","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "695d393c-68c8-403f-abf4-78daf21accf8", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1794" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bb962754-7abd-473f-b460-8a3c7c34afa5 + - c1ece94d-625a-408d-b928-fc73e8974113 status: 200 OK code: 200 - duration: 164.740167ms + duration: 95.154707ms - id: 5 request: proto: HTTP/1.1 @@ -266,11 +228,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/63f12fca-4896-4280-97bd-04962a6949e3/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -280,29 +244,21 @@ 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":"8ff010e3-1426-4fd2-a875-ec173caf5038","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "695d393c-68c8-403f-abf4-78daf21accf8", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1794" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 46fc8d5d-03af-472c-9a0c-bea008e17f66 + - 2139a3ec-c103-4412-ba8a-a2f522c86682 status: 200 OK code: 200 - duration: 98.969619ms + duration: 101.930026ms - id: 6 request: proto: HTTP/1.1 @@ -319,7 +275,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/63f12fca-4896-4280-97bd-04962a6949e3 method: GET response: proto: HTTP/2.0 @@ -327,31 +283,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 598 + content_length: 605 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "63f12fca-4896-4280-97bd-04962a6949e3", "creation_date": "2025-10-29T22:53:40.627068+00:00", "modification_date": "2025-10-29T22:53:41.089436+00:00", "name": "tf-sg-crazy-stonebraker", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "598" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "605" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 87d3f5f9-6725-44ac-920d-2a6b8d234dd8 + - c0dc1449-cc9e-4279-9389-f3a534c665b3 status: 200 OK code: 200 - duration: 88.689105ms + duration: 87.049202ms - id: 7 request: proto: HTTP/1.1 @@ -364,11 +312,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/63f12fca-4896-4280-97bd-04962a6949e3/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -378,29 +328,21 @@ 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":"8ff010e3-1426-4fd2-a875-ec173caf5038","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "695d393c-68c8-403f-abf4-78daf21accf8", "protocol": "TCP", "direction": "inbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": null, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1794" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9246a957-20f4-45bb-93e0-b58c19be2760 + - c3c93882-e2b0-459a-8067-b392acd872af status: 200 OK code: 200 - duration: 117.691603ms + duration: 92.504061ms - id: 8 request: proto: HTTP/1.1 @@ -417,7 +359,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/63f12fca-4896-4280-97bd-04962a6949e3 method: DELETE response: proto: HTTP/2.0 @@ -429,25 +371,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c55b1f66-9fd5-495d-983e-0b60f82c7d37 + - fd4fbbcb-2605-4206-838e-6a701144bf1d status: 204 No Content code: 204 - duration: 155.620809ms + duration: 161.425209ms - id: 9 request: proto: HTTP/1.1 @@ -464,7 +398,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/63f12fca-4896-4280-97bd-04962a6949e3 method: GET response: proto: HTTP/2.0 @@ -474,26 +408,18 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"21ed41b8-84b6-42ef-a252-d3e17865d8cb","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_security_group", "resource_id": "63f12fca-4896-4280-97bd-04962a6949e3"}' headers: Content-Length: - "151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c4d25964-fdbb-43df-9f03-4c6fbf6d81fd + - b55d1459-b42e-4d2c-b218-29daa8973213 status: 404 Not Found code: 404 - duration: 26.954571ms + duration: 33.35702ms 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 1f85149b1..d8267538b 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 @@ -12,7 +12,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - 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}' + body: '{"name":"tf-sg-angry-bouman","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: @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 600 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "106fe6d4-24e7-4bcd-8219-884a4b919152", "creation_date": "2025-10-29T22:53:37.824055+00:00", "modification_date": "2025-10-29T22:53:37.824055+00:00", "name": "tf-sg-angry-bouman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:53:37 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dadbba0d-f076-4ee1-ad53-c63fbfbf9709 + - 113705d1-3807-41dc-b4f5-4cf693207404 status: 201 Created code: 201 - duration: 182.847008ms + duration: 194.028757ms - id: 1 request: proto: HTTP/1.1 @@ -72,7 +64,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/36e0381b-160b-468f-9217-8fb9d5519ba8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 method: PATCH response: proto: HTTP/2.0 @@ -82,29 +74,21 @@ interactions: trailer: {} content_length: 600 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "106fe6d4-24e7-4bcd-8219-884a4b919152", "creation_date": "2025-10-29T22:53:37.824055+00:00", "modification_date": "2025-10-29T22:53:37.824055+00:00", "name": "tf-sg-angry-bouman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 573de4a0-6e72-45d3-a8ae-b67b24f7db95 + - 5b843050-03f0-4c82-9ce1-fd2f4b2d102a status: 200 OK code: 200 - duration: 157.447263ms + duration: 150.08896ms - id: 2 request: proto: HTTP/1.1 @@ -123,7 +107,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/36e0381b-160b-468f-9217-8fb9d5519ba8/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152/rules method: PUT response: proto: HTTP/2.0 @@ -133,29 +117,21 @@ 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":"f31834e8-7455-481d-8ffc-66a07de4318f","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "0397327d-9566-4cf7-aa09-b5bd63a2df1e", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 1, "dest_port_to": 1024, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1789" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 91b7badf-4d13-4850-a75c-6bc6ca693e0f + - 8c7f7918-dca0-4b3c-96d5-95f9ce332a1f status: 200 OK code: 200 - duration: 279.260946ms + duration: 249.66322ms - id: 3 request: proto: HTTP/1.1 @@ -172,7 +148,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 method: GET response: proto: HTTP/2.0 @@ -182,29 +158,21 @@ interactions: trailer: {} content_length: 600 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "106fe6d4-24e7-4bcd-8219-884a4b919152", "creation_date": "2025-10-29T22:53:37.824055+00:00", "modification_date": "2025-10-29T22:53:38.261518+00:00", "name": "tf-sg-angry-bouman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c5b72139-014f-413f-b7d0-c35c27f52007 + - 326c9a47-4f16-4b29-bc01-b819d5adeeae status: 200 OK code: 200 - duration: 100.354867ms + duration: 94.338951ms - id: 4 request: proto: HTTP/1.1 @@ -217,11 +185,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -231,29 +201,21 @@ 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":"f31834e8-7455-481d-8ffc-66a07de4318f","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "0397327d-9566-4cf7-aa09-b5bd63a2df1e", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 1, "dest_port_to": 1024, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1789" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4955f0f-3b1e-46a9-930f-d28d260b3b6b + - 4e0f2604-5339-41e3-bcc7-e41619354308 status: 200 OK code: 200 - duration: 89.146546ms + duration: 91.883941ms - id: 5 request: proto: HTTP/1.1 @@ -270,7 +232,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 method: GET response: proto: HTTP/2.0 @@ -280,29 +242,21 @@ interactions: trailer: {} content_length: 600 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "106fe6d4-24e7-4bcd-8219-884a4b919152", "creation_date": "2025-10-29T22:53:37.824055+00:00", "modification_date": "2025-10-29T22:53:38.261518+00:00", "name": "tf-sg-angry-bouman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dd107188-399b-4fd5-8651-d45a3ba1f342 + - d5c24941-490a-45e9-a4be-c50ea576b3c8 status: 200 OK code: 200 - duration: 106.059541ms + duration: 114.986598ms - id: 6 request: proto: HTTP/1.1 @@ -315,11 +269,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -329,29 +285,21 @@ 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":"f31834e8-7455-481d-8ffc-66a07de4318f","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "0397327d-9566-4cf7-aa09-b5bd63a2df1e", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 1, "dest_port_to": 1024, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1789" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8acbaa2a-3bc1-4984-8405-0fa6c6c2a09b + - 8ef52cea-25cf-414a-bd3a-757f0614149a status: 200 OK code: 200 - duration: 81.178569ms + duration: 511.793242ms - id: 7 request: proto: HTTP/1.1 @@ -368,7 +316,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 method: GET response: proto: HTTP/2.0 @@ -378,29 +326,21 @@ interactions: trailer: {} content_length: 600 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "106fe6d4-24e7-4bcd-8219-884a4b919152", "creation_date": "2025-10-29T22:53:37.824055+00:00", "modification_date": "2025-10-29T22:53:38.261518+00:00", "name": "tf-sg-angry-bouman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 44e2f53a-3d7b-46dc-b42a-79087eb00f69 + - cecead61-c8d2-4bab-9f9a-fc599e400642 status: 200 OK code: 200 - duration: 99.260185ms + duration: 250.455493ms - id: 8 request: proto: HTTP/1.1 @@ -413,11 +353,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -427,29 +369,21 @@ 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":"f31834e8-7455-481d-8ffc-66a07de4318f","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "0397327d-9566-4cf7-aa09-b5bd63a2df1e", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 1, "dest_port_to": 1024, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1789" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e20b4b6d-91a3-45eb-9ed6-0510c677cedc + - 28c5dfbd-2872-420a-9bfe-fc382006fcd6 status: 200 OK code: 200 - duration: 112.000438ms + duration: 145.289718ms - id: 9 request: proto: HTTP/1.1 @@ -461,14 +395,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-thirsty-wing","inbound_default_policy":"accept","tags":["test-terraform"],"outbound_default_policy":"accept","stateful":true}' + body: '{"name":"tf-sg-angry-bouman","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.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 method: PATCH response: proto: HTTP/2.0 @@ -478,29 +412,21 @@ interactions: trailer: {} content_length: 600 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "106fe6d4-24e7-4bcd-8219-884a4b919152", "creation_date": "2025-10-29T22:53:37.824055+00:00", "modification_date": "2025-10-29T22:53:38.261518+00:00", "name": "tf-sg-angry-bouman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 93e68b2d-beee-4e16-a542-f54af0d1d47a + - 8a38963e-a70d-47d4-b497-b1e533afb935 status: 200 OK code: 200 - duration: 146.436884ms + duration: 162.903912ms - id: 10 request: proto: HTTP/1.1 @@ -519,7 +445,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/36e0381b-160b-468f-9217-8fb9d5519ba8/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152/rules method: PUT response: proto: HTTP/2.0 @@ -529,29 +455,21 @@ 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":"6141d511-e481-4c04-85e5-84f6e7f3abc6","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "2b339114-2f2f-4922-8b34-ac8586149f2f", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1790" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 97329393-6218-45bf-bd15-4151a4f02404 + - 0826b19c-d7d4-43f3-b90b-cbd91a41e4e9 status: 200 OK code: 200 - duration: 275.328859ms + duration: 285.114648ms - id: 11 request: proto: HTTP/1.1 @@ -568,7 +486,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 method: GET response: proto: HTTP/2.0 @@ -578,29 +496,21 @@ interactions: trailer: {} content_length: 598 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "106fe6d4-24e7-4bcd-8219-884a4b919152", "creation_date": "2025-10-29T22:53:37.824055+00:00", "modification_date": "2025-10-29T22:53:40.221524+00:00", "name": "tf-sg-angry-bouman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "syncing", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "598" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 06e6b136-319a-4469-b24f-6bec0eafe90b + - 32d69a3f-34bc-4591-b967-69f3001bea1c status: 200 OK code: 200 - duration: 106.643658ms + duration: 98.170836ms - id: 12 request: proto: HTTP/1.1 @@ -613,11 +523,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -627,29 +539,21 @@ 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":"6141d511-e481-4c04-85e5-84f6e7f3abc6","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "2b339114-2f2f-4922-8b34-ac8586149f2f", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1790" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 933984c2-83f7-4e79-84e5-b84a1c973b74 + - 027bfaf8-95b0-49aa-91c6-5f3c660f990e status: 200 OK code: 200 - duration: 98.152419ms + duration: 86.87154ms - id: 13 request: proto: HTTP/1.1 @@ -666,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/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 method: GET response: proto: HTTP/2.0 @@ -676,29 +580,21 @@ interactions: trailer: {} content_length: 600 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "106fe6d4-24e7-4bcd-8219-884a4b919152", "creation_date": "2025-10-29T22:53:37.824055+00:00", "modification_date": "2025-10-29T22:53:40.509674+00:00", "name": "tf-sg-angry-bouman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0cef778e-1d45-45e7-99d3-b2e74db8ad67 + - 4a40da30-06ab-4938-9827-1f8c69ace1fe status: 200 OK code: 200 - duration: 106.392346ms + duration: 97.640776ms - id: 14 request: proto: HTTP/1.1 @@ -711,11 +607,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -725,29 +623,21 @@ 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":"6141d511-e481-4c04-85e5-84f6e7f3abc6","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "2b339114-2f2f-4922-8b34-ac8586149f2f", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1790" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 40179c7f-d519-4159-b708-92e80aac45b5 + - 21ccb371-64a9-494a-bf95-3c2d77ff3eea status: 200 OK code: 200 - duration: 108.425569ms + duration: 1.153892835s - id: 15 request: proto: HTTP/1.1 @@ -764,7 +654,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 method: GET response: proto: HTTP/2.0 @@ -774,29 +664,21 @@ interactions: trailer: {} content_length: 600 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "106fe6d4-24e7-4bcd-8219-884a4b919152", "creation_date": "2025-10-29T22:53:37.824055+00:00", "modification_date": "2025-10-29T22:53:40.509674+00:00", "name": "tf-sg-angry-bouman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d1013899-1d4f-42c2-9d25-14aeebca4137 + - 185393ce-72e7-4237-9b45-44e6b8cd3506 status: 200 OK code: 200 - duration: 106.338325ms + duration: 97.623103ms - id: 16 request: proto: HTTP/1.1 @@ -809,11 +691,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -823,29 +707,21 @@ 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":"6141d511-e481-4c04-85e5-84f6e7f3abc6","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "2b339114-2f2f-4922-8b34-ac8586149f2f", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 22, "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1790" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 77d688f6-8eeb-49f1-af09-2d14544cb21f + - dcc59752-60f4-447c-93a8-d0c2286bc9b4 status: 200 OK code: 200 - duration: 99.206897ms + duration: 99.930608ms - id: 17 request: proto: HTTP/1.1 @@ -857,14 +733,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-thirsty-wing","inbound_default_policy":"accept","tags":["test-terraform"],"outbound_default_policy":"accept","stateful":true}' + body: '{"name":"tf-sg-angry-bouman","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.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 method: PATCH response: proto: HTTP/2.0 @@ -874,29 +750,21 @@ interactions: trailer: {} content_length: 600 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "106fe6d4-24e7-4bcd-8219-884a4b919152", "creation_date": "2025-10-29T22:53:37.824055+00:00", "modification_date": "2025-10-29T22:53:40.509674+00:00", "name": "tf-sg-angry-bouman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ed80403f-9b0c-4ae0-af60-da4e5f100ad2 + - f1fa2a1d-0213-4bf2-bc07-aee3fa3308af status: 200 OK code: 200 - duration: 151.093746ms + duration: 154.721595ms - id: 18 request: proto: HTTP/1.1 @@ -915,7 +783,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/36e0381b-160b-468f-9217-8fb9d5519ba8/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152/rules method: PUT response: proto: HTTP/2.0 @@ -925,29 +793,21 @@ 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":"b948fe5a-7923-45c7-84cd-62e765cd7ba2","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "289efbdb-1003-4f0f-b1c1-9eb005a0fad0", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 1, "dest_port_to": 1024, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1789" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1a823f63-03c5-42e5-a996-97b522ebc01a + - 3f6f0b58-498d-4f3d-b1e5-9ac4e7a0db30 status: 200 OK code: 200 - duration: 271.342329ms + duration: 263.346117ms - id: 19 request: proto: HTTP/1.1 @@ -964,7 +824,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 method: GET response: proto: HTTP/2.0 @@ -972,31 +832,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 598 + content_length: 600 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "106fe6d4-24e7-4bcd-8219-884a4b919152", "creation_date": "2025-10-29T22:53:37.824055+00:00", "modification_date": "2025-10-29T22:53:43.067785+00:00", "name": "tf-sg-angry-bouman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "598" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "600" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 729903e0-0b41-4e91-9ed3-613af5d04f17 + - f6460b0f-f50d-4807-bc39-76a42ad99863 status: 200 OK code: 200 - duration: 86.51276ms + duration: 115.557146ms - id: 20 request: proto: HTTP/1.1 @@ -1009,11 +861,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1023,29 +877,21 @@ 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":"b948fe5a-7923-45c7-84cd-62e765cd7ba2","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "289efbdb-1003-4f0f-b1c1-9eb005a0fad0", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 1, "dest_port_to": 1024, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1789" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e93ffcb7-58a7-4098-a299-a313847b2af8 + - 5fb19908-7075-4a17-8fd6-9518e4c5c315 status: 200 OK code: 200 - duration: 121.309302ms + duration: 105.749738ms - id: 21 request: proto: HTTP/1.1 @@ -1062,7 +908,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 method: GET response: proto: HTTP/2.0 @@ -1072,29 +918,21 @@ interactions: trailer: {} content_length: 600 uncompressed: false - 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"}}' + body: '{"security_group": {"id": "106fe6d4-24e7-4bcd-8219-884a4b919152", "creation_date": "2025-10-29T22:53:37.824055+00:00", "modification_date": "2025-10-29T22:53:43.067785+00:00", "name": "tf-sg-angry-bouman", "description": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "servers": [], "stateful": true, "inbound_default_policy": "accept", "outbound_default_policy": "accept", "organization_default": false, "project_default": false, "enable_default_security": true, "state": "available", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dfb32ce3-6ab2-4cb6-94ba-b03246da1e9a + - 5c4c0f04-d689-48ad-a4f8-57e43d4dfbf2 status: 200 OK code: 200 - duration: 93.542439ms + duration: 89.649424ms - id: 22 request: proto: HTTP/1.1 @@ -1107,11 +945,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1121,29 +961,21 @@ 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":"b948fe5a-7923-45c7-84cd-62e765cd7ba2","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules": [{"id": "11111111-2222-4333-8444-000000000001", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 1, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000002", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 2, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000003", "protocol": "TCP", "direction": "outbound", "ip_range": "0.0.0.0/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 3, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000004", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 25, "dest_port_to": null, "position": 4, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000005", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 465, "dest_port_to": null, "position": 5, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "11111111-2222-4333-8444-000000000006", "protocol": "TCP", "direction": "outbound", "ip_range": "::/0", "dest_ip_range": null, "dest_port_from": 587, "dest_port_to": null, "position": 6, "editable": false, "action": "drop", "zone": "fr-par-1"}, {"id": "289efbdb-1003-4f0f-b1c1-9eb005a0fad0", "protocol": "TCP", "direction": "inbound", "ip_range": "8.8.8.8", "dest_ip_range": null, "dest_port_from": 1, "dest_port_to": 1024, "position": 1, "editable": true, "action": "accept", "zone": "fr-par-1"}]}' headers: Content-Length: - "1789" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 355b21ea-cbe1-4e0a-98c2-5f0e49d4ddd1 + - 8b0786e3-6788-4e9f-8212-a5d1e460def0 status: 200 OK code: 200 - duration: 105.574635ms + duration: 83.393297ms - id: 23 request: proto: HTTP/1.1 @@ -1160,7 +992,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 method: DELETE response: proto: HTTP/2.0 @@ -1172,25 +1004,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 23054656-bb19-4be5-a08d-0a42092e0f78 + - 11025d8d-116c-4686-ab7c-ea4aa97847e7 status: 204 No Content code: 204 - duration: 152.13532ms + duration: 169.433623ms - id: 24 request: proto: HTTP/1.1 @@ -1207,7 +1031,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 method: GET response: proto: HTTP/2.0 @@ -1217,26 +1041,18 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"36e0381b-160b-468f-9217-8fb9d5519ba8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_security_group", "resource_id": "106fe6d4-24e7-4bcd-8219-884a4b919152"}' headers: Content-Length: - "151" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6d7d463e-643d-4aae-87a6-11e7b64ee63d + - ab8d7edd-203e-4ee8-ab6a-cf3094ca9bb0 status: 404 Not Found code: 404 - duration: 28.007745ms + duration: 29.363934ms 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 6acd3285f..832bdbb07 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 @@ -12,7 +12,7 @@ interactions: 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":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}' + 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: @@ -27,31 +27,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 947 + content_length: 955 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:52.274808Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-16T12:39:52.274808Z"}' + body: '{"id":"73ada823-7f86-4cdb-a46a-262c3377ffc1", "name":"test-acc-admin-pwd-encryption", "public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=", "fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)", "created_at":"2025-10-29T22:53:54.364080Z", "updated_at":"2025-10-29T22:53:54.364080Z", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "disabled":false}' headers: Content-Length: - - "947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "955" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:52 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b6193ce1-2a97-48f9-ad29-a10898fd8baa + - 650cf8ba-baec-4cfa-8411-25d9e80228d3 status: 200 OK code: 200 - duration: 227.225893ms + duration: 277.845058ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +60,7 @@ interactions: headers: User-Agent: - scaleway-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/18c8bda4-c0cd-4311-94a1-e21ba309ff87 + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 method: GET response: proto: HTTP/2.0 @@ -76,31 +68,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 947 + content_length: 955 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:52.274808Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-16T12:39:52.274808Z"}' + body: '{"id":"73ada823-7f86-4cdb-a46a-262c3377ffc1", "name":"test-acc-admin-pwd-encryption", "public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=", "fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)", "created_at":"2025-10-29T22:53:54.364080Z", "updated_at":"2025-10-29T22:53:54.364080Z", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "disabled":false}' headers: Content-Length: - - "947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "955" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:52 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4a58dc30-17a7-4f9b-8f68-7a071fd94ed0 + - c6f12470-cfdf-4a80-a01e-2006da593a2d status: 200 OK code: 200 - duration: 64.018922ms + duration: 94.526998ms - id: 2 request: proto: HTTP/1.1 @@ -113,7 +97,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -127,33 +113,25 @@ interactions: trailer: {} content_length: 39264 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":2,"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":4,"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":8,"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":16,"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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - "39264" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:52 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - ; rel="next",; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6d45c58b-75b7-4ed6-982b-0aed4bdfc060 + - 4b75d3a8-e753-4a19-882f-50309225c361 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 65.739957ms + duration: 41.889485ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +144,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -180,33 +160,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:52 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - ; rel="first",; rel="previous",; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b1f5a4ad-5112-44f5-bfe7-cedcf0f67983 + - 9e750687-6351-4bf8-99c9-4097bfae741b X-Total-Count: - "68" status: 200 OK code: 200 - duration: 164.883553ms + duration: 45.844761ms - id: 4 request: proto: HTTP/1.1 @@ -219,7 +191,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - windows_server_2022 + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -231,43 +211,35 @@ 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":"5d355a7d-8abb-4418-9599-e26621bf7ca8","label":"windows_server_2022","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"id":"5d355a7d-8abb-4418-9599-e26621bf7ca8", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["POP2-2C-8G-WIN", "POP2-4C-16G-WIN", "POP2-8C-32G-WIN", "POP2-16C-64G-WIN", "POP2-32C-128G-WIN"], "label":"windows_server_2022", "type":"instance_sbs"}], "total_count":1}' headers: Content-Length: - - "290" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "300" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:52 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e2b5679-1922-4573-b424-4377132c6bc8 + - 06dfaad3-a53d-4f53-aeb5-c6a01dd746f4 status: 200 OK code: 200 - duration: 136.005876ms + duration: 55.290543ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 323 + content_length: 320 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-charming-driscoll","dynamic_ip_required":false,"commercial_type":"POP2-2C-8G-WIN","image":"5d355a7d-8abb-4418-9599-e26621bf7ca8","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87"}' + body: '{"name":"tf-srv-clever-poitras","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":"73ada823-7f86-4cdb-a46a-262c3377ffc1"}' form: {} headers: Content-Type: @@ -282,33 +254,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1827 + content_length: 1821 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:39:52.998411+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:53:55.222486+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1827" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1821" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:53 GMT + - Wed, 29 Oct 2025 22:53:55 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5d3bab10-dcf6-4943-859d-d600f528c314 + - 201ec945-23fe-4135-8041-ebcff3418cff status: 201 Created code: 201 - duration: 688.937244ms + duration: 1.298960832s - id: 6 request: proto: HTTP/1.1 @@ -325,7 +289,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -333,31 +297,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1827 + content_length: 1821 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:39:52.998411+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:53:55.222486+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1827" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1821" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:53 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f8bc5a48-e435-4929-86ad-4f65b2984a8d + - 1f404dd7-e621-4b7b-818f-54fe65ef072e status: 200 OK code: 200 - duration: 129.534258ms + duration: 150.21261ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -382,31 +338,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1827 + content_length: 1821 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:39:52.998411+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:53:55.222486+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1827" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1821" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:53 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7895614e-d535-467b-a598-43d7ee6ef72b + - bb5bc153-7d8f-494f-8a00-cb07af622c61 status: 200 OK code: 200 - duration: 114.81834ms + duration: 149.321964ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -431,31 +379,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:53.125635Z","id":"ff226318-0db2-4eb9-bd43-28282e35361f","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-16T12:39:53.125635Z","id":"c72175d5-9724-4a51-994d-cc93427e4c6a","product_resource_id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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-16T12:39:53.125635Z","zone":"fr-par-1"}' + body: '{"id":"82f12195-db16-4078-955e-8fb7c0d77241", "name":"Windows Server 2022_sbs_volume_0", "type":"sbs_5k", "size":25000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.394518Z", "updated_at":"2025-10-29T22:53:55.394518Z", "references":[{"id":"c30d86a5-90c3-4a3d-b5d2-0dbe18363441", "product_resource_type":"instance_server", "product_resource_id":"344013a7-bb08-443c-8b3d-0b23e73d8951", "created_at":"2025-10-29T22:53:55.394518Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "677" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "696" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:53 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b0dd7923-aa4d-41a0-a0be-212a4cdd68a4 + - 00f72155-769f-410b-9a4f-231e00a8f239 status: 200 OK code: 200 - duration: 66.244613ms + duration: 84.045269ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,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/b5b9375e-9bb5-426f-a7e9-f88614b8263a/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/action method: POST response: proto: HTTP/2.0 @@ -484,31 +424,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/action","href_result":"/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a","id":"7a2848c2-279c-4cef-ad05-79409cf99a92","progress":0,"started_at":"2025-10-16T12:39:53.967127+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task": {"id": "a60c11ff-9772-4780-a969-a2b075c3a5b8", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/action", "href_result": "/servers/344013a7-bb08-443c-8b3d-0b23e73d8951", "started_at": "2025-10-29T22:53:56.551778+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:54 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7a2848c2-279c-4cef-ad05-79409cf99a92 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a60c11ff-9772-4780-a969-a2b075c3a5b8 Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6a18a0f5-b350-447f-995b-3dd6f46f4797 + - fda37ba5-f74d-428b-a219-9c6186de9a91 status: 202 Accepted code: 202 - duration: 224.093092ms + duration: 240.636686ms - id: 10 request: proto: HTTP/1.1 @@ -525,7 +457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -533,31 +465,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1849 + content_length: 1843 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:39:53.830409+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:53:56.364839+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1849" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1843" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:54 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 29dab141-ca33-4d49-856a-bf48965711e8 + - 160a7c83-12ad-43ad-a546-e6151f135595 status: 200 OK code: 200 - duration: 129.174825ms + duration: 126.240206ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -582,31 +506,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 1977 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","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-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:39:55.790057+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:53:58.405544+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1977" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:59 GMT + - Wed, 29 Oct 2025 22:54:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3c04f4ab-974f-4d22-a9fd-9306aa5bec60 + - 1a1d45be-c281-4888-8e03-fa5b730cc4c5 status: 200 OK code: 200 - duration: 118.949582ms + duration: 126.981413ms - id: 12 request: proto: HTTP/1.1 @@ -623,7 +539,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -631,31 +547,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 1977 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","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-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:39:55.790057+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:53:58.405544+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1977" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:59 GMT + - Wed, 29 Oct 2025 22:54:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d0eb1dc6-6d97-48c9-9560-e64cf6440d13 + - e7f13f9d-e072-4924-be88-69ba60859630 status: 200 OK code: 200 - duration: 112.988021ms + duration: 145.229484ms - id: 13 request: proto: HTTP/1.1 @@ -672,7 +580,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -682,29 +590,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ff226318-0db2-4eb9-bd43-28282e35361f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "82f12195-db16-4078-955e-8fb7c0d77241"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9c1c0412-c286-4aad-bb25-b4340a549921 + - f938c70b-eb05-4946-ac52-0c8493fc1776 status: 404 Not Found code: 404 - duration: 49.09256ms + duration: 35.348786ms - id: 14 request: proto: HTTP/1.1 @@ -721,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/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -729,31 +629,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:53.125635Z","id":"ff226318-0db2-4eb9-bd43-28282e35361f","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-16T12:39:53.125635Z","id":"c72175d5-9724-4a51-994d-cc93427e4c6a","product_resource_id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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-16T12:39:53.125635Z","zone":"fr-par-1"}' + body: '{"id":"82f12195-db16-4078-955e-8fb7c0d77241", "name":"Windows Server 2022_sbs_volume_0", "type":"sbs_5k", "size":25000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.394518Z", "updated_at":"2025-10-29T22:53:55.394518Z", "references":[{"id":"c30d86a5-90c3-4a3d-b5d2-0dbe18363441", "product_resource_type":"instance_server", "product_resource_id":"344013a7-bb08-443c-8b3d-0b23e73d8951", "created_at":"2025-10-29T22:53:55.394518Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "677" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "696" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a4168b88-0a66-46ac-8f80-120a86f9e745 + - 5989569f-6c3b-42c1-bd75-58f9b6da3b16 status: 200 OK code: 200 - duration: 70.836148ms + duration: 93.894557ms - id: 15 request: proto: HTTP/1.1 @@ -770,7 +662,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/user_data method: GET response: proto: HTTP/2.0 @@ -780,29 +672,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1a68e488-21c1-4040-9e4f-29a01f2a8196 + - 78a0ea3f-ab9a-4bc8-b287-9a5f3edf6836 status: 200 OK code: 200 - duration: 75.009498ms + duration: 99.975718ms - id: 16 request: proto: HTTP/1.1 @@ -819,7 +703,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/private_nics method: GET response: proto: HTTP/2.0 @@ -829,33 +713,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:59 GMT + - Wed, 29 Oct 2025 22:54:02 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ef9e7264-0557-41a0-b344-447f8fd0c732 + - b6690808-2790-4d9c-845c-7b2ed889c5ea X-Total-Count: - "0" status: 200 OK code: 200 - duration: 77.866593ms + duration: 104.719097ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +748,7 @@ interactions: headers: User-Agent: - scaleway-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/18c8bda4-c0cd-4311-94a1-e21ba309ff87 + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 method: GET response: proto: HTTP/2.0 @@ -880,31 +756,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 947 + content_length: 955 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:52.274808Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-16T12:39:52.274808Z"}' + body: '{"id":"73ada823-7f86-4cdb-a46a-262c3377ffc1", "name":"test-acc-admin-pwd-encryption", "public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=", "fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)", "created_at":"2025-10-29T22:53:54.364080Z", "updated_at":"2025-10-29T22:53:54.364080Z", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "disabled":false}' headers: Content-Length: - - "947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "955" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:39:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - da4eb252-35a8-4257-8487-f0ca19cfed44 + - 49e045b5-d0c0-432b-b43b-d6f5baada51d status: 200 OK code: 200 - duration: 60.131928ms + duration: 82.684877ms - id: 18 request: proto: HTTP/1.1 @@ -921,7 +789,7 @@ interactions: headers: User-Agent: - scaleway-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/18c8bda4-c0cd-4311-94a1-e21ba309ff87 + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 method: GET response: proto: HTTP/2.0 @@ -929,31 +797,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 947 + content_length: 955 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:52.274808Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-16T12:39:52.274808Z"}' + body: '{"id":"73ada823-7f86-4cdb-a46a-262c3377ffc1", "name":"test-acc-admin-pwd-encryption", "public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=", "fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)", "created_at":"2025-10-29T22:53:54.364080Z", "updated_at":"2025-10-29T22:53:54.364080Z", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "disabled":false}' headers: Content-Length: - - "947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "955" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7318f084-317f-4f09-9ace-6bd7da750823 + - 9a4ec239-b984-47c0-97cd-9659f5735717 status: 200 OK code: 200 - duration: 60.924974ms + duration: 90.659839ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +830,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -978,31 +838,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 1977 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","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-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:39:55.790057+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:53:58.405544+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1977" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:00 GMT + - Wed, 29 Oct 2025 22:54:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa787dae-d3b0-4c8b-975e-53688ab8d79f + - 79def991-5884-4c70-b3c6-0a05d96d79f0 status: 200 OK code: 200 - duration: 111.766882ms + duration: 134.086289ms - id: 20 request: proto: HTTP/1.1 @@ -1019,7 +871,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -1029,29 +881,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ff226318-0db2-4eb9-bd43-28282e35361f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "82f12195-db16-4078-955e-8fb7c0d77241"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:00 GMT + - Wed, 29 Oct 2025 22:54:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 57a42844-bfef-43b1-9672-7332af002e23 + - ecd88f34-095b-4967-8186-3da0921c38ac status: 404 Not Found code: 404 - duration: 64.766292ms + duration: 24.336625ms - id: 21 request: proto: HTTP/1.1 @@ -1068,7 +912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -1076,31 +920,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:53.125635Z","id":"ff226318-0db2-4eb9-bd43-28282e35361f","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-16T12:39:53.125635Z","id":"c72175d5-9724-4a51-994d-cc93427e4c6a","product_resource_id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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-16T12:39:53.125635Z","zone":"fr-par-1"}' + body: '{"id":"82f12195-db16-4078-955e-8fb7c0d77241", "name":"Windows Server 2022_sbs_volume_0", "type":"sbs_5k", "size":25000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.394518Z", "updated_at":"2025-10-29T22:53:55.394518Z", "references":[{"id":"c30d86a5-90c3-4a3d-b5d2-0dbe18363441", "product_resource_type":"instance_server", "product_resource_id":"344013a7-bb08-443c-8b3d-0b23e73d8951", "created_at":"2025-10-29T22:53:55.394518Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "677" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "696" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:00 GMT + - Wed, 29 Oct 2025 22:54:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 074558dd-b29d-4ee7-b7ad-db2f5ef39da0 + - 38ca9472-0d03-4178-9ecf-fcc2f6fdca16 status: 200 OK code: 200 - duration: 62.050394ms + duration: 75.75534ms - id: 22 request: proto: HTTP/1.1 @@ -1117,7 +953,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/user_data method: GET response: proto: HTTP/2.0 @@ -1127,29 +963,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:00 GMT + - Wed, 29 Oct 2025 22:54:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4b405abe-114d-46b9-ae10-a7221e213dd8 + - b47010b1-9f45-4fbb-8adb-caa377efee15 status: 200 OK code: 200 - duration: 70.531507ms + duration: 90.769774ms - id: 23 request: proto: HTTP/1.1 @@ -1166,7 +994,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/private_nics method: GET response: proto: HTTP/2.0 @@ -1176,33 +1004,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:00 GMT + - Wed, 29 Oct 2025 22:54:03 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e1c57de6-25ab-4bed-bf21-af5622d618d3 + - 11a13b01-aea9-4ca7-8f1f-e52262f7dbc9 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 83.202302ms + duration: 108.920924ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1039,7 @@ interactions: headers: User-Agent: - scaleway-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/18c8bda4-c0cd-4311-94a1-e21ba309ff87 + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 method: GET response: proto: HTTP/2.0 @@ -1227,31 +1047,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 947 + content_length: 955 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:52.274808Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-16T12:39:52.274808Z"}' + body: '{"id":"73ada823-7f86-4cdb-a46a-262c3377ffc1", "name":"test-acc-admin-pwd-encryption", "public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=", "fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)", "created_at":"2025-10-29T22:53:54.364080Z", "updated_at":"2025-10-29T22:53:54.364080Z", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "disabled":false}' headers: Content-Length: - - "947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "955" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:00 GMT + - Wed, 29 Oct 2025 22:54:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 63f90a3a-55dc-4fd6-9ede-dc17b685b62f + - a178028d-484f-48bc-a2a9-b1313311a22e status: 200 OK code: 200 - duration: 66.064475ms + duration: 115.833339ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1080,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -1276,31 +1088,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2023 + content_length: 1977 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","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-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:39:55.790057+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:53:58.405544+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "2023" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1977" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:00 GMT + - Wed, 29 Oct 2025 22:54:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8bf40d1b-ff96-4c3d-aeff-a053f7aea2b2 + - eeb50ed4-5312-4867-8323-d1b5b2989537 status: 200 OK code: 200 - duration: 106.089083ms + duration: 122.887399ms - id: 26 request: proto: HTTP/1.1 @@ -1317,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/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -1327,29 +1131,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ff226318-0db2-4eb9-bd43-28282e35361f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "82f12195-db16-4078-955e-8fb7c0d77241"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:00 GMT + - Wed, 29 Oct 2025 22:54:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 31d504f5-9f87-4926-85ff-82c30c5cf777 + - 21134955-a6d8-48e0-984c-2374da92bfb2 status: 404 Not Found code: 404 - duration: 46.130058ms + duration: 34.497395ms - id: 27 request: proto: HTTP/1.1 @@ -1366,7 +1162,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -1374,31 +1170,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:53.125635Z","id":"ff226318-0db2-4eb9-bd43-28282e35361f","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-16T12:39:53.125635Z","id":"c72175d5-9724-4a51-994d-cc93427e4c6a","product_resource_id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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-16T12:39:53.125635Z","zone":"fr-par-1"}' + body: '{"id":"82f12195-db16-4078-955e-8fb7c0d77241", "name":"Windows Server 2022_sbs_volume_0", "type":"sbs_5k", "size":25000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.394518Z", "updated_at":"2025-10-29T22:53:55.394518Z", "references":[{"id":"c30d86a5-90c3-4a3d-b5d2-0dbe18363441", "product_resource_type":"instance_server", "product_resource_id":"344013a7-bb08-443c-8b3d-0b23e73d8951", "created_at":"2025-10-29T22:53:55.394518Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "677" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "696" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:00 GMT + - Wed, 29 Oct 2025 22:54:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 587eb7d9-5d71-4ef7-ac73-4167085f3026 + - daa7c4ca-e462-4ed6-91fb-31e1bfbd9ff8 status: 200 OK code: 200 - duration: 62.944529ms + duration: 75.360562ms - id: 28 request: proto: HTTP/1.1 @@ -1415,7 +1203,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/user_data method: GET response: proto: HTTP/2.0 @@ -1425,29 +1213,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:00 GMT + - Wed, 29 Oct 2025 22:54:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 611df66b-11aa-46a2-b741-1fbb974d55ad + - f944dd15-ceea-4d94-8cac-34c330db4742 status: 200 OK code: 200 - duration: 84.550178ms + duration: 100.671629ms - id: 29 request: proto: HTTP/1.1 @@ -1464,7 +1244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/private_nics method: GET response: proto: HTTP/2.0 @@ -1474,33 +1254,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:00 GMT + - Wed, 29 Oct 2025 22:54:03 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 16675b49-c33a-4e29-9d7a-8c617876e4a9 + - 7a0c8470-d439-40c2-9ec6-3a25e8f8fa20 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 68.379454ms + duration: 90.447332ms - id: 30 request: proto: HTTP/1.1 @@ -1517,7 +1289,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -1525,31 +1297,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 1977 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","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-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:39:55.790057+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:53:58.405544+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1977" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 851e2b61-a380-494e-bee5-cf2bee3be5d1 + - 29a84cab-50f0-4fcf-b9f5-60c315bfb082 status: 200 OK code: 200 - duration: 131.889342ms + duration: 164.01402ms - id: 31 request: proto: HTTP/1.1 @@ -1568,7 +1332,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/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: PATCH response: proto: HTTP/2.0 @@ -1576,31 +1340,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1943 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":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:01.359820+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:04.332405+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1949" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1943" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c0f83cea-8221-4ecd-b262-b29782983caf + - c94f7317-2250-498e-9ecc-d80388bb55c4 status: 200 OK code: 200 - duration: 361.24635ms + duration: 239.364433ms - id: 32 request: proto: HTTP/1.1 @@ -1617,7 +1373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -1625,31 +1381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1903 + 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":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:01.359820+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:04.332405+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1903" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1897" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae201300-7abe-4ca5-9907-e976b111afe9 + - 64cae0de-e5d7-4480-9758-986c6889ec93 status: 200 OK code: 200 - duration: 133.559422ms + duration: 125.595243ms - id: 33 request: proto: HTTP/1.1 @@ -1666,7 +1414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -1674,31 +1422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1903 + content_length: 1943 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-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:01.359820+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:04.332405+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1903" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1943" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c7952721-2e38-4fd0-a68b-5ff37cce2fd2 + - 7715f477-c933-40b0-9f8f-f278bd738940 status: 200 OK code: 200 - duration: 121.190392ms + duration: 156.493617ms - id: 34 request: proto: HTTP/1.1 @@ -1715,7 +1455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -1725,29 +1465,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ff226318-0db2-4eb9-bd43-28282e35361f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "82f12195-db16-4078-955e-8fb7c0d77241"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 12e973df-b56d-47ed-80e8-8a030c6764f4 + - bc95d7de-7d72-478e-835e-a0a4ed9ccc13 status: 404 Not Found code: 404 - duration: 49.483854ms + duration: 30.086206ms - id: 35 request: proto: HTTP/1.1 @@ -1764,7 +1496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -1772,31 +1504,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:53.125635Z","id":"ff226318-0db2-4eb9-bd43-28282e35361f","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-16T12:39:53.125635Z","id":"c72175d5-9724-4a51-994d-cc93427e4c6a","product_resource_id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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-16T12:39:53.125635Z","zone":"fr-par-1"}' + body: '{"id":"82f12195-db16-4078-955e-8fb7c0d77241", "name":"Windows Server 2022_sbs_volume_0", "type":"sbs_5k", "size":25000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.394518Z", "updated_at":"2025-10-29T22:53:55.394518Z", "references":[{"id":"c30d86a5-90c3-4a3d-b5d2-0dbe18363441", "product_resource_type":"instance_server", "product_resource_id":"344013a7-bb08-443c-8b3d-0b23e73d8951", "created_at":"2025-10-29T22:53:55.394518Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "677" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "696" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e0346acf-05cc-4182-9026-038c6e7e0458 + - 1532dbb2-847c-4c62-ab13-6cb4adbb79cf status: 200 OK code: 200 - duration: 62.352169ms + duration: 89.597353ms - id: 36 request: proto: HTTP/1.1 @@ -1813,7 +1537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/user_data method: GET response: proto: HTTP/2.0 @@ -1823,29 +1547,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:02 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a59a7ccc-3559-4355-ad61-88142f9f8f45 + - 6236d2d6-3acb-4354-8ac8-e51350786df1 status: 200 OK code: 200 - duration: 72.682979ms + duration: 108.869088ms - id: 37 request: proto: HTTP/1.1 @@ -1862,7 +1578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/private_nics method: GET response: proto: HTTP/2.0 @@ -1872,33 +1588,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:02 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8bbe7b06-c967-4285-a67b-e81564fb730e + - b9ec5984-f680-47ac-ae60-b163491180d2 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 79.915703ms + duration: 115.70502ms - id: 38 request: proto: HTTP/1.1 @@ -1915,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/iam/v1alpha1/ssh-keys/18c8bda4-c0cd-4311-94a1-e21ba309ff87 + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 method: GET response: proto: HTTP/2.0 @@ -1923,31 +1631,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 947 + content_length: 955 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:52.274808Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-16T12:39:52.274808Z"}' + body: '{"id":"73ada823-7f86-4cdb-a46a-262c3377ffc1", "name":"test-acc-admin-pwd-encryption", "public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=", "fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)", "created_at":"2025-10-29T22:53:54.364080Z", "updated_at":"2025-10-29T22:53:54.364080Z", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "disabled":false}' headers: Content-Length: - - "947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "955" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:02 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 54d2738a-36a2-44b4-be4a-5ad9c557fd2f + - 97749ae7-ab56-432a-a11f-4767665aecef status: 200 OK code: 200 - duration: 61.172509ms + duration: 85.02827ms - id: 39 request: proto: HTTP/1.1 @@ -1964,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/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -1972,31 +1672,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1897 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":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:01.359820+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:04.332405+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1949" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1897" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:02 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7a43e723-b14f-4ba4-80e4-cf4597009a82 + - c099d399-1aba-4f6d-93cb-4808e4d96300 status: 200 OK code: 200 - duration: 133.919416ms + duration: 137.660904ms - id: 40 request: proto: HTTP/1.1 @@ -2013,7 +1705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -2023,29 +1715,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ff226318-0db2-4eb9-bd43-28282e35361f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "82f12195-db16-4078-955e-8fb7c0d77241"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:02 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8a8a0eed-f03a-4ba0-8ce8-17e59ff85ce0 + - d6788c88-125d-41ca-b497-b9e5d314b529 status: 404 Not Found code: 404 - duration: 47.709167ms + duration: 25.714863ms - id: 41 request: proto: HTTP/1.1 @@ -2062,7 +1746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -2070,31 +1754,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:53.125635Z","id":"ff226318-0db2-4eb9-bd43-28282e35361f","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-16T12:39:53.125635Z","id":"c72175d5-9724-4a51-994d-cc93427e4c6a","product_resource_id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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-16T12:39:53.125635Z","zone":"fr-par-1"}' + body: '{"id":"82f12195-db16-4078-955e-8fb7c0d77241", "name":"Windows Server 2022_sbs_volume_0", "type":"sbs_5k", "size":25000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.394518Z", "updated_at":"2025-10-29T22:53:55.394518Z", "references":[{"id":"c30d86a5-90c3-4a3d-b5d2-0dbe18363441", "product_resource_type":"instance_server", "product_resource_id":"344013a7-bb08-443c-8b3d-0b23e73d8951", "created_at":"2025-10-29T22:53:55.394518Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "677" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "696" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:02 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c3323880-0d25-4f2f-93e9-8cf471db1e15 + - b3cb4c6e-08ca-41d5-bb7f-15e92a2a3175 status: 200 OK code: 200 - duration: 65.159069ms + duration: 83.352526ms - id: 42 request: proto: HTTP/1.1 @@ -2111,7 +1787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/user_data method: GET response: proto: HTTP/2.0 @@ -2121,29 +1797,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:02 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 18710086-1780-412a-a674-5e2a653c5c33 + - 6eb93b9f-34f7-4cc2-a0c7-0d7129e932f3 status: 200 OK code: 200 - duration: 88.269148ms + duration: 92.851197ms - id: 43 request: proto: HTTP/1.1 @@ -2160,7 +1828,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/private_nics method: GET response: proto: HTTP/2.0 @@ -2170,33 +1838,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:02 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 331aa552-624a-4ee7-b20b-838fdaebda59 + - a6844cec-25eb-42a0-907d-2bdf289e12a1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 82.918581ms + duration: 96.690105ms - id: 44 request: proto: HTTP/1.1 @@ -2213,7 +1873,7 @@ interactions: headers: User-Agent: - scaleway-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/18c8bda4-c0cd-4311-94a1-e21ba309ff87 + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 method: GET response: proto: HTTP/2.0 @@ -2221,31 +1881,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 947 + content_length: 955 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:52.274808Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-16T12:39:52.274808Z"}' + body: '{"id":"73ada823-7f86-4cdb-a46a-262c3377ffc1", "name":"test-acc-admin-pwd-encryption", "public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=", "fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)", "created_at":"2025-10-29T22:53:54.364080Z", "updated_at":"2025-10-29T22:53:54.364080Z", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "disabled":false}' headers: Content-Length: - - "947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "955" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:02 GMT + - Wed, 29 Oct 2025 22:54:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b40768a0-ffa0-4cb2-b49d-7e8d53060f54 + - 98877a39-25a5-4301-96f7-69fc5986abb3 status: 200 OK code: 200 - duration: 90.522471ms + duration: 85.770748ms - id: 45 request: proto: HTTP/1.1 @@ -2262,7 +1914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -2270,31 +1922,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1943 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":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:01.359820+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:04.332405+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1949" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1943" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:03 GMT + - Wed, 29 Oct 2025 22:54:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3f6a0a0e-e73d-4f94-afe5-1d8c93a4bb1b + - f768b812-2693-45d9-a303-aa5fc07d8e00 status: 200 OK code: 200 - duration: 122.958656ms + duration: 164.795973ms - id: 46 request: proto: HTTP/1.1 @@ -2311,7 +1955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -2321,29 +1965,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ff226318-0db2-4eb9-bd43-28282e35361f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "82f12195-db16-4078-955e-8fb7c0d77241"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:03 GMT + - Wed, 29 Oct 2025 22:54:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bad7da69-838d-49ac-a2d5-2b8cfcbda44e + - f44d4091-8438-47aa-845c-069b74b0c7d1 status: 404 Not Found code: 404 - duration: 51.423077ms + duration: 29.118757ms - id: 47 request: proto: HTTP/1.1 @@ -2360,7 +1996,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -2368,31 +2004,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:53.125635Z","id":"ff226318-0db2-4eb9-bd43-28282e35361f","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-16T12:39:53.125635Z","id":"c72175d5-9724-4a51-994d-cc93427e4c6a","product_resource_id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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-16T12:39:53.125635Z","zone":"fr-par-1"}' + body: '{"id":"82f12195-db16-4078-955e-8fb7c0d77241", "name":"Windows Server 2022_sbs_volume_0", "type":"sbs_5k", "size":25000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.394518Z", "updated_at":"2025-10-29T22:53:55.394518Z", "references":[{"id":"c30d86a5-90c3-4a3d-b5d2-0dbe18363441", "product_resource_type":"instance_server", "product_resource_id":"344013a7-bb08-443c-8b3d-0b23e73d8951", "created_at":"2025-10-29T22:53:55.394518Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "677" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "696" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:03 GMT + - Wed, 29 Oct 2025 22:54:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 301247c0-d00e-46ee-87d9-049e29a153cd + - bd406afc-89ed-412c-a537-cbba9b44c8e9 status: 200 OK code: 200 - duration: 62.515625ms + duration: 71.874344ms - id: 48 request: proto: HTTP/1.1 @@ -2409,7 +2037,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/user_data method: GET response: proto: HTTP/2.0 @@ -2419,29 +2047,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:03 GMT + - Wed, 29 Oct 2025 22:54:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8215cfc0-42cc-4304-954c-7121ab19f9f6 + - cfa6cd41-1828-4a0b-b7dc-1a8894af6031 status: 200 OK code: 200 - duration: 82.658504ms + duration: 90.142562ms - id: 49 request: proto: HTTP/1.1 @@ -2458,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/b5b9375e-9bb5-426f-a7e9-f88614b8263a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/private_nics method: GET response: proto: HTTP/2.0 @@ -2468,33 +2088,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:03 GMT + - Wed, 29 Oct 2025 22:54:06 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 85762d5b-b08b-4ded-95d4-d07f823a8be5 + - 92db93df-0709-43a4-9612-405a7a8b3715 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 74.846934ms + duration: 110.857496ms - id: 50 request: proto: HTTP/1.1 @@ -2511,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/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -2519,31 +2131,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1943 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":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:01.359820+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:04.332405+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1949" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1943" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:03 GMT + - Wed, 29 Oct 2025 22:54:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c7b8e31b-ada4-4d12-ba68-8e6b81a57584 + - b6ba9f5f-b98c-46ce-bd6c-7b72818253be status: 200 OK code: 200 - duration: 113.783652ms + duration: 135.943965ms - id: 51 request: proto: HTTP/1.1 @@ -2555,14 +2159,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87"}' + body: '{"admin_password_encryption_ssh_key_id":"73ada823-7f86-4cdb-a46a-262c3377ffc1"}' 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/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: PATCH response: proto: HTTP/2.0 @@ -2570,31 +2174,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 1977 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","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-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:03.757670+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:07.071060+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1977" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:03 GMT + - Wed, 29 Oct 2025 22:54:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 82be8778-dd77-46c7-bb6a-c6cc253d61fa + - c8644b1d-9d4c-41bf-99aa-a88b8ccd339b status: 200 OK code: 200 - duration: 272.054354ms + duration: 267.693756ms - id: 52 request: proto: HTTP/1.1 @@ -2611,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/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -2619,31 +2215,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 1977 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","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-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:03.757670+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:07.071060+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1977" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:04 GMT + - Wed, 29 Oct 2025 22:54:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b39aa330-a985-4168-b605-3a901a5f2815 + - 3d9d0fdb-02fd-443d-81ef-8712e7fe42eb status: 200 OK code: 200 - duration: 135.327886ms + duration: 177.969054ms - id: 53 request: proto: HTTP/1.1 @@ -2660,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/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -2668,31 +2256,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 1977 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","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-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:03.757670+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:07.071060+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1977" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:04 GMT + - Wed, 29 Oct 2025 22:54:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 52b9bb85-eea1-4222-811d-b0a459e92db2 + - 3cbd8326-e857-45c9-a3f1-8dcb297721bb status: 200 OK code: 200 - duration: 104.017179ms + duration: 149.221762ms - id: 54 request: proto: HTTP/1.1 @@ -2709,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/instance/v1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -2719,29 +2299,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ff226318-0db2-4eb9-bd43-28282e35361f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "82f12195-db16-4078-955e-8fb7c0d77241"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:04 GMT + - Wed, 29 Oct 2025 22:54:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 57bbfda7-d1a7-4185-b90e-684443ac6a94 + - d54dac56-04d4-4bdc-95c2-d387949306e1 status: 404 Not Found code: 404 - duration: 59.686985ms + duration: 28.476086ms - id: 55 request: proto: HTTP/1.1 @@ -2758,7 +2330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -2766,31 +2338,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:53.125635Z","id":"ff226318-0db2-4eb9-bd43-28282e35361f","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-16T12:39:53.125635Z","id":"c72175d5-9724-4a51-994d-cc93427e4c6a","product_resource_id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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-16T12:39:53.125635Z","zone":"fr-par-1"}' + body: '{"id":"82f12195-db16-4078-955e-8fb7c0d77241", "name":"Windows Server 2022_sbs_volume_0", "type":"sbs_5k", "size":25000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.394518Z", "updated_at":"2025-10-29T22:53:55.394518Z", "references":[{"id":"c30d86a5-90c3-4a3d-b5d2-0dbe18363441", "product_resource_type":"instance_server", "product_resource_id":"344013a7-bb08-443c-8b3d-0b23e73d8951", "created_at":"2025-10-29T22:53:55.394518Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "677" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "696" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:04 GMT + - Wed, 29 Oct 2025 22:54:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 37fa8f56-9bed-4193-b6a9-0fbb7d24bd28 + - ad080825-c65c-4fe1-b8e2-4ef449246187 status: 200 OK code: 200 - duration: 61.512446ms + duration: 83.795595ms - id: 56 request: proto: HTTP/1.1 @@ -2807,7 +2371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/user_data method: GET response: proto: HTTP/2.0 @@ -2817,29 +2381,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:04 GMT + - Wed, 29 Oct 2025 22:54:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab95cf47-73bd-4cea-8c46-588159d92e67 + - 0e90d5a3-ff29-4ed6-8cb8-752a654119b4 status: 200 OK code: 200 - duration: 86.924388ms + duration: 91.360129ms - id: 57 request: proto: HTTP/1.1 @@ -2856,7 +2412,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/private_nics method: GET response: proto: HTTP/2.0 @@ -2866,33 +2422,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:04 GMT + - Wed, 29 Oct 2025 22:54:07 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 344b0631-bc91-4147-a4c0-93d14ec840c5 + - 512b3dab-0952-45f6-877b-93dc268d210e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 104.324706ms + duration: 98.854122ms - id: 58 request: proto: HTTP/1.1 @@ -2909,7 +2457,7 @@ interactions: headers: User-Agent: - scaleway-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/18c8bda4-c0cd-4311-94a1-e21ba309ff87 + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 method: GET response: proto: HTTP/2.0 @@ -2917,31 +2465,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 947 + content_length: 955 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:52.274808Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-16T12:39:52.274808Z"}' + body: '{"id":"73ada823-7f86-4cdb-a46a-262c3377ffc1", "name":"test-acc-admin-pwd-encryption", "public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=", "fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)", "created_at":"2025-10-29T22:53:54.364080Z", "updated_at":"2025-10-29T22:53:54.364080Z", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "disabled":false}' headers: Content-Length: - - "947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "955" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:04 GMT + - Wed, 29 Oct 2025 22:54:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f5bc62f-4242-4265-a894-6616cd88c63a + - 0a3de539-bc0e-4d0e-b50e-f141c47722b0 status: 200 OK code: 200 - duration: 61.051501ms + duration: 100.818095ms - id: 59 request: proto: HTTP/1.1 @@ -2958,7 +2498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -2966,31 +2506,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 1977 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","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-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:03.757670+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:07.071060+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1977" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:04 GMT + - Wed, 29 Oct 2025 22:54:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e7c39e3-d244-43e3-829d-f3ea2a0d686c + - da6dc3c3-f24e-4dad-90d1-1e177e40b08e status: 200 OK code: 200 - duration: 124.253072ms + duration: 143.34842ms - id: 60 request: proto: HTTP/1.1 @@ -3007,7 +2539,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -3017,29 +2549,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ff226318-0db2-4eb9-bd43-28282e35361f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "82f12195-db16-4078-955e-8fb7c0d77241"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:05 GMT + - Wed, 29 Oct 2025 22:54:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a3c3044f-182c-4c31-8edd-80fb0ef8a3e8 + - 033ece4e-0204-4bcf-b388-88780eefaf84 status: 404 Not Found code: 404 - duration: 62.964506ms + duration: 33.551616ms - id: 61 request: proto: HTTP/1.1 @@ -3056,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/block/v1alpha1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -3064,31 +2588,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:53.125635Z","id":"ff226318-0db2-4eb9-bd43-28282e35361f","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-16T12:39:53.125635Z","id":"c72175d5-9724-4a51-994d-cc93427e4c6a","product_resource_id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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-16T12:39:53.125635Z","zone":"fr-par-1"}' + body: '{"id":"82f12195-db16-4078-955e-8fb7c0d77241", "name":"Windows Server 2022_sbs_volume_0", "type":"sbs_5k", "size":25000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.394518Z", "updated_at":"2025-10-29T22:53:55.394518Z", "references":[{"id":"c30d86a5-90c3-4a3d-b5d2-0dbe18363441", "product_resource_type":"instance_server", "product_resource_id":"344013a7-bb08-443c-8b3d-0b23e73d8951", "created_at":"2025-10-29T22:53:55.394518Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "677" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "696" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:05 GMT + - Wed, 29 Oct 2025 22:54:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dd43005a-83e0-4e40-864f-cbbd22b5deb6 + - 2c69f3c8-d841-4b2c-a49c-cffa031ca1af status: 200 OK code: 200 - duration: 68.779664ms + duration: 93.55309ms - id: 62 request: proto: HTTP/1.1 @@ -3105,7 +2621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/user_data method: GET response: proto: HTTP/2.0 @@ -3115,29 +2631,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:05 GMT + - Wed, 29 Oct 2025 22:54:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - de6d00d6-d9f9-4bfe-946a-ba52cf5062cd + - a461b54c-648f-4de9-835a-8d55877b43ee status: 200 OK code: 200 - duration: 76.755ms + duration: 96.321577ms - id: 63 request: proto: HTTP/1.1 @@ -3154,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/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/private_nics method: GET response: proto: HTTP/2.0 @@ -3164,33 +2672,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:05 GMT + - Wed, 29 Oct 2025 22:54:08 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 50de9597-4e9b-4158-af03-f44c4507cf06 + - bbed4e33-5f59-4051-9003-927db7c78575 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 67.850604ms + duration: 97.403279ms - id: 64 request: proto: HTTP/1.1 @@ -3207,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/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -3215,31 +2715,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 1977 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","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-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:03.757670+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:07.071060+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1977" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:05 GMT + - Wed, 29 Oct 2025 22:54:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8cd6541f-5936-4db4-bc0f-22498f1e4433 + - 760592b8-8558-45c7-8751-a52f2944fee5 status: 200 OK code: 200 - duration: 131.490094ms + duration: 157.989778ms - id: 65 request: proto: HTTP/1.1 @@ -3256,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/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -3264,31 +2756,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 1977 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","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-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:03.757670+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:07.071060+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1977" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:05 GMT + - Wed, 29 Oct 2025 22:54:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 81fc6b3b-5ad0-4938-bfc1-9efeb00710f2 + - 8ca19b70-bd11-46c8-987b-ce6346ac472b status: 200 OK code: 200 - duration: 119.683359ms + duration: 142.244526ms - id: 66 request: proto: HTTP/1.1 @@ -3307,7 +2791,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/b5b9375e-9bb5-426f-a7e9-f88614b8263a/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/action method: POST response: proto: HTTP/2.0 @@ -3317,31 +2801,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a/action","href_result":"/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a","id":"85f62aab-e21c-40e6-a1b3-d8468ff47573","progress":0,"started_at":"2025-10-16T12:40:05.950930+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task": {"id": "10bb2297-d771-4cb8-8d08-a3abf0f7aefd", "description": "server_terminate", "status": "pending", "href_from": "/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/action", "href_result": "/servers/344013a7-bb08-443c-8b3d-0b23e73d8951", "started_at": "2025-10-29T22:54:09.636611+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "353" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:05 GMT + - Wed, 29 Oct 2025 22:54:09 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/85f62aab-e21c-40e6-a1b3-d8468ff47573 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/10bb2297-d771-4cb8-8d08-a3abf0f7aefd Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 22e348b6-e146-44f3-b7e4-056a4b50dfa9 + - 2b52009a-7459-4841-8cfa-323cb5aed247 status: 202 Accepted code: 202 - duration: 265.292843ms + duration: 291.015185ms - id: 67 request: proto: HTTP/1.1 @@ -3358,7 +2834,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -3366,31 +2842,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:06 GMT + - Wed, 29 Oct 2025 22:54:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 334f66dd-0a7e-4402-9026-ad22400a8d85 + - 1f0b9e14-cbca-48ac-a831-aeed581bb2a7 status: 200 OK code: 200 - duration: 131.976636ms + duration: 136.194714ms - id: 68 request: proto: HTTP/1.1 @@ -3407,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/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -3415,31 +2883,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1986 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1986" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:11 GMT + - Wed, 29 Oct 2025 22:54:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4163ab2-a5ac-40a3-a6a1-81110ec647ce + - a8ba5bbc-f655-4997-98c0-308d4f4a03a3 status: 200 OK code: 200 - duration: 122.012373ms + duration: 137.200748ms - id: 69 request: proto: HTTP/1.1 @@ -3456,7 +2916,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -3464,31 +2924,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:16 GMT + - Wed, 29 Oct 2025 22:54:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e43fdeb6-20f3-45f8-b4bf-5799e018c5fc + - 9274e435-f151-4927-a7a2-f9872e407709 status: 200 OK code: 200 - duration: 133.832204ms + duration: 155.982419ms - id: 70 request: proto: HTTP/1.1 @@ -3505,7 +2957,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -3513,31 +2965,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:21 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f24f1674-f5f5-46ee-8bb1-00561c7b3796 + - 22bc47b7-5d9a-41f5-be3e-f045f34a3ce4 status: 200 OK code: 200 - duration: 121.003103ms + duration: 133.212555ms - id: 71 request: proto: HTTP/1.1 @@ -3554,7 +2998,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -3562,31 +3006,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:26 GMT + - Wed, 29 Oct 2025 22:54:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f9b7c982-0f00-4f6c-967a-c4aaf76d7b5e + - e50437d7-058f-4ffb-88db-2dc34ba3bd2b status: 200 OK code: 200 - duration: 108.460628ms + duration: 151.642449ms - id: 72 request: proto: HTTP/1.1 @@ -3603,7 +3039,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -3611,31 +3047,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4edb3106-2801-4ac8-819c-d4085b562aa7 + - 3b919838-cc3f-45ec-9b04-7bf3afc54755 status: 200 OK code: 200 - duration: 110.558189ms + duration: 289.418692ms - id: 73 request: proto: HTTP/1.1 @@ -3652,7 +3080,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -3660,31 +3088,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 78a8c4d9-80d5-472b-9f66-b1bd384f84bb + - 1623101a-5bc0-4b5f-92d4-cd271013bd22 status: 200 OK code: 200 - duration: 114.135833ms + duration: 225.586724ms - id: 74 request: proto: HTTP/1.1 @@ -3701,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/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -3709,31 +3129,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:41 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d9688ec6-ea75-4f76-b1f9-74560f05ab57 + - 509d1e3b-1de5-48a2-ba9c-e91ee9659ea7 status: 200 OK code: 200 - duration: 134.37326ms + duration: 232.956628ms - id: 75 request: proto: HTTP/1.1 @@ -3750,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/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -3758,31 +3170,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - de6cea40-928f-4bfe-82d8-2ec43a6a2c12 + - d0b93903-8d6d-4de9-8e6e-12ff14bd641f status: 200 OK code: 200 - duration: 121.656849ms + duration: 149.390085ms - id: 76 request: proto: HTTP/1.1 @@ -3799,7 +3203,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -3807,31 +3211,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:52 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a299a3ea-c5eb-4e5b-99f1-26adc2ae6ef5 + - 785c75bc-a669-4011-a559-53a029d98955 status: 200 OK code: 200 - duration: 114.179216ms + duration: 122.426506ms - id: 77 request: proto: HTTP/1.1 @@ -3848,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/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -3856,31 +3252,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:40:57 GMT + - Wed, 29 Oct 2025 22:55:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 577cc329-6a60-4e31-828b-0076bcc324b7 + - eb693723-9a4e-47ab-b5ca-b3a59a2feddc status: 200 OK code: 200 - duration: 119.707647ms + duration: 141.515664ms - id: 78 request: proto: HTTP/1.1 @@ -3897,7 +3285,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -3905,31 +3293,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1986 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1986" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:41:02 GMT + - Wed, 29 Oct 2025 22:55:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a7c683cf-bb4e-428a-a3f4-27ad8716b829 + - dd0ca5b0-0509-4c04-91f6-be8668ae2ef7 status: 200 OK code: 200 - duration: 124.189106ms + duration: 159.900257ms - id: 79 request: proto: HTTP/1.1 @@ -3946,7 +3326,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -3954,31 +3334,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:41:07 GMT + - Wed, 29 Oct 2025 22:55:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5f2b8143-a6fa-468f-98ae-0640e814f274 + - d701baf0-65b1-4857-8eb4-626b01148b58 status: 200 OK code: 200 - duration: 116.538799ms + duration: 165.89093ms - id: 80 request: proto: HTTP/1.1 @@ -3995,7 +3367,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4003,31 +3375,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:41:12 GMT + - Wed, 29 Oct 2025 22:55:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - df6beab7-8911-456c-942a-c44905d0f83e + - 37edcd0e-fcf3-43c4-8702-25bd43065761 status: 200 OK code: 200 - duration: 144.026042ms + duration: 165.665691ms - id: 81 request: proto: HTTP/1.1 @@ -4044,7 +3408,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4052,31 +3416,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:41:17 GMT + - Wed, 29 Oct 2025 22:55:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b56d9454-17c9-4eed-8220-a0537f797f38 + - a5e097e9-5549-47b7-8e96-a1b3a2ef7f36 status: 200 OK code: 200 - duration: 111.886601ms + duration: 127.986812ms - id: 82 request: proto: HTTP/1.1 @@ -4093,7 +3449,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4101,31 +3457,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:41:23 GMT + - Wed, 29 Oct 2025 22:55:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0256a319-3127-432d-a653-c6cf99e75a69 + - 8f7391e8-c136-4cf9-a58d-502850a37aa9 status: 200 OK code: 200 - duration: 138.857035ms + duration: 144.940729ms - id: 83 request: proto: HTTP/1.1 @@ -4142,7 +3490,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4150,31 +3498,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:41:28 GMT + - Wed, 29 Oct 2025 22:55:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 10e27cdf-6025-4a52-a09f-0637b1f0ea77 + - 30d17d85-24f0-4013-998a-ac2237811e84 status: 200 OK code: 200 - duration: 131.082315ms + duration: 157.232217ms - id: 84 request: proto: HTTP/1.1 @@ -4191,7 +3531,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4199,31 +3539,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:41:33 GMT + - Wed, 29 Oct 2025 22:55:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6483dd68-7c29-4cb1-b050-073e86c577b3 + - 96019304-d0e8-4d46-96a1-2bc61be1a2d9 status: 200 OK code: 200 - duration: 163.756749ms + duration: 133.76387ms - id: 85 request: proto: HTTP/1.1 @@ -4240,7 +3572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4248,31 +3580,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:41:38 GMT + - Wed, 29 Oct 2025 22:55:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 84d4e8b4-bad0-4891-9034-bd2bd2c253a5 + - e7e23f31-fa6e-42fc-9e66-46453cab73fe status: 200 OK code: 200 - duration: 123.229799ms + duration: 136.549531ms - id: 86 request: proto: HTTP/1.1 @@ -4289,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/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4297,31 +3621,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:41:43 GMT + - Wed, 29 Oct 2025 22:55:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c6765a0d-66b9-497d-8c29-d308c4f583a0 + - daa7f925-816d-44f5-a16f-3fb322e66aff status: 200 OK code: 200 - duration: 111.023117ms + duration: 139.925596ms - id: 87 request: proto: HTTP/1.1 @@ -4338,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/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4346,31 +3662,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:41:48 GMT + - Wed, 29 Oct 2025 22:55:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fba6e3dc-b5cc-4502-989a-7b436bad3025 + - 4e9fdbd9-3465-46c7-b386-72311131d83d status: 200 OK code: 200 - duration: 117.292912ms + duration: 154.062937ms - id: 88 request: proto: HTTP/1.1 @@ -4387,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/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4395,31 +3703,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:41:53 GMT + - Wed, 29 Oct 2025 22:55:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7069c573-9833-45e2-8941-a9619da2b54e + - b08cbff8-199e-4f51-b356-dc01267c0de2 status: 200 OK code: 200 - duration: 110.86765ms + duration: 160.710892ms - id: 89 request: proto: HTTP/1.1 @@ -4436,7 +3736,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4444,31 +3744,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:41:58 GMT + - Wed, 29 Oct 2025 22:56:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1eb9f6f4-0d46-4cb9-85e8-5b37f220ed3d + - 1e7b33e0-40db-4f90-84ff-8089e2b763f4 status: 200 OK code: 200 - duration: 102.016947ms + duration: 150.689934ms - id: 90 request: proto: HTTP/1.1 @@ -4485,7 +3777,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4493,31 +3785,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:42:04 GMT + - Wed, 29 Oct 2025 22:56:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5d4fa7dc-f1c6-482c-94bd-c3730d7fae56 + - b18ded4e-4472-4131-8373-2eb0bcf2e77f status: 200 OK code: 200 - duration: 171.272907ms + duration: 141.769942ms - id: 91 request: proto: HTTP/1.1 @@ -4534,7 +3818,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4542,31 +3826,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:42:09 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 59a27c75-bbae-4dd2-b311-312877baf661 + - 6b9eebaf-1671-4232-884c-e238ddb584e1 status: 200 OK code: 200 - duration: 151.529972ms + duration: 148.927661ms - id: 92 request: proto: HTTP/1.1 @@ -4583,7 +3859,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4591,31 +3867,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:42:14 GMT + - Wed, 29 Oct 2025 22:56:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1872fb2b-e21c-4a65-82f7-67a13d71c24e + - ab1780f3-8d62-4fb9-a2d1-3495debf4944 status: 200 OK code: 200 - duration: 150.468918ms + duration: 142.544213ms - id: 93 request: proto: HTTP/1.1 @@ -4632,7 +3900,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4640,31 +3908,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1986 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1986" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:42:19 GMT + - Wed, 29 Oct 2025 22:56:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8bd03da5-014d-4a59-a98b-477018214c2d + - c0ff9e37-a7cb-469e-85a7-7bb8c2946158 status: 200 OK code: 200 - duration: 191.47101ms + duration: 155.342741ms - id: 94 request: proto: HTTP/1.1 @@ -4681,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/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4689,31 +3949,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:42:24 GMT + - Wed, 29 Oct 2025 22:56:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fe3caf8a-5a34-406f-9967-08eeab046134 + - a31aede2-20fe-4c9d-8027-4e05df996c17 status: 200 OK code: 200 - duration: 125.686093ms + duration: 150.543127ms - id: 95 request: proto: HTTP/1.1 @@ -4730,7 +3982,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4738,31 +3990,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1986 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1986" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:42:29 GMT + - Wed, 29 Oct 2025 22:56:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 53435be9-5d7d-483b-92bd-d129fe7cf367 + - d9c1aeaa-310b-420c-be26-cf01d45fec49 status: 200 OK code: 200 - duration: 134.67549ms + duration: 152.553569ms - id: 96 request: proto: HTTP/1.1 @@ -4779,7 +4023,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4787,31 +4031,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:42:34 GMT + - Wed, 29 Oct 2025 22:56:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 110a98c2-a96d-4b7a-af96-bcf6a862dc16 + - a421e091-413a-4698-9035-103931df1cef status: 200 OK code: 200 - duration: 135.566619ms + duration: 148.14749ms - id: 97 request: proto: HTTP/1.1 @@ -4828,7 +4064,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4836,31 +4072,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1940 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:54:09.405346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:42:40 GMT + - Wed, 29 Oct 2025 22:56:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c2448ae3-534e-4e76-958a-ca12b54509c2 + - 105148c2-59bd-4097-8893-c81572b440e0 status: 200 OK code: 200 - duration: 129.335353ms + duration: 152.036065ms - id: 98 request: proto: HTTP/1.1 @@ -4877,7 +4105,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4885,31 +4113,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1986 + content_length: 2490 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:56:48.515726+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1", "admin_password_encrypted_value": "qHAoF64qpq/TM3WqWEYBnTHYasrQcQpzupgv7vVg16BTOn3Y7E+KrOI/OgDrFBJig93GhTT+eBmu/OOjDy4REoBBqND1CJtExNjBXKQpDltB/FT3VKE8MuCoeg9ePxwusZIF+XZhmCp2ceuFsJJzjOTYGSALIAclr/FkHbGqbi6+1WwyXu+J+Oq1MHtlIpy5mCJdEfWEMrgXCJfzKwKu1HKqjrtQWgo6Nekp81dqmYWfO3LcNS+1sijm2HLi0A6yeo2C3nLcr8xYPJeR3PHXeyCV3LDyJ6zR9o8IaJfqcBDdMOhKrdW4v+2/lSccw4WKt6bai6IKKlumsmRJz85UlOfwz+Pn9RbNJAB4XKO8SVH/AvRQruPZ8GfbQxdriIb5N+LMBG2vdhO3rlOEXhAjgZjSphQjp7qBsZgoncQFSN0rbwsQ3aoD0CRKYl7dmuO5o2M+KhJa5sn2jAUeHd/eQyMtrfyz5qY2Nw8D6dSDInvXM5AflpchEX9M+1SsM8Pw"}}' headers: Content-Length: - - "1986" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2490" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:42:45 GMT + - Wed, 29 Oct 2025 22:56:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7733362d-d24c-481a-8874-4f4150bcd96f + - b413a753-27c5-4194-972a-92510d056a8b status: 200 OK code: 200 - duration: 149.116109ms + duration: 153.559356ms - id: 99 request: proto: HTTP/1.1 @@ -4926,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/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4934,31 +4154,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 2490 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:56:48.515726+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1", "admin_password_encrypted_value": "qHAoF64qpq/TM3WqWEYBnTHYasrQcQpzupgv7vVg16BTOn3Y7E+KrOI/OgDrFBJig93GhTT+eBmu/OOjDy4REoBBqND1CJtExNjBXKQpDltB/FT3VKE8MuCoeg9ePxwusZIF+XZhmCp2ceuFsJJzjOTYGSALIAclr/FkHbGqbi6+1WwyXu+J+Oq1MHtlIpy5mCJdEfWEMrgXCJfzKwKu1HKqjrtQWgo6Nekp81dqmYWfO3LcNS+1sijm2HLi0A6yeo2C3nLcr8xYPJeR3PHXeyCV3LDyJ6zR9o8IaJfqcBDdMOhKrdW4v+2/lSccw4WKt6bai6IKKlumsmRJz85UlOfwz+Pn9RbNJAB4XKO8SVH/AvRQruPZ8GfbQxdriIb5N+LMBG2vdhO3rlOEXhAjgZjSphQjp7qBsZgoncQFSN0rbwsQ3aoD0CRKYl7dmuO5o2M+KhJa5sn2jAUeHd/eQyMtrfyz5qY2Nw8D6dSDInvXM5AflpchEX9M+1SsM8Pw"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2490" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:42:50 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 61eb149c-cd8b-47db-9116-aef320e83f9a + - 6c3328f4-e509-4ddd-9c64-05886065dc4c status: 200 OK code: 200 - duration: 128.225785ms + duration: 125.983263ms - id: 100 request: proto: HTTP/1.1 @@ -4975,7 +4187,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -4983,31 +4195,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 2490 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:56:48.515726+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1", "admin_password_encrypted_value": "qHAoF64qpq/TM3WqWEYBnTHYasrQcQpzupgv7vVg16BTOn3Y7E+KrOI/OgDrFBJig93GhTT+eBmu/OOjDy4REoBBqND1CJtExNjBXKQpDltB/FT3VKE8MuCoeg9ePxwusZIF+XZhmCp2ceuFsJJzjOTYGSALIAclr/FkHbGqbi6+1WwyXu+J+Oq1MHtlIpy5mCJdEfWEMrgXCJfzKwKu1HKqjrtQWgo6Nekp81dqmYWfO3LcNS+1sijm2HLi0A6yeo2C3nLcr8xYPJeR3PHXeyCV3LDyJ6zR9o8IaJfqcBDdMOhKrdW4v+2/lSccw4WKt6bai6IKKlumsmRJz85UlOfwz+Pn9RbNJAB4XKO8SVH/AvRQruPZ8GfbQxdriIb5N+LMBG2vdhO3rlOEXhAjgZjSphQjp7qBsZgoncQFSN0rbwsQ3aoD0CRKYl7dmuO5o2M+KhJa5sn2jAUeHd/eQyMtrfyz5qY2Nw8D6dSDInvXM5AflpchEX9M+1SsM8Pw"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2490" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:42:55 GMT + - Wed, 29 Oct 2025 22:57:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 99307fff-ab97-4dc3-a65c-a587bdab82a5 + - f162a15a-a2fd-4e4e-abe8-e74500846afc status: 200 OK code: 200 - duration: 103.705882ms + duration: 143.681544ms - id: 101 request: proto: HTTP/1.1 @@ -5024,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/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -5032,31 +4236,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 2490 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:56:48.515726+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1", "admin_password_encrypted_value": "qHAoF64qpq/TM3WqWEYBnTHYasrQcQpzupgv7vVg16BTOn3Y7E+KrOI/OgDrFBJig93GhTT+eBmu/OOjDy4REoBBqND1CJtExNjBXKQpDltB/FT3VKE8MuCoeg9ePxwusZIF+XZhmCp2ceuFsJJzjOTYGSALIAclr/FkHbGqbi6+1WwyXu+J+Oq1MHtlIpy5mCJdEfWEMrgXCJfzKwKu1HKqjrtQWgo6Nekp81dqmYWfO3LcNS+1sijm2HLi0A6yeo2C3nLcr8xYPJeR3PHXeyCV3LDyJ6zR9o8IaJfqcBDdMOhKrdW4v+2/lSccw4WKt6bai6IKKlumsmRJz85UlOfwz+Pn9RbNJAB4XKO8SVH/AvRQruPZ8GfbQxdriIb5N+LMBG2vdhO3rlOEXhAjgZjSphQjp7qBsZgoncQFSN0rbwsQ3aoD0CRKYl7dmuO5o2M+KhJa5sn2jAUeHd/eQyMtrfyz5qY2Nw8D6dSDInvXM5AflpchEX9M+1SsM8Pw"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2490" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:43:00 GMT + - Wed, 29 Oct 2025 22:57:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ccece03d-fd17-482f-9fbe-f2d5d6e06d53 + - 1dd5e555-d0c9-4881-8f9d-ffa0c9502a90 status: 200 OK code: 200 - duration: 106.838919ms + duration: 148.573255ms - id: 102 request: proto: HTTP/1.1 @@ -5073,7 +4269,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -5081,31 +4277,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 2490 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "344013a7-bb08-443c-8b3d-0b23e73d8951", "name": "tf-srv-clever-poitras", "arch": "x86_64", "commercial_type": "POP2-2C-8G-WIN", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-clever-poitras", "image": {"id": "5d355a7d-8abb-4418-9599-e26621bf7ca8", "name": "Windows Server 2022", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "de729856-029a-44a0-8737-5ec5227304fe", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-07-25T14:07:31.902597+00:00", "modification_date": "2025-07-25T14:07:31.902597+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82f12195-db16-4078-955e-8fb7c0d77241", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:55.222486+00:00", "modification_date": "2025-10-29T22:56:48.515726+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "53", "hypervisor_id": "1001", "node_id": "3"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": "73ada823-7f86-4cdb-a46a-262c3377ffc1", "admin_password_encrypted_value": "qHAoF64qpq/TM3WqWEYBnTHYasrQcQpzupgv7vVg16BTOn3Y7E+KrOI/OgDrFBJig93GhTT+eBmu/OOjDy4REoBBqND1CJtExNjBXKQpDltB/FT3VKE8MuCoeg9ePxwusZIF+XZhmCp2ceuFsJJzjOTYGSALIAclr/FkHbGqbi6+1WwyXu+J+Oq1MHtlIpy5mCJdEfWEMrgXCJfzKwKu1HKqjrtQWgo6Nekp81dqmYWfO3LcNS+1sijm2HLi0A6yeo2C3nLcr8xYPJeR3PHXeyCV3LDyJ6zR9o8IaJfqcBDdMOhKrdW4v+2/lSccw4WKt6bai6IKKlumsmRJz85UlOfwz+Pn9RbNJAB4XKO8SVH/AvRQruPZ8GfbQxdriIb5N+LMBG2vdhO3rlOEXhAjgZjSphQjp7qBsZgoncQFSN0rbwsQ3aoD0CRKYl7dmuO5o2M+KhJa5sn2jAUeHd/eQyMtrfyz5qY2Nw8D6dSDInvXM5AflpchEX9M+1SsM8Pw"}}' headers: Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2490" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:43:05 GMT + - Wed, 29 Oct 2025 22:57:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4a2dcf0b-ca9d-45f8-87bf-b177d03763d6 + - 5c86f703-d557-4b6d-a583-8a2710de7d9e status: 200 OK code: 200 - duration: 130.107069ms + duration: 155.463673ms - id: 103 request: proto: HTTP/1.1 @@ -5122,105 +4310,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Oct 2025 12:43:10 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: - - 74a2bc1e-bda7-4ac5-80a1-c8d1be46bd06 - status: 200 OK - code: 200 - duration: 126.944792ms - - 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/b5b9375e-9bb5-426f-a7e9-f88614b8263a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-16T12:39:52.998411+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-driscoll","id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","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":"901","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:e2:bd","maintenances":[],"modification_date":"2025-10-16T12:40:05.771428+00:00","name":"tf-srv-charming-driscoll","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ff226318-0db2-4eb9-bd43-28282e35361f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Oct 2025 12:43:16 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: - - 42c8e289-db5c-4b89-b868-0065875acbe5 - status: 200 OK - code: 200 - duration: 194.636005ms - - 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/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -5230,30 +4320,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "344013a7-bb08-443c-8b3d-0b23e73d8951"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:43:21 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cf7f0689-b589-46c9-bdec-452d31afd9d1 + - c7f46d6d-e221-439f-8eab-fca51328dd04 status: 404 Not Found code: 404 - duration: 382.65738ms - - id: 106 + duration: 47.369546ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5269,7 +4351,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -5279,30 +4361,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ff226318-0db2-4eb9-bd43-28282e35361f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "82f12195-db16-4078-955e-8fb7c0d77241"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:43:21 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b7ab5e1b-25c8-4b5b-97c9-34cd5956607f + - e8237a32-2898-43b2-8b22-78d337752678 status: 404 Not Found code: 404 - duration: 48.787825ms - - id: 107 + duration: 30.530631ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5318,7 +4392,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: GET response: proto: HTTP/2.0 @@ -5326,32 +4400,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 489 uncompressed: false - body: '{"created_at":"2025-10-16T12:39:53.125635Z","id":"ff226318-0db2-4eb9-bd43-28282e35361f","last_detached_at":"2025-10-16T12:43:17.212358Z","name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-16T12:43:17.212358Z","zone":"fr-par-1"}' + body: '{"id":"82f12195-db16-4078-955e-8fb7c0d77241", "name":"Windows Server 2022_sbs_volume_0", "type":"sbs_5k", "size":25000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:55.394518Z", "updated_at":"2025-10-29T22:57:14.413792Z", "references":[], "parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:57:14.413792Z", "zone":"fr-par-1"}' headers: Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "489" Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:43:21 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 74201230-d048-4453-96d4-ec38de4d72ba + - 9f33d825-38ed-4aee-8d96-4551ba977b23 status: 200 OK code: 200 - duration: 71.013358ms - - id: 108 + duration: 78.266613ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5367,7 +4433,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ff226318-0db2-4eb9-bd43-28282e35361f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 method: DELETE response: proto: HTTP/2.0 @@ -5379,26 +4445,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:43:21 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a96e2e6e-4d3e-42ee-9b88-ee485a1837d1 + - 4bbebdfe-04a6-4087-9a1b-d78ae37a3dbe status: 204 No Content code: 204 - duration: 103.226693ms - - id: 109 + duration: 157.788734ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5414,7 +4472,7 @@ interactions: headers: User-Agent: - scaleway-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/18c8bda4-c0cd-4311-94a1-e21ba309ff87 + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 method: DELETE response: proto: HTTP/2.0 @@ -5426,26 +4484,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:43:21 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5bb6584a-6db7-43d4-a21c-a737ef913a39 + - 36f9db88-35b8-4216-8a7c-e15d42a212d7 status: 204 No Content code: 204 - duration: 78.917169ms - - id: 110 + duration: 105.623738ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5461,7 +4511,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5b9375e-9bb5-426f-a7e9-f88614b8263a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 method: GET response: proto: HTTP/2.0 @@ -5471,30 +4521,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b5b9375e-9bb5-426f-a7e9-f88614b8263a","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "344013a7-bb08-443c-8b3d-0b23e73d8951"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:43:21 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6acae04a-555b-46f1-af00-c0d7825d6486 + - b2d5309d-dada-41cd-a163-f28e610b9233 status: 404 Not Found code: 404 - duration: 62.362585ms - - id: 111 + duration: 52.0873ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5510,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/iam/v1alpha1/ssh-keys/18c8bda4-c0cd-4311-94a1-e21ba309ff87 + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 method: GET response: proto: HTTP/2.0 @@ -5520,26 +4562,18 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"ssh_key","resource_id":"18c8bda4-c0cd-4311-94a1-e21ba309ff87","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ssh_key","resource_id":"73ada823-7f86-4cdb-a46a-262c3377ffc1","type":"not_found"}' headers: Content-Length: - "128" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Oct 2025 12:43:21 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 485e3670-617e-425b-b23d-1e623adaeb35 + - 61c15ea8-9d0b-4044-9d76-29333aba7998 status: 404 Not Found code: 404 - duration: 41.512974ms + duration: 49.104741ms diff --git a/internal/services/instance/testdata/server-alter-tags.cassette.yaml b/internal/services/instance/testdata/server-alter-tags.cassette.yaml index bcee36694..391c15884 100644 --- a/internal/services/instance/testdata/server-alter-tags.cassette.yaml +++ b/internal/services/instance/testdata/server-alter-tags.cassette.yaml @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:54:26 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 39e3571a-f33d-4cd4-8f09-1f3e2f5e1e09 + - 1fa6e8f3-e28a-4c08-874a-8bd14e3596e5 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 52.654863ms + duration: 37.865645ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:54:26 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1d785727-704f-4a0f-9005-b60bbe384c47 + - 566bf4ba-4bc9-4ad5-9ece-cfc88e0fb27c X-Total-Count: - "68" status: 200 OK code: 200 - duration: 149.681165ms + duration: 80.006925ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,43 +127,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 94d0c8e2-9db4-4585-b50c-f0bd86f5048a + - 2ad54127-46a7-43e7-83db-ed4672522734 status: 200 OK code: 200 - duration: 42.616301ms + duration: 44.033298ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 257 + content_length: 255 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"]}' + body: '{"name":"tf-srv-elated-payne","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: @@ -182,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1794 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: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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front", "web"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:27.482728+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1752" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1794" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:54:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a3d6d9b6-3fba-4714-a2ba-cb6c8e5dc078 + - b66516f4-3ed1-42f4-ba8e-8878d4b2bb67 status: 201 Created code: 201 - duration: 3.464860392s + duration: 1.093657355s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1794 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: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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front", "web"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:27.482728+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1752" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1794" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2fc274d0-9f93-4bee-b7a9-02af0b3b21de + - e20827c5-9d3b-4269-85d6-5bdd37a6cc10 status: 200 OK code: 200 - duration: 142.367966ms + duration: 137.031085ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1794 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: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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front", "web"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:27.482728+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1752" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1794" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e28c331c-c8f3-45fa-971e-f436b078095b + - 9eb9e2ac-d38a-4daa-bb89-14dccc9f6999 status: 200 OK code: 200 - duration: 137.027388ms + duration: 134.489543ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -331,31 +295,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1748 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: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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front", "web"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:27.482728+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1752" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1748" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 31c96bcd-b5a2-43c0-9f49-da351b69de1a + - 2eb67ac7-36a6-470c-8f9a-a43e1e01ef2c status: 200 OK code: 200 - duration: 133.677851ms + duration: 136.460068ms - id: 7 request: proto: HTTP/1.1 @@ -372,7 +328,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c method: GET response: proto: HTTP/2.0 @@ -382,29 +338,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a6c0f582-793b-401e-882e-4331ce6f056c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3862ef7d-3b56-4325-8b76-43c62a1ca7be + - 1644d747-00bb-4bf0-bfd1-a0f6ff2748e9 status: 404 Not Found code: 404 - duration: 28.919214ms + duration: 31.115964ms - id: 8 request: proto: HTTP/1.1 @@ -421,7 +369,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c method: GET response: proto: HTTP/2.0 @@ -431,29 +379,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"a6c0f582-793b-401e-882e-4331ce6f056c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:27.599540Z", "updated_at":"2025-10-29T22:54:27.599540Z", "references":[{"id":"785fb8cd-2a12-4960-aa62-43790e733e9a", "product_resource_type":"instance_server", "product_resource_id":"7c779c53-80f4-49e5-b446-5fc017816e68", "created_at":"2025-10-29T22:54:27.599540Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ada440e0-fe83-4b02-9fa1-844c7f08e4bf + - 3df5cea6-a5e3-46d7-a6a6-9631cae72107 status: 200 OK code: 200 - duration: 98.411653ms + duration: 81.253237ms - id: 9 request: proto: HTTP/1.1 @@ -470,7 +410,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/user_data method: GET response: proto: HTTP/2.0 @@ -480,29 +420,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1eee268c-8e9d-4e6d-bda4-93b5570862c5 + - 35822fcf-e478-48b8-becb-30547e05a514 status: 200 OK code: 200 - duration: 104.724643ms + duration: 95.450213ms - id: 10 request: proto: HTTP/1.1 @@ -519,7 +451,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/private_nics method: GET response: proto: HTTP/2.0 @@ -529,33 +461,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:10 GMT + - Wed, 29 Oct 2025 22:54:28 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - db4d6406-4098-462a-9b27-1667ddf4bc97 + - 995f9f37-c821-4b6c-ad31-85f6a361c910 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 103.704041ms + duration: 86.100129ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -580,31 +504,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1794 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: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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front", "web"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:27.482728+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1752" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1794" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 76b75196-d03a-4d50-a755-b7a29765a54f + - f2de566a-4146-477c-8ffe-ec348b635a85 status: 200 OK code: 200 - duration: 176.122444ms + duration: 130.421366ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -629,31 +545,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1748 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: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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front", "web"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:27.482728+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1752" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1748" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4b8356ae-6656-4036-9f99-8ea66ca08dd7 + - e244ca6a-18dc-412a-9099-e3316857aaed status: 200 OK code: 200 - duration: 147.364241ms + duration: 145.090316ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c method: GET response: proto: HTTP/2.0 @@ -680,29 +588,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a6c0f582-793b-401e-882e-4331ce6f056c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a18ec896-643f-4cc0-ba1f-bd0e8d068a29 + - 00744b90-5a75-4cb4-a9dc-d7549517627a status: 404 Not Found code: 404 - duration: 23.834856ms + duration: 30.425713ms - id: 14 request: proto: HTTP/1.1 @@ -719,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/0cfc10b4-77c1-498b-907a-29f40cb5d439 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c method: GET response: proto: HTTP/2.0 @@ -729,29 +629,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"a6c0f582-793b-401e-882e-4331ce6f056c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:27.599540Z", "updated_at":"2025-10-29T22:54:27.599540Z", "references":[{"id":"785fb8cd-2a12-4960-aa62-43790e733e9a", "product_resource_type":"instance_server", "product_resource_id":"7c779c53-80f4-49e5-b446-5fc017816e68", "created_at":"2025-10-29T22:54:27.599540Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 444b8e70-37bf-481a-b2ff-55aac0ea45d5 + - 28f639e8-6d14-4714-b78f-24dc5e435c28 status: 200 OK code: 200 - duration: 84.261135ms + duration: 75.007848ms - id: 15 request: proto: HTTP/1.1 @@ -768,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/servers/1085b551-6207-43aa-8ed7-2af0f1799449/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/user_data method: GET response: proto: HTTP/2.0 @@ -778,29 +670,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b6f1335e-c488-4921-9869-4db4fadf5f0d + - 58db6f36-8fef-4671-a007-d4bfc8f1635b status: 200 OK code: 200 - duration: 80.591418ms + duration: 96.978451ms - id: 16 request: proto: HTTP/1.1 @@ -817,7 +701,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/private_nics method: GET response: proto: HTTP/2.0 @@ -827,33 +711,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:10 GMT + - Wed, 29 Oct 2025 22:54:29 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 13356925-8442-4716-a7e5-c119916f400d + - 9ca19156-91bf-465c-b214-f9e42be2097c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 85.31497ms + duration: 112.498131ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -878,31 +754,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1794 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: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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front", "web"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:27.482728+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1752" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1794" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c6a09292-9b6d-491d-85f7-8283fc9b401d + - ad0ee41a-e5b8-4984-8be6-b6b6b6a829ee status: 200 OK code: 200 - duration: 118.778682ms + duration: 143.24238ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c method: GET response: proto: HTTP/2.0 @@ -929,29 +797,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a6c0f582-793b-401e-882e-4331ce6f056c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0b1c978b-ad98-457a-8601-3a38f7fa5f23 + - adcad313-6f7b-4ab9-bb21-86fc62245dad status: 404 Not Found code: 404 - duration: 23.974829ms + duration: 31.861929ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +828,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c method: GET response: proto: HTTP/2.0 @@ -978,29 +838,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"a6c0f582-793b-401e-882e-4331ce6f056c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:27.599540Z", "updated_at":"2025-10-29T22:54:27.599540Z", "references":[{"id":"785fb8cd-2a12-4960-aa62-43790e733e9a", "product_resource_type":"instance_server", "product_resource_id":"7c779c53-80f4-49e5-b446-5fc017816e68", "created_at":"2025-10-29T22:54:27.599540Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fc8d3d68-0903-4811-b0ec-72e6669fb616 + - a240096e-ddbe-49f0-86a5-ef9ed58e6214 status: 200 OK code: 200 - duration: 88.352003ms + duration: 82.8594ms - id: 20 request: proto: HTTP/1.1 @@ -1017,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/1085b551-6207-43aa-8ed7-2af0f1799449/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/user_data method: GET response: proto: HTTP/2.0 @@ -1027,29 +879,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a93ed1a1-1552-4526-96ff-17b23e051cac + - 2828045c-f3c3-4929-a0b0-b8fde273440b status: 200 OK code: 200 - duration: 104.783896ms + duration: 99.358392ms - id: 21 request: proto: HTTP/1.1 @@ -1066,7 +910,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/private_nics method: GET response: proto: HTTP/2.0 @@ -1076,33 +920,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:11 GMT + - Wed, 29 Oct 2025 22:54:30 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6f54f1ce-1969-4ad5-a6ef-10b066debdbe + - ba8b8917-8297-42e8-9154-eb0d7f21d9e7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 104.479014ms + duration: 113.313877ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -1127,31 +963,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1748 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: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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front", "web"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:27.482728+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1752" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1748" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 20e6fdfd-1fe2-4a3e-b07b-809f40f2d2ac + - c2043a9b-6f2e-42a6-8915-1030fac371bd status: 200 OK code: 200 - duration: 144.856573ms + duration: 150.541109ms - id: 23 request: proto: HTTP/1.1 @@ -1170,7 +998,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/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: PATCH response: proto: HTTP/2.0 @@ -1178,31 +1006,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1745 + content_length: 1787 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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:30.628807+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1745" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1787" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5561a06d-ceb1-4573-942a-f54d03aee619 + - 542f2004-7f8c-4b7a-8105-f2a3b8e9052e status: 200 OK code: 200 - duration: 216.548213ms + duration: 200.626634ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1039,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -1227,31 +1047,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1745 + content_length: 1787 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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:30.628807+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1745" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1787" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - baf81bad-990e-4aab-bc6f-e9355a670e15 + - cfca5593-a685-4d2e-98d4-49a8462bddd5 status: 200 OK code: 200 - duration: 139.894044ms + duration: 176.959018ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1080,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -1276,31 +1088,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1745 + content_length: 1787 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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:30.628807+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1745" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1787" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2c39ad5d-cca0-4b7c-b561-36f50b352160 + - e9d590fa-b712-412b-aa03-78690cf85640 status: 200 OK code: 200 - duration: 132.962313ms + duration: 206.681577ms - id: 26 request: proto: HTTP/1.1 @@ -1317,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/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c method: GET response: proto: HTTP/2.0 @@ -1327,29 +1131,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a6c0f582-793b-401e-882e-4331ce6f056c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e3580afc-d007-40b0-b270-3cb772036fd2 + - e0be09b2-6713-44fc-891c-f9666938bed5 status: 404 Not Found code: 404 - duration: 30.387797ms + duration: 30.833536ms - id: 27 request: proto: HTTP/1.1 @@ -1366,7 +1162,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c method: GET response: proto: HTTP/2.0 @@ -1376,29 +1172,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"a6c0f582-793b-401e-882e-4331ce6f056c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:27.599540Z", "updated_at":"2025-10-29T22:54:27.599540Z", "references":[{"id":"785fb8cd-2a12-4960-aa62-43790e733e9a", "product_resource_type":"instance_server", "product_resource_id":"7c779c53-80f4-49e5-b446-5fc017816e68", "created_at":"2025-10-29T22:54:27.599540Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4c1b284e-f442-4054-88f1-18bb0727b465 + - 1b2f3d04-3a36-4975-9bce-95ab764f8b82 status: 200 OK code: 200 - duration: 81.205391ms + duration: 237.32591ms - id: 28 request: proto: HTTP/1.1 @@ -1415,7 +1203,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/user_data method: GET response: proto: HTTP/2.0 @@ -1425,29 +1213,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0cdadc32-dc63-418a-9c43-e9a7a05f3299 + - 6815dd7f-984b-483a-adca-28457d2c34ce status: 200 OK code: 200 - duration: 107.039935ms + duration: 269.47198ms - id: 29 request: proto: HTTP/1.1 @@ -1464,7 +1244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/private_nics method: GET response: proto: HTTP/2.0 @@ -1474,33 +1254,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:12 GMT + - Wed, 29 Oct 2025 22:54:31 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 29a2ea92-5dc5-4414-8474-cb67aa6a4589 + - ed4d8168-dad8-4370-8172-1993c8f703b2 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 105.687079ms + duration: 79.348375ms - id: 30 request: proto: HTTP/1.1 @@ -1517,7 +1289,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -1525,31 +1297,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1745 + content_length: 1741 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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:30.628807+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1745" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1741" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d64932fc-524b-4a56-ba3c-bd775fca0d69 + - da01fbae-fd3d-4273-af16-34bc476f8804 status: 200 OK code: 200 - duration: 139.638475ms + duration: 156.090886ms - id: 31 request: proto: HTTP/1.1 @@ -1566,7 +1330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -1574,31 +1338,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1745 + content_length: 1741 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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:30.628807+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1745" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1741" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 82743abe-d2c0-45de-a02f-f5031e842f8c + - 799572c7-5904-4bf0-914c-2953231aa186 status: 200 OK code: 200 - duration: 160.949114ms + duration: 314.181805ms - id: 32 request: proto: HTTP/1.1 @@ -1615,7 +1371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c method: GET response: proto: HTTP/2.0 @@ -1625,29 +1381,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a6c0f582-793b-401e-882e-4331ce6f056c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 25a3f11c-aa3e-4f4f-9bd3-c1801b220a83 + - 7b313f9c-a5e3-4c99-8850-7ad1b26ed796 status: 404 Not Found code: 404 - duration: 29.426045ms + duration: 28.771811ms - id: 33 request: proto: HTTP/1.1 @@ -1664,7 +1412,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c method: GET response: proto: HTTP/2.0 @@ -1674,29 +1422,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"a6c0f582-793b-401e-882e-4331ce6f056c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:27.599540Z", "updated_at":"2025-10-29T22:54:27.599540Z", "references":[{"id":"785fb8cd-2a12-4960-aa62-43790e733e9a", "product_resource_type":"instance_server", "product_resource_id":"7c779c53-80f4-49e5-b446-5fc017816e68", "created_at":"2025-10-29T22:54:27.599540Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2b0d270e-77a8-4a66-b866-2e8690f9e667 + - f43e521a-f4aa-4378-89d8-892eaff4a8cf status: 200 OK code: 200 - duration: 65.456787ms + duration: 243.774017ms - id: 34 request: proto: HTTP/1.1 @@ -1713,7 +1453,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/user_data method: GET response: proto: HTTP/2.0 @@ -1723,29 +1463,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 50badccb-7c13-4384-b5ac-9d1be397d2de + - 2498cf76-6af2-4839-8c2f-8ffe85f90ac1 status: 200 OK code: 200 - duration: 106.241059ms + duration: 100.732552ms - id: 35 request: proto: HTTP/1.1 @@ -1762,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/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/private_nics method: GET response: proto: HTTP/2.0 @@ -1772,33 +1504,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:13 GMT + - Wed, 29 Oct 2025 22:54:33 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 310fbe08-ac20-4486-bcdb-c6ce3b2accc1 + - 8caad61f-75c7-4cc1-a225-ab61d01305ab X-Total-Count: - "0" status: 200 OK code: 200 - duration: 130.127122ms + duration: 167.892697ms - id: 36 request: proto: HTTP/1.1 @@ -1815,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/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -1823,31 +1547,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1745 + content_length: 1787 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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:30.628807+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1745" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1787" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 96e061d4-7fe3-4d49-9618-7e989730cee4 + - 741fed77-e1e1-4599-bd37-c609ca666e87 status: 200 OK code: 200 - duration: 122.359195ms + duration: 295.280201ms - id: 37 request: proto: HTTP/1.1 @@ -1864,7 +1580,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -1872,31 +1588,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1745 + content_length: 1787 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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:30.628807+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1745" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1787" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 768a4a0a-d5e2-4385-9289-f4f6944eec5e + - f8e732ee-4424-4c5f-a99d-76f27861afbe status: 200 OK code: 200 - duration: 134.452247ms + duration: 131.48709ms - id: 38 request: proto: HTTP/1.1 @@ -1913,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/block/v1alpha1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c method: GET response: proto: HTTP/2.0 @@ -1923,29 +1631,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"a6c0f582-793b-401e-882e-4331ce6f056c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:27.599540Z", "updated_at":"2025-10-29T22:54:27.599540Z", "references":[{"id":"785fb8cd-2a12-4960-aa62-43790e733e9a", "product_resource_type":"instance_server", "product_resource_id":"7c779c53-80f4-49e5-b446-5fc017816e68", "created_at":"2025-10-29T22:54:27.599540Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 39fe14f8-dd71-4786-a6de-d54d08f77812 + - 8008b1cc-3e59-4002-8233-a3bdb8b06b10 status: 200 OK code: 200 - duration: 93.0664ms + duration: 248.611704ms - id: 39 request: proto: HTTP/1.1 @@ -1964,7 +1664,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/1085b551-6207-43aa-8ed7-2af0f1799449/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/action method: POST response: proto: HTTP/2.0 @@ -1974,31 +1674,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "283857d0-a57d-4fbe-89f5-a416cbbd324c", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/7c779c53-80f4-49e5-b446-5fc017816e68/action", "href_result": "/servers/7c779c53-80f4-49e5-b446-5fc017816e68", "started_at": "2025-10-29T22:54:34.253699+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:54:34 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7105806c-ba4a-40db-a30c-e5a6248258fa + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/283857d0-a57d-4fbe-89f5-a416cbbd324c Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45101f68-1b3f-4251-b203-e2542973fa86 + - 0a36272e-f333-4f06-9df2-5872c6647d3a status: 202 Accepted code: 202 - duration: 258.915377ms + duration: 275.320157ms - id: 40 request: proto: HTTP/1.1 @@ -2015,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/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -2023,31 +1715,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1767 + content_length: 1763 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: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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:34.051328+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1767" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1763" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ee9592f6-7754-4906-8558-355431f75024 + - f81e0c7f-1799-40b5-9e45-0e6c632f4a1a status: 200 OK code: 200 - duration: 159.349026ms + duration: 273.836584ms - id: 41 request: proto: HTTP/1.1 @@ -2064,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/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -2072,31 +1756,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1900 + content_length: 1943 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: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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:36.881195+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "901", "node_id": "46"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1900" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1943" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 833a2756-4eb0-4b08-8db9-a7dce269fb73 + - d7a44226-ae4c-4673-918e-1b0c33bca484 status: 200 OK code: 200 - duration: 139.378247ms + duration: 208.846409ms - id: 42 request: proto: HTTP/1.1 @@ -2115,7 +1791,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/1085b551-6207-43aa-8ed7-2af0f1799449/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/action method: POST response: proto: HTTP/2.0 @@ -2125,31 +1801,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "f5310853-db63-4556-9109-a3c294e8dd71", "description": "server_terminate", "status": "pending", "href_from": "/servers/7c779c53-80f4-49e5-b446-5fc017816e68/action", "href_result": "/servers/7c779c53-80f4-49e5-b446-5fc017816e68", "started_at": "2025-10-29T22:54:40.030124+00:00", "terminated_at": null, "progress": 0, "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:19 GMT + - Wed, 29 Oct 2025 22:54:40 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c41182fc-6c4d-4da4-8622-27c63e639bda + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f5310853-db63-4556-9109-a3c294e8dd71 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b321f294-459e-45ac-8472-6043e032c315 + - a2413efa-5b6d-4e5f-8955-6362e2b1774d status: 202 Accepted code: 202 - duration: 262.456886ms + duration: 308.163777ms - id: 43 request: proto: HTTP/1.1 @@ -2166,7 +1834,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -2174,31 +1842,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1863 + content_length: 1906 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: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"}}' + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:39.814392+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "901", "node_id": "46"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1863" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1906" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:20 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 82ec088a-8889-417e-ab2d-11e95e4ce092 + - 58313275-b020-4d34-8e71-27af9db6c267 status: 200 OK code: 200 - duration: 149.876411ms + duration: 128.424135ms - id: 44 request: proto: HTTP/1.1 @@ -2215,7 +1875,89 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1906 + uncompressed: false + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:39.814392+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "901", "node_id": "46"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1906" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:54:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 292c17a4-06ca-41cb-b832-3a596edb42d6 + status: 200 OK + code: 200 + duration: 140.106863ms + - 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/7c779c53-80f4-49e5-b446-5fc017816e68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1906 + uncompressed: false + body: '{"server": {"id": "7c779c53-80f4-49e5-b446-5fc017816e68", "name": "tf-srv-elated-payne", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-elated-payne", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a6c0f582-793b-401e-882e-4331ce6f056c", "state": "available", "zone": "fr-par-1"}}, "tags": ["front"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:8f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:27.482728+00:00", "modification_date": "2025-10-29T22:54:39.814392+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "901", "node_id": "46"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1906" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:54:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - d50b9854-459d-4ab0-b040-4dd99cd70d18 + status: 200 OK + code: 200 + duration: 171.38239ms + - 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/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -2225,30 +1967,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1085b551-6207-43aa-8ed7-2af0f1799449","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "7c779c53-80f4-49e5-b446-5fc017816e68"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bdc19690-7a13-4fef-85cd-541109955062 + - 8edc2bee-63b3-4f6d-990d-c49a00e3e47b status: 404 Not Found code: 404 - duration: 51.372138ms - - id: 45 + duration: 43.728672ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2264,7 +1998,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c method: GET response: proto: HTTP/2.0 @@ -2274,30 +2008,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a6c0f582-793b-401e-882e-4331ce6f056c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 14596a76-f78a-40b8-9f05-1b0a8d9e45e9 + - 9c915792-5fa7-43e4-b0cf-c2ba49db2f94 status: 404 Not Found code: 404 - duration: 37.269718ms - - id: 46 + duration: 22.461273ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2313,7 +2039,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c method: GET response: proto: HTTP/2.0 @@ -2323,30 +2049,22 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"a6c0f582-793b-401e-882e-4331ce6f056c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:27.599540Z", "updated_at":"2025-10-29T22:54:52.191539Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:54:52.191539Z", "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:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dd8c9d0b-1a14-440c-a753-0c3442bfe137 + - c48c2dfb-973a-476a-a5a7-f74989ae85c7 status: 200 OK code: 200 - duration: 96.304007ms - - id: 47 + duration: 90.456021ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2362,7 +2080,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c method: DELETE response: proto: HTTP/2.0 @@ -2374,26 +2092,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 60a27f1b-3d2c-4160-bc8e-bc4b2ce05a52 + - 5e789048-095b-4a55-8996-82794192c539 status: 204 No Content code: 204 - duration: 169.87553ms - - id: 48 + duration: 148.470407ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2409,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/1085b551-6207-43aa-8ed7-2af0f1799449 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 method: GET response: proto: HTTP/2.0 @@ -2419,26 +2129,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1085b551-6207-43aa-8ed7-2af0f1799449","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "7c779c53-80f4-49e5-b446-5fc017816e68"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f7c6f21a-c84b-44db-b57a-caa73b1f6ee8 + - f81d3672-861f-4311-a1df-32a043bab41d status: 404 Not Found code: 404 - duration: 42.633612ms + duration: 48.667157ms diff --git a/internal/services/instance/testdata/server-attach-detach-file-system.cassette.yaml b/internal/services/instance/testdata/server-attach-detach-file-system.cassette.yaml index 36b037d59..8d8d9fbc0 100644 --- a/internal/services/instance/testdata/server-attach-detach-file-system.cassette.yaml +++ b/internal/services/instance/testdata/server-attach-detach-file-system.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"filesystem-instance-terraform-test","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","size":100000000000,"tags":[]}' + body: '{"name":"filesystem-instance-terraform-test","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","size":100000000000,"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; 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/file/v1alpha1/regions/fr-par/filesystems method: POST response: @@ -29,29 +29,21 @@ interactions: trailer: {} content_length: 388 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:13.913922Z","id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","name":"filesystem-instance-terraform-test","number_of_attachments":0,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"creating","tags":[],"updated_at":"2025-10-22T07:59:13.913922Z"}' + body: '{"id":"0a96cd03-a93f-470c-920f-64481ad89fee", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"creating", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":0, "region":"fr-par", "created_at":"2025-10-29T22:53:57.017886Z", "updated_at":"2025-10-29T22:53:57.017886Z"}' headers: Content-Length: - "388" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:14 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 33cbfc30-d544-4bd8-b149-b5bcacca7e6a + - 09a26af7-fbf4-4fd2-ba34-ec5a7d2c1886 status: 200 OK code: 200 - duration: 503.226333ms + duration: 195.13686ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +59,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/51d15035-37e4-4756-8d45-7dfbe62efc2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee method: GET response: proto: HTTP/2.0 @@ -78,29 +70,21 @@ interactions: trailer: {} content_length: 388 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:13.913922Z","id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","name":"filesystem-instance-terraform-test","number_of_attachments":0,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"creating","tags":[],"updated_at":"2025-10-22T07:59:13.913922Z"}' + body: '{"id":"0a96cd03-a93f-470c-920f-64481ad89fee", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"creating", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":0, "region":"fr-par", "created_at":"2025-10-29T22:53:57.017886Z", "updated_at":"2025-10-29T22:53:57.017886Z"}' headers: Content-Length: - "388" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:14 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 41489a09-cb47-40d6-83fc-47fd3545aef5 + - c7a18efc-3711-4b98-b882-12c8f8b32e5e status: 200 OK code: 200 - duration: 45.402208ms + duration: 96.604413ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +100,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/51d15035-37e4-4756-8d45-7dfbe62efc2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee method: GET response: proto: HTTP/2.0 @@ -127,29 +111,21 @@ interactions: trailer: {} content_length: 389 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:13.913922Z","id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","name":"filesystem-instance-terraform-test","number_of_attachments":0,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T07:59:13.913922Z"}' + body: '{"id":"0a96cd03-a93f-470c-920f-64481ad89fee", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":0, "region":"fr-par", "created_at":"2025-10-29T22:53:57.017886Z", "updated_at":"2025-10-29T22:53:57.017886Z"}' headers: Content-Length: - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d3475b5f-53a3-4dfb-a16b-cf1e640112d7 + - 5cc20bdd-8ee7-47e4-b376-16e8c76628dc status: 200 OK code: 200 - duration: 42.187708ms + duration: 91.199238ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +141,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/51d15035-37e4-4756-8d45-7dfbe62efc2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee method: GET response: proto: HTTP/2.0 @@ -176,29 +152,21 @@ interactions: trailer: {} content_length: 389 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:13.913922Z","id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","name":"filesystem-instance-terraform-test","number_of_attachments":0,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T07:59:13.913922Z"}' + body: '{"id":"0a96cd03-a93f-470c-920f-64481ad89fee", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":0, "region":"fr-par", "created_at":"2025-10-29T22:53:57.017886Z", "updated_at":"2025-10-29T22:53:57.017886Z"}' headers: Content-Length: - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b4676d04-67db-49c3-b0c6-3067a8027a84 + - 5e4c0c2c-00ba-4642-9faf-697773ccf28f status: 200 OK code: 200 - duration: 30.297667ms + duration: 83.639852ms - id: 4 request: proto: HTTP/1.1 @@ -211,10 +179,12 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; 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: @@ -225,33 +195,25 @@ interactions: trailer: {} content_length: 39264 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":2,"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":4,"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":8,"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":16,"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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - "39264" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:19 GMT + - Wed, 29 Oct 2025 22:54:02 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7b9a08cd-c81e-47d3-8d7e-cb6974b25ee5 + - 1f570a32-2056-4a3e-a373-bb80dc3354c7 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 93.374208ms + duration: 55.522388ms - id: 5 request: proto: HTTP/1.1 @@ -264,10 +226,12 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; 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: @@ -278,33 +242,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:19 GMT + - Wed, 29 Oct 2025 22:54:02 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b0b045d2-20c1-49dc-b6eb-98193359db99 + - 7cdf3096-0474-46bd-b99a-1ed1726ba7c7 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 68.874ms + duration: 50.083047ms - id: 6 request: proto: HTTP/1.1 @@ -317,10 +273,18 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; 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: @@ -329,49 +293,41 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 31cf9160-29e0-4ec0-a0cd-56aad1d33d08 + - 2f4cf88d-1b56-4966-8104-afeeaa34b704 status: 200 OK code: 200 - duration: 46.753709ms + duration: 47.356739ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 301 + content_length: 305 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-loving-hugle","dynamic_ip_required":false,"commercial_type":"POP2-HM-2C-16G","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","tags":["terraform-test","scaleway_instance_server","state"]}' + body: '{"name":"tf-srv-naughty-thompson","dynamic_ip_required":false,"commercial_type":"POP2-HM-2C-16G","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","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.25.0; 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: @@ -380,33 +336,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1799 + content_length: 1807 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:19.531821+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:03.039865+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1799" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1807" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:19 GMT + - Wed, 29 Oct 2025 22:54:03 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3e794ff8-6a91-4aae-a3f2-727bd6b38c65 + - 511f497b-381e-4bb1-9abd-6cf55383163a status: 201 Created code: 201 - duration: 524.831042ms + duration: 1.298491755s - id: 8 request: proto: HTTP/1.1 @@ -422,8 +370,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -431,31 +379,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1799 + content_length: 1807 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:19.531821+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:03.039865+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1799" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1807" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5741b2d4-3056-4341-9039-93c1fd2a1e00 + - f79cce52-83bd-4b2a-bfbe-3769ad7ffebb status: 200 OK code: 200 - duration: 84.645083ms + duration: 147.40351ms - id: 9 request: proto: HTTP/1.1 @@ -471,8 +411,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -480,31 +420,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1799 + content_length: 1807 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:19.531821+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:03.039865+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1799" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1807" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:20 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 39f67c27-d750-4e4f-a9a5-64e9cd5a4588 + - fb86b060-6bcd-452b-9d4a-3cbd82f61523 status: 200 OK code: 200 - duration: 106.140875ms + duration: 141.923915ms - id: 10 request: proto: HTTP/1.1 @@ -520,8 +452,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -531,29 +463,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:19.620338Z","id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-10-22T07:59:19.620338Z","id":"203162c2-776a-456c-be12-5a3b368e03c2","product_resource_id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-22T07:59:19.620338Z","zone":"fr-par-1"}' + body: '{"id":"5eba7122-6392-40c0-b142-da2b06e19b34", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:03.171658Z", "updated_at":"2025-10-29T22:54:03.171658Z", "references":[{"id":"9fe1ec1a-2a14-4f5e-937b-3c3cc35b421b", "product_resource_type":"instance_server", "product_resource_id":"9d2958d2-ea2d-4722-96c6-afcc457083c8", "created_at":"2025-10-29T22:54:03.171658Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:20 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b624a26a-1483-4148-aeb8-f7bd0c476814 + - a24b0773-31fb-4bb4-9e1b-cccfa17e0fa2 status: 200 OK code: 200 - duration: 43.210458ms + duration: 91.248841ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +495,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/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/9d2958d2-ea2d-4722-96c6-afcc457083c8/action method: POST response: proto: HTTP/2.0 @@ -582,31 +506,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/action","href_result":"/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058","id":"c787d0be-7a83-4aa6-b209-d916ad049d69","progress":0,"started_at":"2025-10-22T07:59:20.311359+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task": {"id": "4df89dea-a72d-4670-9faa-3576d4a85bef", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/action", "href_result": "/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8", "started_at": "2025-10-29T22:54:04.455616+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:20 GMT + - Wed, 29 Oct 2025 22:54:04 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c787d0be-7a83-4aa6-b209-d916ad049d69 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4df89dea-a72d-4670-9faa-3576d4a85bef Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9e70c690-787b-4482-89b9-30af6de52259 + - 7d1625b6-5d71-497f-8a8a-4fef22d7eade status: 202 Accepted code: 202 - duration: 212.971958ms + duration: 281.328559ms - id: 12 request: proto: HTTP/1.1 @@ -622,8 +538,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -631,31 +547,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1821 + content_length: 1829 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:20.153661+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:04.244608+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1821" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1829" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:20 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c8b9e240-47a5-44f5-a131-bf74b851c396 + - 6af19d2f-5a4f-4d0c-b2ae-7e4b07c119f0 status: 200 OK code: 200 - duration: 92.194958ms + duration: 129.325328ms - id: 13 request: proto: HTTP/1.1 @@ -671,8 +579,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -680,31 +588,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 2009 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2009" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1f54ab22-49bb-47ce-b683-055db7f8a98d + - 112c5854-a569-4814-999f-07219dbc1631 status: 200 OK code: 200 - duration: 92.096167ms + duration: 134.36353ms - id: 14 request: proto: HTTP/1.1 @@ -716,14 +616,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e"}' + body: '{"filesystem_id":"0a96cd03-a93f-470c-920f-64481ad89fee"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/attach-filesystem + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/attach-filesystem method: POST response: proto: HTTP/2.0 @@ -731,31 +631,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2088 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"attaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "attaching"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 523ed8d8-8439-4728-b29f-9c307df390ba + - c5225cfe-4ae1-4b51-b4d6-c3bc54263e13 status: 200 OK code: 200 - duration: 544.142792ms + duration: 431.828357ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -780,31 +672,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"attaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "attaching"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a07b2db3-a079-425f-9c8d-157b395c9213 + - ee88acd8-b13d-4894-8bdd-0349e9c9b213 status: 200 OK code: 200 - duration: 103.987834ms + duration: 156.890002ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +704,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -829,31 +713,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"attaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "attaching"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:31 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0b009819-c2ff-4ac4-9ecf-4fd8559bdf50 + - 00235a4b-35de-4a49-8cd5-7c56427eaf01 status: 200 OK code: 200 - duration: 107.470458ms + duration: 144.733894ms - id: 17 request: proto: HTTP/1.1 @@ -869,8 +745,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -878,31 +754,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"attaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "attaching"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8683ca5a-b2ab-474b-ace7-0df306db29a1 + - f8e15029-a336-41cc-ac75-ee473e021356 status: 200 OK code: 200 - duration: 109.189042ms + duration: 136.705925ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +786,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -927,31 +795,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"attaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "attaching"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:41 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c3ab2316-899f-43d1-90ac-6ff4fa7f2530 + - 6fc236df-b5cc-44a4-9ee1-041790e2370c status: 200 OK code: 200 - duration: 82.34675ms + duration: 144.175754ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +827,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -976,31 +836,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"attaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "attaching"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:46 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f2889f67-679f-4f40-b8c0-7452180dab63 + - 56642427-e24a-4188-8d41-14c0d7355a7f status: 200 OK code: 200 - duration: 84.169584ms + duration: 178.263828ms - id: 20 request: proto: HTTP/1.1 @@ -1016,8 +868,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -1025,31 +877,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"attaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "attaching"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:51 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9c07ff8-e2da-4d97-9c19-ecd7b5972247 + - 23d4a18d-1b24-41f1-b93f-f49fac78bb74 status: 200 OK code: 200 - duration: 87.906125ms + duration: 270.608779ms - id: 21 request: proto: HTTP/1.1 @@ -1065,8 +909,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -1074,31 +918,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2088 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"attaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "attaching"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 07:59:56 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f723ddf1-d16c-4301-b9c2-d4d4b9a729a8 + - 8f9b32fc-0e8d-491f-ac2f-abaad8567613 status: 200 OK code: 200 - duration: 112.393875ms + duration: 146.014119ms - id: 22 request: proto: HTTP/1.1 @@ -1114,8 +950,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -1123,31 +959,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"attaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "attaching"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:01 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9096b154-4e08-4daa-8d2f-79053ec8dd8a + - edd80706-753b-4073-84fc-89f28ffe7df5 status: 200 OK code: 200 - duration: 155.2995ms + duration: 165.603221ms - id: 23 request: proto: HTTP/1.1 @@ -1163,8 +991,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -1172,31 +1000,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2088 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"attaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "attaching"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dbc8e660-4734-4bf0-9a15-c2509cb39a8d + - 34c9ff0f-ff98-47b1-bc13-7385c7c08fcb status: 200 OK code: 200 - duration: 165.9745ms + duration: 129.153072ms - id: 24 request: proto: HTTP/1.1 @@ -1212,8 +1032,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -1221,31 +1041,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2088 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "available"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:12 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 69a5adc3-f14d-4668-8287-67d603b91f8d + - 3a4ea0a2-2c72-4a05-a0a0-9c2a391e4767 status: 200 OK code: 200 - duration: 216.888167ms + duration: 155.571416ms - id: 25 request: proto: HTTP/1.1 @@ -1261,8 +1073,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -1270,31 +1082,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2088 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "available"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:12 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 639e2e71-9cfe-44ed-b141-2c179f0df861 + - 37f5c5a9-a774-41d1-a6e9-3ce0bee5174c status: 200 OK code: 200 - duration: 157.736708ms + duration: 148.12396ms - id: 26 request: proto: HTTP/1.1 @@ -1310,8 +1114,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -1321,29 +1125,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5eba7122-6392-40c0-b142-da2b06e19b34"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - acc9975b-32a3-4fcc-b217-c614539b7ab0 + - 33cd8e42-1e24-42c3-9d33-1cb152c8a991 status: 404 Not Found code: 404 - duration: 81.786667ms + duration: 22.331249ms - id: 27 request: proto: HTTP/1.1 @@ -1359,8 +1155,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -1370,29 +1166,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:19.620338Z","id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-10-22T07:59:19.620338Z","id":"203162c2-776a-456c-be12-5a3b368e03c2","product_resource_id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-22T07:59:19.620338Z","zone":"fr-par-1"}' + body: '{"id":"5eba7122-6392-40c0-b142-da2b06e19b34", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:03.171658Z", "updated_at":"2025-10-29T22:54:03.171658Z", "references":[{"id":"9fe1ec1a-2a14-4f5e-937b-3c3cc35b421b", "product_resource_type":"instance_server", "product_resource_id":"9d2958d2-ea2d-4722-96c6-afcc457083c8", "created_at":"2025-10-29T22:54:03.171658Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8b3dca80-73e7-482c-8448-a9616ad027dd + - c8f7f0f6-4176-4e5e-868b-9c3c10adb00e status: 200 OK code: 200 - duration: 290.703625ms + duration: 90.141433ms - id: 28 request: proto: HTTP/1.1 @@ -1408,8 +1196,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/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/9d2958d2-ea2d-4722-96c6-afcc457083c8/user_data method: GET response: proto: HTTP/2.0 @@ -1419,29 +1207,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 81c94416-e848-4916-9386-54d9fbe9b387 + - 10f7d348-c7ef-4466-bc5a-088ab51c488d status: 200 OK code: 200 - duration: 120.848125ms + duration: 116.8086ms - id: 29 request: proto: HTTP/1.1 @@ -1457,8 +1237,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/private_nics method: GET response: proto: HTTP/2.0 @@ -1468,33 +1248,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:13 GMT + - Wed, 29 Oct 2025 22:54:57 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8612a859-eff3-44be-9f32-65597fb69113 + - cca9efcb-5b6f-4436-b7b3-92a0caff97e7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 81.349875ms + duration: 103.029964ms - id: 30 request: proto: HTTP/1.1 @@ -1510,8 +1282,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -1519,31 +1291,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2088 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "available"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4feb5740-d7aa-4f09-bba5-6c68d41b288f + - a253fc85-fb0c-4882-8bed-29e5476e62d1 status: 200 OK code: 200 - duration: 143.917791ms + duration: 130.567209ms - id: 31 request: proto: HTTP/1.1 @@ -1559,8 +1323,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/51d15035-37e4-4756-8d45-7dfbe62efc2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee method: GET response: proto: HTTP/2.0 @@ -1570,29 +1334,21 @@ interactions: trailer: {} content_length: 389 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:13.913922Z","id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","name":"filesystem-instance-terraform-test","number_of_attachments":1,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T07:59:13.913922Z"}' + body: '{"id":"0a96cd03-a93f-470c-920f-64481ad89fee", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":1, "region":"fr-par", "created_at":"2025-10-29T22:53:57.017886Z", "updated_at":"2025-10-29T22:53:57.017886Z"}' headers: Content-Length: - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2c73356d-54dc-4aad-b0a5-85ab493ca89e + - 23a78ee6-fd2e-4303-bb04-9fd182f72b9b status: 200 OK code: 200 - duration: 52.168041ms + duration: 77.265776ms - id: 32 request: proto: HTTP/1.1 @@ -1608,8 +1364,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -1617,31 +1373,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "available"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f163354b-3593-40b2-a016-15d737340ead + - d0676b1d-52ff-40a3-a35d-ea3ef9ab7561 status: 200 OK code: 200 - duration: 140.9135ms + duration: 145.057666ms - id: 33 request: proto: HTTP/1.1 @@ -1657,8 +1405,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -1668,29 +1416,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5eba7122-6392-40c0-b142-da2b06e19b34"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f5df8119-132e-4d8d-944b-6fe7bd115e82 + - 325da4d0-25f3-43b6-93c6-8afd574d6800 status: 404 Not Found code: 404 - duration: 269.536417ms + duration: 31.789366ms - id: 34 request: proto: HTTP/1.1 @@ -1706,8 +1446,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -1717,29 +1457,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:19.620338Z","id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-10-22T07:59:19.620338Z","id":"203162c2-776a-456c-be12-5a3b368e03c2","product_resource_id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-22T07:59:19.620338Z","zone":"fr-par-1"}' + body: '{"id":"5eba7122-6392-40c0-b142-da2b06e19b34", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:03.171658Z", "updated_at":"2025-10-29T22:54:03.171658Z", "references":[{"id":"9fe1ec1a-2a14-4f5e-937b-3c3cc35b421b", "product_resource_type":"instance_server", "product_resource_id":"9d2958d2-ea2d-4722-96c6-afcc457083c8", "created_at":"2025-10-29T22:54:03.171658Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f3a1deac-1d9e-4bfe-973c-2b2a19431a57 + - e4a14266-695e-4762-82ee-73558e1b08f5 status: 200 OK code: 200 - duration: 93.286875ms + duration: 94.330527ms - id: 35 request: proto: HTTP/1.1 @@ -1755,8 +1487,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/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/9d2958d2-ea2d-4722-96c6-afcc457083c8/user_data method: GET response: proto: HTTP/2.0 @@ -1766,29 +1498,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4a9ff2f-03e7-4095-bcd0-9407fdbe7740 + - 5eefbd29-3f27-4f5e-84f6-3e0cf99a9c4d status: 200 OK code: 200 - duration: 89.316959ms + duration: 99.24125ms - id: 36 request: proto: HTTP/1.1 @@ -1804,8 +1528,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/private_nics method: GET response: proto: HTTP/2.0 @@ -1815,33 +1539,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:14 GMT + - Wed, 29 Oct 2025 22:54:58 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b51be38f-ff33-4b77-a02f-9b3d53c66558 + - c6c61baf-8f91-4df7-a496-319b58adfe4b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 105.544125ms + duration: 96.533467ms - id: 37 request: proto: HTTP/1.1 @@ -1857,8 +1573,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/51d15035-37e4-4756-8d45-7dfbe62efc2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee method: GET response: proto: HTTP/2.0 @@ -1868,29 +1584,21 @@ interactions: trailer: {} content_length: 389 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:13.913922Z","id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","name":"filesystem-instance-terraform-test","number_of_attachments":1,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T07:59:13.913922Z"}' + body: '{"id":"0a96cd03-a93f-470c-920f-64481ad89fee", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":1, "region":"fr-par", "created_at":"2025-10-29T22:53:57.017886Z", "updated_at":"2025-10-29T22:53:57.017886Z"}' headers: Content-Length: - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 677e2a90-dd8b-42dd-8205-6ac1a5209d65 + - 2a97f6fc-05ce-46dd-a4d6-c195e17d047f status: 200 OK code: 200 - duration: 60.054667ms + duration: 95.808801ms - id: 38 request: proto: HTTP/1.1 @@ -1906,8 +1614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -1915,31 +1623,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2088 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "available"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - afd3b297-39bf-4cee-b3f2-71930e27451d + - ccb9d56e-aadc-4c00-bc96-493cb304c55c status: 200 OK code: 200 - duration: 204.862709ms + duration: 148.284751ms - id: 39 request: proto: HTTP/1.1 @@ -1955,8 +1655,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -1966,29 +1666,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5eba7122-6392-40c0-b142-da2b06e19b34"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cece3862-6334-46cc-a118-edeb195baa0c + - 4a1c6654-c55d-432e-b4ff-c5de3d07623d status: 404 Not Found code: 404 - duration: 64.105209ms + duration: 27.866951ms - id: 40 request: proto: HTTP/1.1 @@ -2004,8 +1696,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -2015,29 +1707,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:19.620338Z","id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-10-22T07:59:19.620338Z","id":"203162c2-776a-456c-be12-5a3b368e03c2","product_resource_id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-22T07:59:19.620338Z","zone":"fr-par-1"}' + body: '{"id":"5eba7122-6392-40c0-b142-da2b06e19b34", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:03.171658Z", "updated_at":"2025-10-29T22:54:03.171658Z", "references":[{"id":"9fe1ec1a-2a14-4f5e-937b-3c3cc35b421b", "product_resource_type":"instance_server", "product_resource_id":"9d2958d2-ea2d-4722-96c6-afcc457083c8", "created_at":"2025-10-29T22:54:03.171658Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2a2452e7-f626-443c-acf5-eac0f76e964c + - 97c447bb-aa14-437d-8132-c6b9ccd6bae7 status: 200 OK code: 200 - duration: 85.305042ms + duration: 98.519099ms - id: 41 request: proto: HTTP/1.1 @@ -2053,8 +1737,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/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/9d2958d2-ea2d-4722-96c6-afcc457083c8/user_data method: GET response: proto: HTTP/2.0 @@ -2064,29 +1748,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1c5619b5-23d8-41fc-9334-d440b3221c59 + - d7740efa-3436-4e0e-ab7c-83073381364c status: 200 OK code: 200 - duration: 63.247709ms + duration: 105.168584ms - id: 42 request: proto: HTTP/1.1 @@ -2102,8 +1778,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/private_nics method: GET response: proto: HTTP/2.0 @@ -2113,33 +1789,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:15 GMT + - Wed, 29 Oct 2025 22:54:58 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 414e1285-52a4-4e75-b852-46e12fa00c05 + - 09cb91e0-00d0-4275-bb86-71252f99ca1f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 150.35775ms + duration: 104.993978ms - id: 43 request: proto: HTTP/1.1 @@ -2151,13 +1819,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"filesystem-instance-terraform-test-2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","size":100000000000,"tags":[]}' + body: '{"name":"filesystem-instance-terraform-test-2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","size":100000000000,"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; 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/file/v1alpha1/regions/fr-par/filesystems method: POST response: @@ -2168,29 +1836,21 @@ interactions: trailer: {} content_length: 390 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:15.386179Z","id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","name":"filesystem-instance-terraform-test-2","number_of_attachments":0,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"creating","tags":[],"updated_at":"2025-10-22T08:00:15.386179Z"}' + body: '{"id":"bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"creating", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":0, "region":"fr-par", "created_at":"2025-10-29T22:54:59.280388Z", "updated_at":"2025-10-29T22:54:59.280388Z"}' headers: Content-Length: - "390" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:15 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c6286773-dc37-48c1-9022-d8904e9f824f + - 5d317aae-520f-47b1-af6b-51a1de4b090e status: 200 OK code: 200 - duration: 167.430166ms + duration: 231.695038ms - id: 44 request: proto: HTTP/1.1 @@ -2206,8 +1866,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/979c38aa-9f60-4e8a-b4ed-b3ef94401eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 method: GET response: proto: HTTP/2.0 @@ -2217,29 +1877,21 @@ interactions: trailer: {} content_length: 390 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:15.386179Z","id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","name":"filesystem-instance-terraform-test-2","number_of_attachments":0,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"creating","tags":[],"updated_at":"2025-10-22T08:00:15.386179Z"}' + body: '{"id":"bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"creating", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":0, "region":"fr-par", "created_at":"2025-10-29T22:54:59.280388Z", "updated_at":"2025-10-29T22:54:59.280388Z"}' headers: Content-Length: - "390" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:15 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f682662a-7942-4108-bd01-8b9c944db95a + - 5b6676da-a678-4097-87f8-b9c83178f03b status: 200 OK code: 200 - duration: 46.160625ms + duration: 76.436465ms - id: 45 request: proto: HTTP/1.1 @@ -2255,8 +1907,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/979c38aa-9f60-4e8a-b4ed-b3ef94401eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 method: GET response: proto: HTTP/2.0 @@ -2266,29 +1918,21 @@ interactions: trailer: {} content_length: 391 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:15.386179Z","id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","name":"filesystem-instance-terraform-test-2","number_of_attachments":0,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T08:00:15.386179Z"}' + body: '{"id":"bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":0, "region":"fr-par", "created_at":"2025-10-29T22:54:59.280388Z", "updated_at":"2025-10-29T22:54:59.280388Z"}' headers: Content-Length: - "391" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5f5c359f-8c89-4f7f-ab8b-3120b27747f9 + - 13802f9a-49f9-4676-9fe9-af1640e71eaa status: 200 OK code: 200 - duration: 58.766417ms + duration: 92.489236ms - id: 46 request: proto: HTTP/1.1 @@ -2304,8 +1948,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/979c38aa-9f60-4e8a-b4ed-b3ef94401eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 method: GET response: proto: HTTP/2.0 @@ -2315,29 +1959,21 @@ interactions: trailer: {} content_length: 391 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:15.386179Z","id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","name":"filesystem-instance-terraform-test-2","number_of_attachments":0,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T08:00:15.386179Z"}' + body: '{"id":"bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":0, "region":"fr-par", "created_at":"2025-10-29T22:54:59.280388Z", "updated_at":"2025-10-29T22:54:59.280388Z"}' headers: Content-Length: - "391" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6a302016-fc59-4379-9ff1-9807c5c2bc5d + - e22c625b-fdc3-4776-a147-5f2716bb7525 status: 200 OK code: 200 - duration: 48.611791ms + duration: 85.328395ms - id: 47 request: proto: HTTP/1.1 @@ -2353,8 +1989,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -2362,31 +1998,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2120 + content_length: 2088 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":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "available"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2120" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8fc15f24-af9c-4c31-bffa-f814a307a837 + - 9b63e95f-0207-4d3f-a1c7-a619e4424954 status: 200 OK code: 200 - duration: 192.787875ms + duration: 144.103834ms - id: 48 request: proto: HTTP/1.1 @@ -2398,14 +2026,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e"}' + body: '{"filesystem_id":"0a96cd03-a93f-470c-920f-64481ad89fee"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/detach-filesystem + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/detach-filesystem method: POST response: proto: HTTP/2.0 @@ -2413,31 +2041,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"detaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "detaching"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:21 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8336ac7e-a35d-48c0-a26f-e90091733760 + - 2f5b20f4-2faa-4604-adce-b622c9f48985 status: 200 OK code: 200 - duration: 547.447833ms + duration: 483.777247ms - id: 49 request: proto: HTTP/1.1 @@ -2453,8 +2073,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -2462,31 +2082,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2088 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"detaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "detaching"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:21 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 64f9fdf1-2c5d-49dd-8809-712f35027407 + - 1ff0805f-65c3-40b0-b442-5aad92521216 status: 200 OK code: 200 - duration: 156.884792ms + duration: 152.308237ms - id: 50 request: proto: HTTP/1.1 @@ -2502,8 +2114,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -2511,31 +2123,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 2009 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2009" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a7e60bf2-4788-4853-a3d1-5e93316083ac + - 85894768-01c1-4e20-87ee-4d8546fd45e7 status: 200 OK code: 200 - duration: 185.774417ms + duration: 159.39414ms - id: 51 request: proto: HTTP/1.1 @@ -2547,14 +2151,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea"}' + body: '{"filesystem_id":"bc6eeccc-d15c-4db1-af6e-dbaed8e4c007"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/attach-filesystem + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/attach-filesystem method: POST response: proto: HTTP/2.0 @@ -2562,31 +2166,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2088 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"attaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "attaching"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 194af798-b299-4eaa-9a72-34519a0f8264 + - 486491bd-de74-46ba-bdf7-4909c80eb4e9 status: 200 OK code: 200 - duration: 541.080084ms + duration: 431.69577ms - id: 52 request: proto: HTTP/1.1 @@ -2602,8 +2198,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -2611,31 +2207,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"attaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "attaching"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 79a06a96-8f99-439c-9d55-32a48187e3ef + - 06aef663-9a6a-46b0-8fdf-ae94f409f714 status: 200 OK code: 200 - duration: 132.868333ms + duration: 129.14824ms - id: 53 request: proto: HTTP/1.1 @@ -2651,8 +2239,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -2660,31 +2248,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2088 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4489f4b3-3b97-4195-a466-30eb2f762233 + - 8afc5221-fa38-4b11-8b05-19323594463a status: 200 OK code: 200 - duration: 167.843ms + duration: 150.741792ms - id: 54 request: proto: HTTP/1.1 @@ -2700,8 +2280,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -2709,31 +2289,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2088 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 567622b1-42c0-4339-b7d4-b4b4d6b5a333 + - 9cfce93c-c25e-49fc-9874-49a1f76ed8da status: 200 OK code: 200 - duration: 116.273083ms + duration: 135.91762ms - id: 55 request: proto: HTTP/1.1 @@ -2749,8 +2321,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -2758,31 +2330,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 63cf8cb4-bde4-45ba-acf9-d2ac9437635b + - 05cff47e-c1b1-497d-8d0a-d43011d66b99 status: 200 OK code: 200 - duration: 105.261ms + duration: 137.874641ms - id: 56 request: proto: HTTP/1.1 @@ -2798,8 +2362,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -2809,29 +2373,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5eba7122-6392-40c0-b142-da2b06e19b34"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aadd7c91-d073-46fe-8df9-fc05db257ddb + - c71bfac4-ccf9-4458-9502-ec9e7dc7b2d5 status: 404 Not Found code: 404 - duration: 30.818459ms + duration: 35.176431ms - id: 57 request: proto: HTTP/1.1 @@ -2847,8 +2403,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -2858,29 +2414,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:19.620338Z","id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-10-22T07:59:19.620338Z","id":"203162c2-776a-456c-be12-5a3b368e03c2","product_resource_id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-22T07:59:19.620338Z","zone":"fr-par-1"}' + body: '{"id":"5eba7122-6392-40c0-b142-da2b06e19b34", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:03.171658Z", "updated_at":"2025-10-29T22:54:03.171658Z", "references":[{"id":"9fe1ec1a-2a14-4f5e-937b-3c3cc35b421b", "product_resource_type":"instance_server", "product_resource_id":"9d2958d2-ea2d-4722-96c6-afcc457083c8", "created_at":"2025-10-29T22:54:03.171658Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 63e5185d-a987-4e3c-a1b2-be48dfedb73e + - caf29c64-dc6a-4c34-8fa4-7111db36b2c8 status: 200 OK code: 200 - duration: 36.647125ms + duration: 89.09998ms - id: 58 request: proto: HTTP/1.1 @@ -2896,8 +2444,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/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/9d2958d2-ea2d-4722-96c6-afcc457083c8/user_data method: GET response: proto: HTTP/2.0 @@ -2907,29 +2455,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bf701716-0e37-4567-8cdb-42354d641d9d + - 550fa2ad-a6a8-4d0b-b815-1b689abc7495 status: 200 OK code: 200 - duration: 51.628167ms + duration: 88.90737ms - id: 59 request: proto: HTTP/1.1 @@ -2945,8 +2485,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/private_nics method: GET response: proto: HTTP/2.0 @@ -2956,33 +2496,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:33 GMT + - Wed, 29 Oct 2025 22:55:16 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 335aeaaf-0595-4874-897c-cb809b5ee95c + - e66426d4-90e5-4ca3-b8ea-53b6e5282649 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 61.139792ms + duration: 126.167037ms - id: 60 request: proto: HTTP/1.1 @@ -2998,8 +2530,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -3007,31 +2539,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2672c44f-ea9b-431c-bc98-8794736e00be + - 17ae8ba0-2ad4-4db8-afbc-6704eb05a073 status: 200 OK code: 200 - duration: 148.879125ms + duration: 163.714162ms - id: 61 request: proto: HTTP/1.1 @@ -3047,8 +2571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/979c38aa-9f60-4e8a-b4ed-b3ef94401eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 method: GET response: proto: HTTP/2.0 @@ -3058,29 +2582,21 @@ interactions: trailer: {} content_length: 391 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:15.386179Z","id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","name":"filesystem-instance-terraform-test-2","number_of_attachments":1,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T08:00:15.386179Z"}' + body: '{"id":"bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":1, "region":"fr-par", "created_at":"2025-10-29T22:54:59.280388Z", "updated_at":"2025-10-29T22:54:59.280388Z"}' headers: Content-Length: - "391" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 65097c9d-3c9b-4c9b-aa84-b3ee8f6c1e3b + - 47a28bb3-1269-49d9-b00d-85ff9cec2eaa status: 200 OK code: 200 - duration: 42.433333ms + duration: 86.409349ms - id: 62 request: proto: HTTP/1.1 @@ -3096,8 +2612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/51d15035-37e4-4756-8d45-7dfbe62efc2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee method: GET response: proto: HTTP/2.0 @@ -3107,29 +2623,21 @@ interactions: trailer: {} content_length: 389 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:13.913922Z","id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","name":"filesystem-instance-terraform-test","number_of_attachments":0,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T07:59:13.913922Z"}' + body: '{"id":"0a96cd03-a93f-470c-920f-64481ad89fee", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":0, "region":"fr-par", "created_at":"2025-10-29T22:53:57.017886Z", "updated_at":"2025-10-29T22:53:57.017886Z"}' headers: Content-Length: - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 358e041f-e79f-4169-b37b-aa8d06ebb85d + - 622a3c58-c263-4166-a54a-ff86a922009e status: 200 OK code: 200 - duration: 60.684958ms + duration: 88.026894ms - id: 63 request: proto: HTTP/1.1 @@ -3145,8 +2653,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -3154,31 +2662,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dfb41cf8-8367-4736-9d00-ca62c0cf8f38 + - 57a1ea45-f724-4beb-a16e-79ea2b72967f status: 200 OK code: 200 - duration: 86.090875ms + duration: 146.211081ms - id: 64 request: proto: HTTP/1.1 @@ -3194,8 +2694,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -3205,29 +2705,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5eba7122-6392-40c0-b142-da2b06e19b34"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 504ebfe8-15de-4027-88a3-0c1ede429b98 + - 63619289-a2cd-4d3a-bb8d-c25e1c7012f0 status: 404 Not Found code: 404 - duration: 32.335542ms + duration: 30.280626ms - id: 65 request: proto: HTTP/1.1 @@ -3243,8 +2735,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -3254,29 +2746,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:19.620338Z","id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-10-22T07:59:19.620338Z","id":"203162c2-776a-456c-be12-5a3b368e03c2","product_resource_id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-22T07:59:19.620338Z","zone":"fr-par-1"}' + body: '{"id":"5eba7122-6392-40c0-b142-da2b06e19b34", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:03.171658Z", "updated_at":"2025-10-29T22:54:03.171658Z", "references":[{"id":"9fe1ec1a-2a14-4f5e-937b-3c3cc35b421b", "product_resource_type":"instance_server", "product_resource_id":"9d2958d2-ea2d-4722-96c6-afcc457083c8", "created_at":"2025-10-29T22:54:03.171658Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 802658bc-d069-45a7-afe1-15ea79937cc3 + - 41fa3e11-060d-4aba-a9de-33bc1be56a3f status: 200 OK code: 200 - duration: 46.439833ms + duration: 77.345369ms - id: 66 request: proto: HTTP/1.1 @@ -3292,8 +2776,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/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/9d2958d2-ea2d-4722-96c6-afcc457083c8/user_data method: GET response: proto: HTTP/2.0 @@ -3303,29 +2787,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0eac7016-980e-432e-9892-76718506fdaa + - af817e05-ec26-41b4-ab1f-f1d335aa1f64 status: 200 OK code: 200 - duration: 54.216917ms + duration: 111.745789ms - id: 67 request: proto: HTTP/1.1 @@ -3341,8 +2817,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/private_nics method: GET response: proto: HTTP/2.0 @@ -3352,33 +2828,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:33 GMT + - Wed, 29 Oct 2025 22:55:18 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 46640963-7463-4057-9051-192f9f85b2d0 + - 35bb24cb-aeaf-411d-92d4-9153f356bcb0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 69.019ms + duration: 108.520477ms - id: 68 request: proto: HTTP/1.1 @@ -3394,8 +2862,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/979c38aa-9f60-4e8a-b4ed-b3ef94401eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee method: GET response: proto: HTTP/2.0 @@ -3403,31 +2871,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 391 + content_length: 389 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:15.386179Z","id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","name":"filesystem-instance-terraform-test-2","number_of_attachments":1,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T08:00:15.386179Z"}' + body: '{"id":"0a96cd03-a93f-470c-920f-64481ad89fee", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":0, "region":"fr-par", "created_at":"2025-10-29T22:53:57.017886Z", "updated_at":"2025-10-29T22:53:57.017886Z"}' headers: Content-Length: - - "391" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "389" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:34 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2ee9cea7-fe19-4d07-a456-460602afa9fa + - 9c7bd413-f5dd-4c69-a88d-bfa0e19c09fd status: 200 OK code: 200 - duration: 66.512125ms + duration: 76.461747ms - id: 69 request: proto: HTTP/1.1 @@ -3443,8 +2903,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/51d15035-37e4-4756-8d45-7dfbe62efc2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 method: GET response: proto: HTTP/2.0 @@ -3452,31 +2912,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 389 + content_length: 391 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:13.913922Z","id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","name":"filesystem-instance-terraform-test","number_of_attachments":0,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T07:59:13.913922Z"}' + body: '{"id":"bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":1, "region":"fr-par", "created_at":"2025-10-29T22:54:59.280388Z", "updated_at":"2025-10-29T22:54:59.280388Z"}' headers: Content-Length: - - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "391" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:34 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1459d713-3617-48ac-a398-6239061fa144 + - 6a3b27ac-e563-4d41-b787-f7a47429dc70 status: 200 OK code: 200 - duration: 67.479916ms + duration: 87.27117ms - id: 70 request: proto: HTTP/1.1 @@ -3492,8 +2944,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -3501,31 +2953,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2088 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:34 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f5b089ab-b026-49b8-a8dd-01fe08584a44 + - f751cc54-1419-4bbc-9c63-61c75918d633 status: 200 OK code: 200 - duration: 117.626834ms + duration: 123.169993ms - id: 71 request: proto: HTTP/1.1 @@ -3541,8 +2985,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -3552,29 +2996,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5eba7122-6392-40c0-b142-da2b06e19b34"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:34 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 07320b99-7f6a-412f-acfa-bdf7d6cd9ac4 + - 412e22b0-329c-48bc-8bf1-996d23df8b5c status: 404 Not Found code: 404 - duration: 38.175875ms + duration: 26.046518ms - id: 72 request: proto: HTTP/1.1 @@ -3590,8 +3026,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -3601,29 +3037,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:19.620338Z","id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-10-22T07:59:19.620338Z","id":"203162c2-776a-456c-be12-5a3b368e03c2","product_resource_id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-22T07:59:19.620338Z","zone":"fr-par-1"}' + body: '{"id":"5eba7122-6392-40c0-b142-da2b06e19b34", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:03.171658Z", "updated_at":"2025-10-29T22:54:03.171658Z", "references":[{"id":"9fe1ec1a-2a14-4f5e-937b-3c3cc35b421b", "product_resource_type":"instance_server", "product_resource_id":"9d2958d2-ea2d-4722-96c6-afcc457083c8", "created_at":"2025-10-29T22:54:03.171658Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:34 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1d5bee22-95bb-4b8a-852b-fd3c9942c528 + - 8cb2c798-e533-4083-ab2f-3efb84b6711d status: 200 OK code: 200 - duration: 43.517ms + duration: 113.294415ms - id: 73 request: proto: HTTP/1.1 @@ -3639,8 +3067,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/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/9d2958d2-ea2d-4722-96c6-afcc457083c8/user_data method: GET response: proto: HTTP/2.0 @@ -3650,29 +3078,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:34 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3857131b-3095-4dd8-81f0-fd5c4439dd1c + - 67508d9d-cd32-4a88-b038-c2bdc216ab29 status: 200 OK code: 200 - duration: 57.055ms + duration: 101.556074ms - id: 74 request: proto: HTTP/1.1 @@ -3688,8 +3108,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/private_nics method: GET response: proto: HTTP/2.0 @@ -3699,33 +3119,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:34 GMT + - Wed, 29 Oct 2025 22:55:18 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b46e91ea-7d2e-4114-ae08-8d58c3fbc088 + - ef7f6839-a9b3-4d13-b9fd-b18c4007ac85 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 77.866917ms + duration: 84.691868ms - id: 75 request: proto: HTTP/1.1 @@ -3741,8 +3153,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -3750,31 +3162,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2088 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:34 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 499d9030-b86b-4d73-acaf-b2ede8fed7cc + - 1c90ae2c-c8ba-4e9a-a382-6c1cfab9ad80 status: 200 OK code: 200 - duration: 109.614291ms + duration: 132.396758ms - id: 76 request: proto: HTTP/1.1 @@ -3786,14 +3190,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e"}' + body: '{"filesystem_id":"0a96cd03-a93f-470c-920f-64481ad89fee"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/attach-filesystem + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/attach-filesystem method: POST response: proto: HTTP/2.0 @@ -3801,31 +3205,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2115 + content_length: 2169 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"},{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"attaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}, {"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "attaching"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2115" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2169" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0ff0af0e-97b1-49d8-8fd1-d53208d4d118 + - 48cfbbfc-88c7-4a64-86a6-25b869a8a94d status: 200 OK code: 200 - duration: 333.470583ms + duration: 438.407522ms - id: 77 request: proto: HTTP/1.1 @@ -3841,8 +3237,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -3850,31 +3246,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2115 + content_length: 2169 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"},{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"attaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}, {"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "attaching"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2115" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2169" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9ee14968-68cf-4eb2-b30b-e800a87f4c61 + - b5ebb1cd-3025-419f-b99b-f47667bd1300 status: 200 OK code: 200 - duration: 94.913542ms + duration: 132.454857ms - id: 78 request: proto: HTTP/1.1 @@ -3890,8 +3278,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -3899,31 +3287,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2115 + content_length: 2123 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"},{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}, {"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "available"}], "end_of_service": false}}' headers: Content-Length: - - "2115" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2123" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f906ca2d-1e56-4fb0-8366-a57cdb7b4457 + - bd72ab47-f93f-452b-9fcb-4fe4c6993529 status: 200 OK code: 200 - duration: 130.477833ms + duration: 158.138969ms - id: 79 request: proto: HTTP/1.1 @@ -3939,8 +3319,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -3948,31 +3328,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2115 + content_length: 2169 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"},{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}, {"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "available"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2115" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2169" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9957f4da-08c8-46ae-8256-9201ef8159e1 + - 6823ce0b-8f5e-4129-811f-872bfbdb54b7 status: 200 OK code: 200 - duration: 148.459209ms + duration: 142.494643ms - id: 80 request: proto: HTTP/1.1 @@ -3988,8 +3360,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -3997,31 +3369,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2201 + content_length: 2123 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":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"},{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}, {"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "available"}], "end_of_service": false}}' headers: Content-Length: - - "2201" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2123" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d156042b-0c1d-43eb-822c-7549eb50d8a6 + - b57b416d-7c21-45b1-a805-3a51389018f2 status: 200 OK code: 200 - duration: 106.506333ms + duration: 147.489374ms - id: 81 request: proto: HTTP/1.1 @@ -4037,8 +3401,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -4048,29 +3412,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5eba7122-6392-40c0-b142-da2b06e19b34"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8bcdbfa0-6d44-4882-b26a-84fd193e44df + - 5afccd9d-5290-4069-90a7-853de01c83d2 status: 404 Not Found code: 404 - duration: 26.155583ms + duration: 31.316253ms - id: 82 request: proto: HTTP/1.1 @@ -4086,8 +3442,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -4097,29 +3453,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:19.620338Z","id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-10-22T07:59:19.620338Z","id":"203162c2-776a-456c-be12-5a3b368e03c2","product_resource_id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-22T07:59:19.620338Z","zone":"fr-par-1"}' + body: '{"id":"5eba7122-6392-40c0-b142-da2b06e19b34", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:03.171658Z", "updated_at":"2025-10-29T22:54:03.171658Z", "references":[{"id":"9fe1ec1a-2a14-4f5e-937b-3c3cc35b421b", "product_resource_type":"instance_server", "product_resource_id":"9d2958d2-ea2d-4722-96c6-afcc457083c8", "created_at":"2025-10-29T22:54:03.171658Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a3e86b67-e978-4252-ab07-6b1052b0ea93 + - 2f55a5aa-2fec-4420-b44e-f06d7aa4c895 status: 200 OK code: 200 - duration: 37.870916ms + duration: 94.835899ms - id: 83 request: proto: HTTP/1.1 @@ -4135,8 +3483,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/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/9d2958d2-ea2d-4722-96c6-afcc457083c8/user_data method: GET response: proto: HTTP/2.0 @@ -4146,29 +3494,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3c6efbaf-6368-4913-982c-e5f16fc7be96 + - ca5d2003-0e9b-4ce0-8334-c402c90d5e75 status: 200 OK code: 200 - duration: 55.424375ms + duration: 95.841359ms - id: 84 request: proto: HTTP/1.1 @@ -4184,8 +3524,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/private_nics method: GET response: proto: HTTP/2.0 @@ -4195,33 +3535,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:40 GMT + - Wed, 29 Oct 2025 22:55:25 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 365575f9-6b91-4001-8cad-02022f55877b + - 5014d049-2d16-49a3-a5dc-65cf89192cff X-Total-Count: - "0" status: 200 OK code: 200 - duration: 62.346667ms + duration: 97.502164ms - id: 85 request: proto: HTTP/1.1 @@ -4237,8 +3569,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -4246,31 +3578,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2115 + content_length: 2123 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"},{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}, {"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "available"}], "end_of_service": false}}' headers: Content-Length: - - "2115" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2123" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7dec3ca9-d939-410a-b088-d065444e607b + - 895e2172-055f-470a-a1b6-ef2b68f53c53 status: 200 OK code: 200 - duration: 134.64ms + duration: 140.730776ms - id: 86 request: proto: HTTP/1.1 @@ -4286,8 +3610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/51d15035-37e4-4756-8d45-7dfbe62efc2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee method: GET response: proto: HTTP/2.0 @@ -4297,29 +3621,21 @@ interactions: trailer: {} content_length: 389 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:13.913922Z","id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","name":"filesystem-instance-terraform-test","number_of_attachments":1,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T07:59:13.913922Z"}' + body: '{"id":"0a96cd03-a93f-470c-920f-64481ad89fee", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":1, "region":"fr-par", "created_at":"2025-10-29T22:53:57.017886Z", "updated_at":"2025-10-29T22:53:57.017886Z"}' headers: Content-Length: - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 40caea4f-3912-47a6-8366-d0ce775bedf1 + - 16e5ff04-b4c3-42c1-908a-20b16deba4e8 status: 200 OK code: 200 - duration: 36.672958ms + duration: 81.47358ms - id: 87 request: proto: HTTP/1.1 @@ -4335,8 +3651,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/979c38aa-9f60-4e8a-b4ed-b3ef94401eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 method: GET response: proto: HTTP/2.0 @@ -4346,29 +3662,21 @@ interactions: trailer: {} content_length: 391 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:15.386179Z","id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","name":"filesystem-instance-terraform-test-2","number_of_attachments":1,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T08:00:15.386179Z"}' + body: '{"id":"bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":1, "region":"fr-par", "created_at":"2025-10-29T22:54:59.280388Z", "updated_at":"2025-10-29T22:54:59.280388Z"}' headers: Content-Length: - "391" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8f2daaa8-3b1e-4326-9794-274d6aad3ca0 + - cfab53c9-4d69-4a62-8d60-ef0ecdcf39e7 status: 200 OK code: 200 - duration: 37.408208ms + duration: 88.164784ms - id: 88 request: proto: HTTP/1.1 @@ -4384,8 +3692,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -4393,31 +3701,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2115 + content_length: 2169 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"},{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}, {"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "available"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2115" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2169" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8ec16335-5131-466d-be0c-4af7344e01d1 + - b9f5cc29-02a7-4b03-b664-96e563a9bd1a status: 200 OK code: 200 - duration: 111.369375ms + duration: 143.030717ms - id: 89 request: proto: HTTP/1.1 @@ -4433,8 +3733,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -4444,29 +3744,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5eba7122-6392-40c0-b142-da2b06e19b34"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5f5e4844-dcea-4ac1-867e-6e54be262473 + - c0170292-459d-44c7-980c-c50f39a27ec3 status: 404 Not Found code: 404 - duration: 46.104459ms + duration: 41.840515ms - id: 90 request: proto: HTTP/1.1 @@ -4482,8 +3774,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -4493,29 +3785,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:19.620338Z","id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-10-22T07:59:19.620338Z","id":"203162c2-776a-456c-be12-5a3b368e03c2","product_resource_id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-22T07:59:19.620338Z","zone":"fr-par-1"}' + body: '{"id":"5eba7122-6392-40c0-b142-da2b06e19b34", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:03.171658Z", "updated_at":"2025-10-29T22:54:03.171658Z", "references":[{"id":"9fe1ec1a-2a14-4f5e-937b-3c3cc35b421b", "product_resource_type":"instance_server", "product_resource_id":"9d2958d2-ea2d-4722-96c6-afcc457083c8", "created_at":"2025-10-29T22:54:03.171658Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0e214d72-013d-4eff-ab9a-8d4e85c4b321 + - a6d27547-39cb-43ba-b97a-02eb7e616caf status: 200 OK code: 200 - duration: 46.6145ms + duration: 87.505791ms - id: 91 request: proto: HTTP/1.1 @@ -4531,8 +3815,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/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/9d2958d2-ea2d-4722-96c6-afcc457083c8/user_data method: GET response: proto: HTTP/2.0 @@ -4542,29 +3826,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1afce1a9-9522-4dff-a282-de75b46f5492 + - 458c7038-4e5d-47f0-a118-3b1f43fd9aa5 status: 200 OK code: 200 - duration: 59.7045ms + duration: 92.828745ms - id: 92 request: proto: HTTP/1.1 @@ -4580,8 +3856,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/private_nics method: GET response: proto: HTTP/2.0 @@ -4591,33 +3867,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:41 GMT + - Wed, 29 Oct 2025 22:55:26 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6e68f239-4d23-4638-8654-ac1bdde29dda + - a0235dea-92ec-4ee8-9ad0-53951ab3ac5e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 72.590875ms + duration: 102.672364ms - id: 93 request: proto: HTTP/1.1 @@ -4633,8 +3901,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/51d15035-37e4-4756-8d45-7dfbe62efc2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 method: GET response: proto: HTTP/2.0 @@ -4642,31 +3910,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 389 + content_length: 391 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:13.913922Z","id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","name":"filesystem-instance-terraform-test","number_of_attachments":1,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T07:59:13.913922Z"}' + body: '{"id":"bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":1, "region":"fr-par", "created_at":"2025-10-29T22:54:59.280388Z", "updated_at":"2025-10-29T22:54:59.280388Z"}' headers: Content-Length: - - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "391" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9f47bdc5-bec0-45b6-bd11-864b73f49dff + - 6e64d999-8862-4cda-a049-596b5dcb5b67 status: 200 OK code: 200 - duration: 39.893083ms + duration: 87.306107ms - id: 94 request: proto: HTTP/1.1 @@ -4682,8 +3942,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/979c38aa-9f60-4e8a-b4ed-b3ef94401eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee method: GET response: proto: HTTP/2.0 @@ -4691,31 +3951,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 391 + content_length: 389 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:15.386179Z","id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","name":"filesystem-instance-terraform-test-2","number_of_attachments":1,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T08:00:15.386179Z"}' + body: '{"id":"0a96cd03-a93f-470c-920f-64481ad89fee", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":1, "region":"fr-par", "created_at":"2025-10-29T22:53:57.017886Z", "updated_at":"2025-10-29T22:53:57.017886Z"}' headers: Content-Length: - - "391" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "389" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1bd6d4dd-e456-49fb-b864-6c303870413b + - 4333d782-4be9-434d-bb06-ecb68369f4d7 status: 200 OK code: 200 - duration: 53.8045ms + duration: 88.845226ms - id: 95 request: proto: HTTP/1.1 @@ -4731,8 +3983,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -4740,31 +3992,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2201 + content_length: 2123 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":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"},{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}, {"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "available"}], "end_of_service": false}}' headers: Content-Length: - - "2201" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2123" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7d45dd9a-248e-4287-8f21-f64ce4bb843f + - c73f827e-3a46-4145-9e86-16f8216d6cbc status: 200 OK code: 200 - duration: 106.356375ms + duration: 160.164788ms - id: 96 request: proto: HTTP/1.1 @@ -4780,8 +4024,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -4791,29 +4035,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5eba7122-6392-40c0-b142-da2b06e19b34"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 23392226-5921-4320-9e6c-9f9011ec6ef4 + - 84cc7423-b94d-41aa-8ef2-b25ebeca92cc status: 404 Not Found code: 404 - duration: 29.373541ms + duration: 26.787013ms - id: 97 request: proto: HTTP/1.1 @@ -4829,8 +4065,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -4840,29 +4076,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:19.620338Z","id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-10-22T07:59:19.620338Z","id":"203162c2-776a-456c-be12-5a3b368e03c2","product_resource_id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-22T07:59:19.620338Z","zone":"fr-par-1"}' + body: '{"id":"5eba7122-6392-40c0-b142-da2b06e19b34", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:03.171658Z", "updated_at":"2025-10-29T22:54:03.171658Z", "references":[{"id":"9fe1ec1a-2a14-4f5e-937b-3c3cc35b421b", "product_resource_type":"instance_server", "product_resource_id":"9d2958d2-ea2d-4722-96c6-afcc457083c8", "created_at":"2025-10-29T22:54:03.171658Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9f6205e0-794f-446b-8e11-24dc6d3e7aad + - 19d41ed5-7cf0-4ded-a963-d07b62d42a6e status: 200 OK code: 200 - duration: 55.080875ms + duration: 82.118407ms - id: 98 request: proto: HTTP/1.1 @@ -4878,8 +4106,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/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/9d2958d2-ea2d-4722-96c6-afcc457083c8/user_data method: GET response: proto: HTTP/2.0 @@ -4889,29 +4117,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c43616bc-e88e-4301-85f7-99ff5aed0d53 + - dac95002-b53b-4775-af24-066836ab0241 status: 200 OK code: 200 - duration: 49.799167ms + duration: 99.816814ms - id: 99 request: proto: HTTP/1.1 @@ -4927,8 +4147,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/private_nics method: GET response: proto: HTTP/2.0 @@ -4938,133 +4158,109 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:42 GMT + - Wed, 29 Oct 2025 22:55:27 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3da658c8-368f-413d-adb7-9cfaff4af1ff + - 8d07c6b3-9694-48c4-ba9e-ef0c516fbc92 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 65.180708ms + duration: 85.979517ms - id: 100 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-lucid-almeida","perf_iops":15000,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","from_empty":{"size":15000000000},"tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; 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/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 2123 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:42.300152Z","id":"904cd6a7-1d6b-45a6-be18-f8d0a5b4ec7d","last_detached_at":null,"name":"tf-volume-lucid-almeida","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-10-22T08:00:42.300152Z","zone":"fr-par-1"}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}, {"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "available"}], "end_of_service": false}}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2123" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d15e20f1-aace-4a9a-afb3-412656b602f4 + - ac1a9314-3730-4ef8-bbad-0be689b5a866 status: 200 OK code: 200 - duration: 137.341834ms + duration: 137.830122ms - id: 101 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-thirsty-payne","perf_iops":15000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":15000000000},"tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 - 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: 2115 + 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":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"},{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"id":"07aba417-4f8d-409d-af5b-0840f29f2c24", "name":"tf-volume-thirsty-payne", "type":"sbs_15k", "size":15000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.479560Z", "updated_at":"2025-10-29T22:55:27.479560Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "2115" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "422" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 95009c85-5ae6-4958-8ec6-fe2315e0bbb2 + - 0e719b25-2d10-470f-b4b8-33bbb766813e status: 200 OK code: 200 - duration: 138.632208ms + duration: 273.65392ms - id: 102 request: proto: HTTP/1.1 @@ -5080,8 +4276,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/904cd6a7-1d6b-45a6-be18-f8d0a5b4ec7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/07aba417-4f8d-409d-af5b-0840f29f2c24 method: GET response: proto: HTTP/2.0 @@ -5089,131 +4285,107 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 423 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:42.300152Z","id":"904cd6a7-1d6b-45a6-be18-f8d0a5b4ec7d","last_detached_at":null,"name":"tf-volume-lucid-almeida","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-10-22T08:00:42.300152Z","zone":"fr-par-1"}' + body: '{"id":"07aba417-4f8d-409d-af5b-0840f29f2c24", "name":"tf-volume-thirsty-payne", "type":"sbs_15k", "size":15000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.479560Z", "updated_at":"2025-10-29T22:55:27.479560Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e10adb78-5d1b-4ff7-9f8b-3318d0009563 + - 3ad94198-3ce1-4e8d-9c23-0cc42de02ef5 status: 200 OK code: 200 - duration: 62.3915ms + duration: 90.922892ms - id: 103 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: '{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/detach-filesystem - 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/07aba417-4f8d-409d-af5b-0840f29f2c24 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2115 + 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":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"},{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"detaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"id":"07aba417-4f8d-409d-af5b-0840f29f2c24", "name":"tf-volume-thirsty-payne", "type":"sbs_15k", "size":15000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.479560Z", "updated_at":"2025-10-29T22:55:27.479560Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "2115" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dda3091a-c207-4384-a2e2-8a38c8af0056 + - 77f6bd12-e002-4a42-bc7b-ae2ad489e4e8 status: 200 OK code: 200 - duration: 581.819917ms + duration: 74.62296ms - id: 104 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: '{"filesystem_id":"0a96cd03-a93f-470c-920f-64481ad89fee"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8/detach-filesystem + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2115 + content_length: 2123 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"},{"filesystem_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","state":"detaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}, {"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "detaching"}], "end_of_service": false}}' headers: Content-Length: - - "2115" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2123" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45f7770e-5c35-4fac-99fd-49b0eb1785c9 + - dbd783c6-52a5-44e4-a7ad-ace3c1ae8be4 status: 200 OK code: 200 - duration: 95.889708ms + duration: 376.648928ms - id: 105 request: proto: HTTP/1.1 @@ -5229,8 +4401,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/904cd6a7-1d6b-45a6-be18-f8d0a5b4ec7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -5238,31 +4410,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2123 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:42.300152Z","id":"904cd6a7-1d6b-45a6-be18-f8d0a5b4ec7d","last_detached_at":null,"name":"tf-volume-lucid-almeida","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-22T08:00:42.300152Z","zone":"fr-par-1"}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}, {"filesystem_id": "0a96cd03-a93f-470c-920f-64481ad89fee", "state": "detaching"}], "end_of_service": false}}' headers: Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2123" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:47 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8c65f81a-2863-4d1c-a491-6fa3889045bf + - ecf2579c-f82e-44c6-972c-abaa5a260b01 status: 200 OK code: 200 - duration: 66.3445ms + duration: 147.050284ms - id: 106 request: proto: HTTP/1.1 @@ -5278,8 +4442,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/904cd6a7-1d6b-45a6-be18-f8d0a5b4ec7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -5287,31 +4451,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2042 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:42.300152Z","id":"904cd6a7-1d6b-45a6-be18-f8d0a5b4ec7d","last_detached_at":null,"name":"tf-volume-lucid-almeida","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-22T08:00:42.300152Z","zone":"fr-par-1"}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}], "end_of_service": false}}' headers: Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:47 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 04117223-054f-4521-98e9-8fd77f591025 + - 42292bea-582a-429c-85ff-715582a301b4 status: 200 OK code: 200 - duration: 57.169291ms + duration: 135.524462ms - id: 107 request: proto: HTTP/1.1 @@ -5327,8 +4483,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -5336,31 +4492,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:48 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f295611e-e966-4760-83f7-9fbf13c999d6 + - dfcdbcbf-081b-4adb-b192-8f8c5e03dc90 status: 200 OK code: 200 - duration: 120.110625ms + duration: 149.097454ms - id: 108 request: proto: HTTP/1.1 @@ -5376,8 +4524,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -5385,31 +4533,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:48 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - edf6990a-327b-468d-989a-d651c647f94e + - c630ae9c-5803-4976-ba2d-186746e2b361 status: 200 OK code: 200 - duration: 107.202958ms + duration: 157.105279ms - id: 109 request: proto: HTTP/1.1 @@ -5425,57 +4565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2034 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Oct 2025 08:00: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: - - 78037a09-2500-40d2-9d95-9987232de66f - status: 200 OK - code: 200 - duration: 102.600416ms - - 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.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -5485,30 +4576,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5eba7122-6392-40c0-b142-da2b06e19b34"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:48 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 42b9f634-0c3f-41fe-a871-dbb3cdbe0ca6 + - 69b94ea6-83bc-4c32-8cc8-bb67674233f2 status: 404 Not Found code: 404 - duration: 41.607084ms - - id: 111 + duration: 28.925192ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5523,8 +4606,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -5534,30 +4617,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:19.620338Z","id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-10-22T07:59:19.620338Z","id":"203162c2-776a-456c-be12-5a3b368e03c2","product_resource_id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-22T07:59:19.620338Z","zone":"fr-par-1"}' + body: '{"id":"5eba7122-6392-40c0-b142-da2b06e19b34", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:03.171658Z", "updated_at":"2025-10-29T22:54:03.171658Z", "references":[{"id":"9fe1ec1a-2a14-4f5e-937b-3c3cc35b421b", "product_resource_type":"instance_server", "product_resource_id":"9d2958d2-ea2d-4722-96c6-afcc457083c8", "created_at":"2025-10-29T22:54:03.171658Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:48 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1dc8eaa0-a9ce-407d-80ab-8c95e47036d9 + - ec382fec-23c0-40f5-b54b-9a5cca962d5f status: 200 OK code: 200 - duration: 44.720458ms - - id: 112 + duration: 85.810543ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5572,8 +4647,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/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/9d2958d2-ea2d-4722-96c6-afcc457083c8/user_data method: GET response: proto: HTTP/2.0 @@ -5583,30 +4658,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:48 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 72118a2a-b7a8-48a6-bbff-3fe69a7bd7dd + - 5b993920-ffeb-4da6-9666-79de4ac8244f status: 200 OK code: 200 - duration: 56.212708ms - - id: 113 + duration: 83.270242ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5621,8 +4688,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/private_nics method: GET response: proto: HTTP/2.0 @@ -5632,34 +4699,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:48 GMT + - Wed, 29 Oct 2025 22:55:33 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 463b942f-e5e0-45d1-b79c-5452aeb6cd21 + - c1202cfe-08fe-4ce6-84dc-39dd01da6e45 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 65.331292ms - - id: 114 + duration: 101.015537ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5674,8 +4733,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -5683,32 +4742,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:48 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0b392354-8fe7-4d0b-90a3-ab91fc4338de + - b2e64fe5-66d9-4d08-a0af-11b3fd243fb1 status: 200 OK code: 200 - duration: 88.675792ms - - id: 115 + duration: 143.235252ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -5723,8 +4774,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/51d15035-37e4-4756-8d45-7dfbe62efc2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 method: GET response: proto: HTTP/2.0 @@ -5732,32 +4783,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 389 + content_length: 391 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:13.913922Z","id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","name":"filesystem-instance-terraform-test","number_of_attachments":0,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T07:59:13.913922Z"}' + body: '{"id":"bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":1, "region":"fr-par", "created_at":"2025-10-29T22:54:59.280388Z", "updated_at":"2025-10-29T22:54:59.280388Z"}' headers: Content-Length: - - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "391" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d9d1f56f-8af9-40bc-a3e4-2287f1a7e1a5 + - e9f2d4dc-e45f-4b71-802c-587299724732 status: 200 OK code: 200 - duration: 41.876125ms - - id: 116 + duration: 80.650102ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5772,8 +4815,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/904cd6a7-1d6b-45a6-be18-f8d0a5b4ec7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee method: GET response: proto: HTTP/2.0 @@ -5781,32 +4824,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 389 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:42.300152Z","id":"904cd6a7-1d6b-45a6-be18-f8d0a5b4ec7d","last_detached_at":null,"name":"tf-volume-lucid-almeida","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-22T08:00:42.300152Z","zone":"fr-par-1"}' + body: '{"id":"0a96cd03-a93f-470c-920f-64481ad89fee", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":0, "region":"fr-par", "created_at":"2025-10-29T22:53:57.017886Z", "updated_at":"2025-10-29T22:53:57.017886Z"}' headers: Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "389" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b69472c3-6058-4498-aef8-093eb00a3749 + - 5211f932-f531-4e0e-833f-a79b536815b0 status: 200 OK code: 200 - duration: 53.668542ms - - id: 117 + duration: 80.971353ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -5821,8 +4856,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/979c38aa-9f60-4e8a-b4ed-b3ef94401eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/07aba417-4f8d-409d-af5b-0840f29f2c24 method: GET response: proto: HTTP/2.0 @@ -5830,32 +4865,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 391 + content_length: 423 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:15.386179Z","id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","name":"filesystem-instance-terraform-test-2","number_of_attachments":1,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T08:00:15.386179Z"}' + body: '{"id":"07aba417-4f8d-409d-af5b-0840f29f2c24", "name":"tf-volume-thirsty-payne", "type":"sbs_15k", "size":15000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.479560Z", "updated_at":"2025-10-29T22:55:27.479560Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "391" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2290f640-b437-455e-858d-71b5298540d2 + - 3101b968-a057-4183-b1cf-79846a4da5c9 status: 200 OK code: 200 - duration: 61.327459ms - - id: 118 + duration: 82.459185ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -5870,8 +4897,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -5879,32 +4906,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2088 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"available"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "available"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 623b5a31-fa50-4559-a438-91b70a93ab96 + - 7d50f749-70d6-4e6e-8285-cc17ec42afef status: 200 OK code: 200 - duration: 116.255167ms - - id: 119 + duration: 168.833713ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -5919,8 +4938,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -5930,30 +4949,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5eba7122-6392-40c0-b142-da2b06e19b34"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bd940d03-8a2d-4e80-bb4b-f4ea36838ed8 + - 4db74ad9-60c7-4631-8b80-db0c975ddd1a status: 404 Not Found code: 404 - duration: 33.485375ms - - id: 120 + duration: 33.0148ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -5968,8 +4979,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -5979,30 +4990,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:19.620338Z","id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-10-22T07:59:19.620338Z","id":"203162c2-776a-456c-be12-5a3b368e03c2","product_resource_id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-22T07:59:19.620338Z","zone":"fr-par-1"}' + body: '{"id":"5eba7122-6392-40c0-b142-da2b06e19b34", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:03.171658Z", "updated_at":"2025-10-29T22:54:03.171658Z", "references":[{"id":"9fe1ec1a-2a14-4f5e-937b-3c3cc35b421b", "product_resource_type":"instance_server", "product_resource_id":"9d2958d2-ea2d-4722-96c6-afcc457083c8", "created_at":"2025-10-29T22:54:03.171658Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4d0732e9-aeba-44da-8e62-39f628f65c61 + - 2f758002-1f0f-46f8-bc8f-0cde79656744 status: 200 OK code: 200 - duration: 44.637542ms - - id: 121 + duration: 92.110985ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -6017,8 +5020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/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/9d2958d2-ea2d-4722-96c6-afcc457083c8/user_data method: GET response: proto: HTTP/2.0 @@ -6028,30 +5031,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + body: '{"user_data": []}' headers: Content-Length: - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2be6da77-cf9d-4cc2-8131-85bed7dbb96b + - 7e1e8766-3963-43bc-989d-eee2f21e01d8 status: 200 OK code: 200 - duration: 47.40575ms - - id: 122 + duration: 128.58804ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -6066,8 +5061,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/private_nics method: GET response: proto: HTTP/2.0 @@ -6077,34 +5072,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nics": []}' headers: Content-Length: - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:49 GMT + - Wed, 29 Oct 2025 22:55:34 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1a41dd39-0d93-463d-9b61-0471c0a4f611 + - 02977682-ddf1-41c9-ade6-f68266152379 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.431375ms - - id: 123 + duration: 112.2093ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -6119,8 +5106,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/51d15035-37e4-4756-8d45-7dfbe62efc2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/07aba417-4f8d-409d-af5b-0840f29f2c24 method: GET response: proto: HTTP/2.0 @@ -6128,32 +5115,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 389 + content_length: 423 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:13.913922Z","id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","name":"filesystem-instance-terraform-test","number_of_attachments":0,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T07:59:13.913922Z"}' + body: '{"id":"07aba417-4f8d-409d-af5b-0840f29f2c24", "name":"tf-volume-thirsty-payne", "type":"sbs_15k", "size":15000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.479560Z", "updated_at":"2025-10-29T22:55:27.479560Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45f74ee4-a858-49a8-b9fa-49a841515ee6 + - b563881a-7ebd-4c9f-9127-544bf19ed309 status: 200 OK code: 200 - duration: 36.557916ms - - id: 124 + duration: 73.286352ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -6168,8 +5147,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/904cd6a7-1d6b-45a6-be18-f8d0a5b4ec7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee method: GET response: proto: HTTP/2.0 @@ -6177,32 +5156,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 389 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:42.300152Z","id":"904cd6a7-1d6b-45a6-be18-f8d0a5b4ec7d","last_detached_at":null,"name":"tf-volume-lucid-almeida","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-22T08:00:42.300152Z","zone":"fr-par-1"}' + body: '{"id":"0a96cd03-a93f-470c-920f-64481ad89fee", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":0, "region":"fr-par", "created_at":"2025-10-29T22:53:57.017886Z", "updated_at":"2025-10-29T22:53:57.017886Z"}' headers: Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "389" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 52e64c9f-c206-4eb8-a69c-df4cbce2196a + - 38667d88-26cc-499e-856f-07f3df291558 status: 200 OK code: 200 - duration: 49.980542ms - - id: 125 + duration: 110.896827ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -6217,8 +5188,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/51d15035-37e4-4756-8d45-7dfbe62efc2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee method: DELETE response: proto: HTTP/2.0 @@ -6230,26 +5201,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c69ab101-feef-4fe2-9f16-23f1038987ad + - ba022ee1-b9ee-4f94-808e-a009440074bc status: 204 No Content code: 204 - duration: 87.843083ms - - id: 126 + duration: 91.356795ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -6264,8 +5227,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/904cd6a7-1d6b-45a6-be18-f8d0a5b4ec7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/07aba417-4f8d-409d-af5b-0840f29f2c24 method: DELETE response: proto: HTTP/2.0 @@ -6277,26 +5240,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 92eda46f-a2c3-45ec-924d-d8f84f954667 + - b66bdce6-a8de-45e8-aa5e-d16de5cdc937 status: 204 No Content code: 204 - duration: 79.505167ms - - id: 127 + duration: 171.427554ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -6311,8 +5266,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/51d15035-37e4-4756-8d45-7dfbe62efc2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee method: GET response: proto: HTTP/2.0 @@ -6322,30 +5277,22 @@ interactions: trailer: {} content_length: 131 uncompressed: false - body: '{"message":"resource is not found","resource":"filesystem","resource_id":"51d15035-37e4-4756-8d45-7dfbe62efc2e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"filesystem","resource_id":"0a96cd03-a93f-470c-920f-64481ad89fee","type":"not_found"}' headers: Content-Length: - "131" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 240a1bdb-6599-470e-9a84-cda4265c5c3c + - 20adaa52-b5b1-44fe-bf8c-60ab494e7dc5 status: 404 Not Found code: 404 - duration: 37.862542ms - - id: 128 + duration: 106.328673ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -6360,8 +5307,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/904cd6a7-1d6b-45a6-be18-f8d0a5b4ec7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/07aba417-4f8d-409d-af5b-0840f29f2c24 method: GET response: proto: HTTP/2.0 @@ -6371,30 +5318,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"904cd6a7-1d6b-45a6-be18-f8d0a5b4ec7d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"07aba417-4f8d-409d-af5b-0840f29f2c24","type":"not_found"}' headers: Content-Length: - "127" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 193fd123-5e1a-4ce4-ad06-2e8eb4c971ed + - 9170d18c-d1fd-488c-8be2-71093049974d status: 404 Not Found code: 404 - duration: 35.903958ms - - id: 129 + duration: 103.072645ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -6405,14 +5344,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea"}' + body: '{"filesystem_id":"bc6eeccc-d15c-4db1-af6e-dbaed8e4c007"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/detach-filesystem + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/detach-filesystem method: POST response: proto: HTTP/2.0 @@ -6420,32 +5359,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2088 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"detaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "detaching"}], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2088" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:50 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d463f44d-7db8-433a-840b-f3b13447ae09 + - c42ab9bf-89b2-47e4-9df9-b34db7dc6267 status: 200 OK code: 200 - duration: 668.252958ms - - id: 130 + duration: 385.913822ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -6460,8 +5391,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -6469,32 +5400,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2034 + content_length: 2042 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[{"filesystem_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","state":"detaching"}],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "state": "detaching"}], "end_of_service": false}}' headers: Content-Length: - - "2034" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2042" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:50 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 16b4d30d-3f6d-4b55-b02f-8da1c36c5186 + - b8247844-09b2-407d-a768-a7765f2c670d status: 200 OK code: 200 - duration: 98.270917ms - - id: 131 + duration: 143.050427ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -6509,8 +5432,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -6518,32 +5441,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 2009 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2009" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:55 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ca2aeff6-f92a-4b27-8863-879446f27123 + - da1fc492-1526-41bd-bfa1-981d28402ff4 status: 200 OK code: 200 - duration: 108.828875ms - - id: 132 + duration: 172.256395ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -6558,8 +5473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -6567,32 +5482,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2041 + content_length: 1963 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":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2041" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1963" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:55 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0329def6-fdf9-433b-b1f3-1d213bb5d178 + - 7d5b4800-8f44-40dc-a8ca-7ed3f91de34c status: 200 OK code: 200 - duration: 206.110417ms - - id: 133 + duration: 140.102937ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -6607,8 +5514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -6616,32 +5523,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 1963 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T07:59:23.156964+00:00","name":"tf-srv-loving-hugle","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":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:54:06.531054+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1963" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:55 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bd01804a-2cf0-4587-9989-c0c0f830f99b + - a1df125f-69d0-4634-b2fd-b3e7d8f68b5d status: 200 OK code: 200 - duration: 159.803583ms - - id: 134 + duration: 141.761377ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -6658,8 +5557,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/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/9d2958d2-ea2d-4722-96c6-afcc457083c8/action method: POST response: proto: HTTP/2.0 @@ -6669,32 +5568,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058/action","href_result":"/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058","id":"7ceeb030-25ac-40eb-ae5d-b2fec1cc3250","progress":0,"started_at":"2025-10-22T08:00:56.058617+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task": {"id": "0d50a38e-1133-4edf-b344-ee23a5554e12", "description": "server_terminate", "status": "pending", "href_from": "/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/action", "href_result": "/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8", "started_at": "2025-10-29T22:55:41.382045+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "353" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:56 GMT + - Wed, 29 Oct 2025 22:55:41 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7ceeb030-25ac-40eb-ae5d-b2fec1cc3250 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0d50a38e-1133-4edf-b344-ee23a5554e12 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bcabe5e4-8144-4a7d-a7b5-e6f18cea893c + - 6aedbca2-f78c-4a7e-8e5e-3d5c24bb7515 status: 202 Accepted code: 202 - duration: 283.741625ms - - id: 135 + duration: 273.558843ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -6709,8 +5600,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -6718,32 +5609,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1918 + content_length: 1926 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T08:00:55.854966+00:00","name":"tf-srv-loving-hugle","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":"terminating","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:55:41.163973+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1918" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1926" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:00:56 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6c2a9b7f-4ca1-4ca5-8f0b-3b181c4efa70 + - de1b8520-bd88-42a9-ac15-11fce36326bc status: 200 OK code: 200 - duration: 107.830958ms - - id: 136 + duration: 143.151658ms + - id: 135 request: proto: HTTP/1.1 proto_major: 1 @@ -6758,8 +5641,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -6767,32 +5650,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1918 + content_length: 1926 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T08:00:55.854966+00:00","name":"tf-srv-loving-hugle","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":"terminating","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:55:41.163973+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1918" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1926" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:01:01 GMT + - Wed, 29 Oct 2025 22:55:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 76177708-9c75-450c-89da-5e77b02f8803 + - 2680c7ed-1ce2-4140-99c5-7690c7bbb7b3 status: 200 OK code: 200 - duration: 185.185542ms - - id: 137 + duration: 162.143797ms + - id: 136 request: proto: HTTP/1.1 proto_major: 1 @@ -6807,8 +5682,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -6816,32 +5691,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1918 + content_length: 1926 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-HM-2C-16G","creation_date":"2025-10-22T07:59:19.531821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-loving-hugle","id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"65","hypervisor_id":"501","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ce:dd:33","maintenances":[],"modification_date":"2025-10-22T08:00:55.854966+00:00","name":"tf-srv-loving-hugle","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":"terminating","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "9d2958d2-ea2d-4722-96c6-afcc457083c8", "name": "tf-srv-naughty-thompson", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-naughty-thompson", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5eba7122-6392-40c0-b142-da2b06e19b34", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:77", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.039865+00:00", "modification_date": "2025-10-29T22:55:41.163973+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "66", "hypervisor_id": "201", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1918" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1926" Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:01:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c35198cc-a6bb-4984-8df4-77a93a950e4d + - f2d1e56a-0689-43f9-ac5c-5f951cca3d01 status: 200 OK code: 200 - duration: 93.448459ms - - id: 138 + duration: 169.583732ms + - id: 137 request: proto: HTTP/1.1 proto_major: 1 @@ -6856,8 +5723,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -6867,30 +5734,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "9d2958d2-ea2d-4722-96c6-afcc457083c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:01:11 GMT + - Wed, 29 Oct 2025 22:55:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 373d192b-11fe-4466-b12c-719a2a7dd2eb + - 7f164693-6c7b-4513-b0ab-784721d879c0 status: 404 Not Found code: 404 - duration: 49.922667ms - - id: 139 + duration: 50.016267ms + - id: 138 request: proto: HTTP/1.1 proto_major: 1 @@ -6905,8 +5764,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -6916,30 +5775,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5eba7122-6392-40c0-b142-da2b06e19b34"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:01:11 GMT + - Wed, 29 Oct 2025 22:55:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3a1985f9-7921-48d9-a507-0016382482e2 + - 43d5f56d-8f19-49f5-89c5-f50a199133e5 status: 404 Not Found code: 404 - duration: 27.740834ms - - id: 140 + duration: 33.084763ms + - id: 139 request: proto: HTTP/1.1 proto_major: 1 @@ -6954,8 +5805,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: GET response: proto: HTTP/2.0 @@ -6965,30 +5816,22 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-10-22T07:59:19.620338Z","id":"fb083d22-06d6-4d7f-9e1e-1ba053301a6d","last_detached_at":"2025-10-22T08:01:07.226720Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-22T08:01:07.226720Z","zone":"fr-par-1"}' + body: '{"id":"5eba7122-6392-40c0-b142-da2b06e19b34", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:03.171658Z", "updated_at":"2025-10-29T22:55:52.730016Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:52.730016Z", "zone":"fr-par-1"}' headers: Content-Length: - "498" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:01:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ea0a1dfb-cf7d-49cf-81b8-69fe9d78037e + - 8479fb6c-805e-48f5-8085-ce3f7744774b status: 200 OK code: 200 - duration: 41.848417ms - - id: 141 + duration: 80.80674ms + - id: 140 request: proto: HTTP/1.1 proto_major: 1 @@ -7003,8 +5846,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb083d22-06d6-4d7f-9e1e-1ba053301a6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 method: DELETE response: proto: HTTP/2.0 @@ -7016,26 +5859,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:01:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f257dba4-9290-4941-8d43-df977bd78dc3 + - 345023d5-5af8-4218-8358-7c5207b0f729 status: 204 No Content code: 204 - duration: 70.978834ms - - id: 142 + duration: 155.285635ms + - id: 141 request: proto: HTTP/1.1 proto_major: 1 @@ -7050,8 +5885,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/979c38aa-9f60-4e8a-b4ed-b3ef94401eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 method: GET response: proto: HTTP/2.0 @@ -7061,30 +5896,22 @@ interactions: trailer: {} content_length: 391 uncompressed: false - body: '{"created_at":"2025-10-22T08:00:15.386179Z","id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","name":"filesystem-instance-terraform-test-2","number_of_attachments":0,"organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","region":"fr-par","size":100000000000,"status":"available","tags":[],"updated_at":"2025-10-22T08:00:15.386179Z"}' + body: '{"id":"bc6eeccc-d15c-4db1-af6e-dbaed8e4c007", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "tags":[], "number_of_attachments":0, "region":"fr-par", "created_at":"2025-10-29T22:54:59.280388Z", "updated_at":"2025-10-29T22:54:59.280388Z"}' headers: Content-Length: - "391" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:01:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 64ebb967-e56c-40a0-801d-fd0ee88dbfe8 + - 2910b0d9-9e7b-4531-b917-0bc0fe578b9e status: 200 OK code: 200 - duration: 40.818916ms - - id: 143 + duration: 92.940342ms + - id: 142 request: proto: HTTP/1.1 proto_major: 1 @@ -7099,8 +5926,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/979c38aa-9f60-4e8a-b4ed-b3ef94401eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 method: DELETE response: proto: HTTP/2.0 @@ -7112,26 +5939,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:01:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a599feb9-d0c7-4682-a340-0d883b35a8b6 + - bf7c16a3-d80e-4723-8086-2b88fe40bd92 status: 204 No Content code: 204 - duration: 99.774792ms - - id: 144 + duration: 137.76487ms + - id: 143 request: proto: HTTP/1.1 proto_major: 1 @@ -7146,8 +5965,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/979c38aa-9f60-4e8a-b4ed-b3ef94401eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 method: GET response: proto: HTTP/2.0 @@ -7157,30 +5976,22 @@ interactions: trailer: {} content_length: 131 uncompressed: false - body: '{"message":"resource is not found","resource":"filesystem","resource_id":"979c38aa-9f60-4e8a-b4ed-b3ef94401eea","type":"not_found"}' + body: '{"message":"resource is not found","resource":"filesystem","resource_id":"bc6eeccc-d15c-4db1-af6e-dbaed8e4c007","type":"not_found"}' headers: Content-Length: - "131" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:01:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ec35fa80-ae47-4540-a3f4-f0f94ac43a07 + - 8912c1c7-ecbd-48e5-bc62-35e67a66564b status: 404 Not Found code: 404 - duration: 49.527833ms - - id: 145 + duration: 79.665826ms + - id: 144 request: proto: HTTP/1.1 proto_major: 1 @@ -7195,8 +6006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/61bf8b27-37c2-41b0-a35b-dc49784c0058 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 method: GET response: proto: HTTP/2.0 @@ -7206,26 +6017,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"61bf8b27-37c2-41b0-a35b-dc49784c0058","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "9d2958d2-ea2d-4722-96c6-afcc457083c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Oct 2025 08:01:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f44d10c2-7332-4a55-af17-1828288fa415 + - f604be47-914e-48fe-a462-e7e26beb9222 status: 404 Not Found code: 404 - duration: 51.863583ms + duration: 49.695898ms diff --git a/internal/services/instance/testdata/server-basic.cassette.yaml b/internal/services/instance/testdata/server-basic.cassette.yaml index f041519b2..3cd503e3f 100644 --- a/internal/services/instance/testdata/server-basic.cassette.yaml +++ b/internal/services/instance/testdata/server-basic.cassette.yaml @@ -13,7 +13,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -27,29 +35,21 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:30 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 81755022-868b-4e48-9fee-5051793950f6 + - e6fae2c2-4000-4444-beb3-9db1d00eaf0e status: 200 OK code: 200 - duration: 57.295852ms + duration: 122.157605ms - id: 1 request: proto: HTTP/1.1 @@ -62,7 +62,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -74,35 +76,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:30 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eabdfc34-f443-4748-bb47-acca82d683fe + - 29d3e82e-e525-4f88-8f25-4e08f6543448 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 42.919852ms + duration: 40.747678ms - id: 2 request: proto: HTTP/1.1 @@ -115,7 +109,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -129,33 +125,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:30 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 59a94da8-8341-4270-8601-e76e60f8bdc4 + - 078a500f-9202-4c8b-a92d-ae15cf60d473 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 48.703905ms + duration: 39.938816ms - id: 3 request: proto: HTTP/1.1 @@ -182,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2159 + content_length: 2245 uncompressed: false - 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"}}' + body: '{"server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "2159" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2245" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:31 GMT + - Wed, 29 Oct 2025 22:53:38 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 962b17cf-e441-4040-9d9a-bf22fc1d4a83 + - 27ddb5c5-26f8-4c4b-83de-31f08831f61d status: 201 Created code: 201 - duration: 782.528159ms + duration: 884.971655ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2159 + content_length: 2205 uncompressed: false - 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"}}' + body: '{"server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2159" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2205" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:31 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6946a552-b708-4c09-a355-b7ee9d9a66ae + - cb264ea7-d009-4705-934a-dad9fe203fbb status: 200 OK code: 200 - duration: 123.054591ms + duration: 143.380167ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 method: GET response: proto: HTTP/2.0 @@ -284,29 +256,21 @@ 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-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"}}' + body: '{"server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2159" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:31 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9937140-d4e6-4a51-b735-07a3b2d9f5ca + - f884000c-c51f-4705-a024-c6b6ba383e85 status: 200 OK code: 200 - duration: 121.761678ms + duration: 652.26441ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +289,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/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/action method: POST response: proto: HTTP/2.0 @@ -335,31 +299,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "d5dac4b5-f5fb-40c8-857a-c8bfbf34aa08", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/action", "href_result": "/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0", "started_at": "2025-10-29T22:53:39.747576+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:31 GMT + - Wed, 29 Oct 2025 22:53:39 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/074fa49f-fcde-4759-849c-86791e75a328 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d5dac4b5-f5fb-40c8-857a-c8bfbf34aa08 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 12c821d5-823a-4932-9651-8eb3c1977065 + - b9fcf49e-ac0f-40bf-b6b4-9b63a8239ade status: 202 Accepted code: 202 - duration: 222.037636ms + duration: 271.404272ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 method: GET response: proto: HTTP/2.0 @@ -386,29 +342,21 @@ 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-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"}}' + body: '{"server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:39.531942+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2181" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:31 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d47c0bcd-89ab-4d3e-aac8-29e77cc21a4a + - f78d5a56-fd08-40c2-92b5-8dd5820a7667 status: 200 OK code: 200 - duration: 122.366632ms + duration: 106.155035ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2284 + 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-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"}}' + body: '{"server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:39.531942+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "103", "node_id": "8"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2284" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2283" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:36 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 04cc1a69-b022-49c9-a692-42e117caefe3 + - 797ac606-f15f-4a71-8972-8435592a137e status: 200 OK code: 200 - duration: 154.429006ms + duration: 116.664487ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 method: GET response: proto: HTTP/2.0 @@ -482,31 +422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2284 + content_length: 2360 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-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"}}' + body: '{"server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:49.420539+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "103", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2284" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2360" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:42 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 64862d32-b072-4f77-ae9b-dc9ed2274c6a + - 89893484-f338-43fa-b2b4-97222cbb8643 status: 200 OK code: 200 - duration: 156.82768ms + duration: 113.931368ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 method: GET response: proto: HTTP/2.0 @@ -531,31 +463,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + 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-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"}}' + body: '{"server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:49.420539+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "103", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2360" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:47 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ce01f389-d465-47f7-9131-6a27601559ec + - 19c74f83-7afe-4089-9c6e-009f4fa9243e status: 200 OK code: 200 - duration: 155.717706ms + duration: 148.980112ms - id: 11 request: proto: HTTP/1.1 @@ -572,56 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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: 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-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: - - "2315" - 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: - - 05957e75-4a69-468c-ab6f-5658a1eeaeaf - status: 200 OK - code: 200 - duration: 123.836743ms - - 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/volumes/3753b0de-602d-4782-a990-9c850a2db99a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06 method: GET response: proto: HTTP/2.0 @@ -631,30 +506,22 @@ interactions: trailer: {} content_length: 504 uncompressed: false - 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"}}' + body: '{"volume": {"id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:47 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9c235af8-691f-4b09-868c-6059495afdd0 + - 0594522f-6c4e-42d5-9bc7-940a8f52c3f9 status: 200 OK code: 200 - duration: 111.891699ms - - id: 13 + duration: 100.365603ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -670,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/user_data method: GET response: proto: HTTP/2.0 @@ -680,30 +547,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:47 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4d7e8390-73e2-4dca-959d-f0af34f126b5 + - 49a1223c-545b-466c-995d-7f3e994de21f status: 200 OK code: 200 - duration: 108.121931ms - - id: 14 + duration: 107.635867ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -719,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/private_nics method: GET response: proto: HTTP/2.0 @@ -729,34 +588,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:47 GMT + - Wed, 29 Oct 2025 22:53:50 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 509c2ee9-2f25-45eb-8ba7-60116e37e7d8 + - c6908e24-ba7f-450b-be9f-7cec54c08d7f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 87.803668ms - - id: 15 + duration: 113.764656ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -772,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/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 method: GET response: proto: HTTP/2.0 @@ -780,32 +631,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + 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-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"}}' + body: '{"server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:49.420539+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "103", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2314" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:47 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7448edd0-09e8-4bd0-9e19-7de18fc75b4b + - b2fe8565-d309-4949-90b3-694d3918c9b6 status: 200 OK code: 200 - duration: 169.314758ms - - id: 16 + duration: 157.501556ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -817,7 +660,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -831,30 +682,22 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5229033f-fcf9-48f5-8691-5ae171577a07 + - 6a929436-52d4-4a5a-b697-363b46e3579d status: 200 OK code: 200 - duration: 42.891756ms - - id: 17 + duration: 42.591558ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -866,7 +709,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -880,30 +731,22 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3539b902-70ad-4780-9abd-d3eb5b052686 + - 905b2f58-e201-4a78-8fa4-2695ac434fdd status: 200 OK code: 200 - duration: 58.404589ms - - id: 18 + duration: 42.676306ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -919,7 +762,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 method: GET response: proto: HTTP/2.0 @@ -927,32 +770,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + 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-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"}}' + body: '{"server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:49.420539+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "103", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2314" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 34fbe561-bb1f-47c2-981f-bfd054f1abf3 + - 7ce7ef4d-3dc7-4b5e-9871-c04b6f895013 status: 200 OK code: 200 - duration: 131.830051ms - - id: 19 + duration: 144.12752ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -968,7 +803,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3753b0de-602d-4782-a990-9c850a2db99a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06 method: GET response: proto: HTTP/2.0 @@ -978,30 +813,22 @@ interactions: trailer: {} content_length: 504 uncompressed: false - 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"}}' + body: '{"volume": {"id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 964a8050-9cc1-4f9c-8be2-be79e7a950a1 + - 62955778-5fbd-4faa-90be-670c59637802 status: 200 OK code: 200 - duration: 107.762378ms - - id: 20 + duration: 90.585266ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1017,7 +844,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/user_data method: GET response: proto: HTTP/2.0 @@ -1027,30 +854,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:48 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - acef8ce0-b3bf-4047-9e21-fda93835a640 + - 520bd99b-5b5f-4db8-9e6b-87cda2524d7b status: 200 OK code: 200 - duration: 96.5041ms - - id: 21 + duration: 91.158769ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1066,7 +885,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/private_nics method: GET response: proto: HTTP/2.0 @@ -1076,34 +895,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:48 GMT + - Wed, 29 Oct 2025 22:53:51 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 99aadef3-c854-47a0-a876-271fee768f67 + - 1a1a6899-1874-4282-9af5-cde450b75b21 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 93.202801ms - - id: 22 + duration: 103.344895ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1115,7 +926,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1129,30 +948,22 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 49d0b838-a9df-4584-ab0c-6cde7b03aa6f + - ac7a0a36-427b-48d4-82d9-c8510d9888fc status: 200 OK code: 200 - duration: 55.76444ms - - id: 23 + duration: 61.446763ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1168,7 +979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 method: GET response: proto: HTTP/2.0 @@ -1176,32 +987,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + 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-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"}}' + body: '{"server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:49.420539+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "103", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2314" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - be1c5dc4-d152-4491-8e4c-3c7186b5cb86 + - 99ad859b-d403-4118-8ca7-6d6ec9e357bd status: 200 OK code: 200 - duration: 140.827059ms - - id: 24 + duration: 138.998099ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1217,7 +1020,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3753b0de-602d-4782-a990-9c850a2db99a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06 method: GET response: proto: HTTP/2.0 @@ -1227,30 +1030,22 @@ interactions: trailer: {} content_length: 504 uncompressed: false - 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"}}' + body: '{"volume": {"id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:49 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ee42eff1-7bdd-4f20-8eaa-4dab7af1e554 + - e7065e45-c27b-40af-a37f-0ddf7f8ea454 status: 200 OK code: 200 - duration: 107.615343ms - - id: 25 + duration: 106.876919ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1266,7 +1061,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/user_data method: GET response: proto: HTTP/2.0 @@ -1276,30 +1071,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:49 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bd9b127e-f135-4a52-b824-8dc17907fd55 + - a23a3a85-b850-4f9e-90ef-dbcf37f2774e status: 200 OK code: 200 - duration: 111.879448ms - - id: 26 + duration: 105.220431ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1315,7 +1102,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/private_nics method: GET response: proto: HTTP/2.0 @@ -1325,34 +1112,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:49 GMT + - Wed, 29 Oct 2025 22:53:52 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3cfb6044-f909-46a5-ae60-abf37fcb434d + - 107799e4-7460-4ec7-9ef0-e714f7f2c831 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 99.977724ms - - id: 27 + duration: 100.672519ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1368,7 +1147,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 method: GET response: proto: HTTP/2.0 @@ -1376,32 +1155,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + 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-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"}}' + body: '{"server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:49.420539+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "103", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2360" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:49 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a4a39aaf-3a31-4d50-a6dc-84f61e3ac4d7 + - 9e957d2d-d2e2-43fe-9fd3-15b7307e69c6 status: 200 OK code: 200 - duration: 127.419593ms - - id: 28 + duration: 143.167204ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1417,7 +1188,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 method: GET response: proto: HTTP/2.0 @@ -1425,32 +1196,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + content_length: 2400 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-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"}}' + body: '{"server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:49.420539+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "103", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2400" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:49 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ac283db2-b038-4636-88fb-a132bb26a5e7 + - 2b5e5ae0-c56a-4e6a-b88a-2b437752104a status: 200 OK code: 200 - duration: 140.714149ms - - id: 29 + duration: 118.132245ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1468,7 +1231,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/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/action method: POST response: proto: HTTP/2.0 @@ -1478,32 +1241,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "408ecb23-90eb-4dd4-b243-2b084b8ea21e", "description": "server_terminate", "status": "pending", "href_from": "/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/action", "href_result": "/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0", "started_at": "2025-10-29T22:53:52.953063+00:00", "terminated_at": null, "progress": 0, "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:49 GMT + - Wed, 29 Oct 2025 22:53:52 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/51849438-9c39-423f-bd7f-38d48faa97fa + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/408ecb23-90eb-4dd4-b243-2b084b8ea21e Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d2b11aa4-b2fb-4281-b33c-badf5148af3e + - c5cb6b5f-1a9c-42d2-ba62-77db9ecec6d3 status: 202 Accepted code: 202 - duration: 282.944239ms - - id: 30 + duration: 273.157ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1519,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/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 method: GET response: proto: HTTP/2.0 @@ -1527,32 +1282,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2278 + content_length: 2323 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-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"}}' + body: '{"server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "843c0d49-e5d5-415c-86c5-88e1918eddf0", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:38.499796+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.499796+00:00", "modification_date": "2025-10-29T22:53:52.734220+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "49", "hypervisor_id": "103", "node_id": "8"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2278" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2323" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:50 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 66d67624-bd77-4cc1-bba5-be1918439ed6 + - 6b9211ef-f0f4-4911-9e2c-0242be151afe status: 200 OK code: 200 - duration: 133.589211ms - - id: 31 + duration: 148.056147ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1568,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/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 method: GET response: proto: HTTP/2.0 @@ -1578,30 +1325,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "843c0d49-e5d5-415c-86c5-88e1918eddf0"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1152703a-e9a8-4849-bda9-1f5f5145b142 + - e26a370b-30c3-479d-a74d-bc516da412ed status: 404 Not Found code: 404 - duration: 46.608637ms - - id: 32 + duration: 43.514615ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1617,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/instance/v1/zones/fr-par-1/volumes/3753b0de-602d-4782-a990-9c850a2db99a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06 method: GET response: proto: HTTP/2.0 @@ -1627,30 +1366,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3753b0de-602d-4782-a990-9c850a2db99a","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dc9bf82f-dfcb-405a-ad32-813ea6beb463 + - 8c0fb71e-7ad0-468b-a248-8fe3259bd0e1 status: 404 Not Found code: 404 - duration: 25.494901ms - - id: 33 + duration: 28.30736ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1666,7 +1397,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3753b0de-602d-4782-a990-9c850a2db99a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06 method: GET response: proto: HTTP/2.0 @@ -1676,30 +1407,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"3753b0de-602d-4782-a990-9c850a2db99a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06","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:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7d33eb0a-c026-4e2a-b0df-c5492de21c07 + - 65d34693-3a87-4d78-91b3-84e6a9576fd3 status: 404 Not Found code: 404 - duration: 19.916251ms - - id: 34 + duration: 17.855847ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1711,7 +1434,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1723,36 +1448,28 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT + - Wed, 29 Oct 2025 22:53:58 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 63b539d9-2f0c-4a59-b865-c3649d53cc4a + - 825b82b2-1292-4fdc-a600-b56e77e07c1c X-Total-Count: - "68" status: 200 OK code: 200 - duration: 31.488759ms - - id: 35 + duration: 47.698418ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1764,7 +1481,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1778,34 +1497,26 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT + - Wed, 29 Oct 2025 22:53:58 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d58a19d4-6c23-499a-88c7-e7614658fe88 + - 3d5d1160-9af1-46c0-bfa2-c4e6d42f7e26 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 51.427161ms - - id: 36 + duration: 51.773938ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1833,32 +1544,24 @@ 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-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"}}' + body: '{"server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9866d34-c36f-4233-aa3d-b293e7dba484", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:71", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2159" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:53:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6b65ce19-893d-4fbf-9dbc-fddeae3aabcc + - d9ac99c5-1de0-440c-a0f8-4e746180c64d status: 201 Created code: 201 - duration: 833.970653ms - - id: 37 + duration: 843.183733ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1874,7 +1577,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de method: GET response: proto: HTTP/2.0 @@ -1882,32 +1585,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2159 + content_length: 2205 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: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"}}' + body: '{"server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9866d34-c36f-4233-aa3d-b293e7dba484", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:71", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2159" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2205" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 85fa7c14-1c13-4383-b6b0-25bb8a22fa91 + - 252debaa-4d53-4f1c-bc69-7ea58bf341ab status: 200 OK code: 200 - duration: 122.57172ms - - id: 38 + duration: 144.434626ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1923,7 +1618,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de method: GET response: proto: HTTP/2.0 @@ -1931,32 +1626,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2159 + content_length: 2205 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: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"}}' + body: '{"server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9866d34-c36f-4233-aa3d-b293e7dba484", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:71", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2159" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2205" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b2eecc9a-3648-4983-8894-3ccdd0c7b727 + - ee8af9c1-0229-4a2b-bd62-431ef47b070e status: 200 OK code: 200 - duration: 127.526912ms - - id: 39 + duration: 139.781356ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1974,7 +1661,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/4545ed79-a8e6-41df-b4e9-570f5ba18fc4/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de/action method: POST response: proto: HTTP/2.0 @@ -1984,32 +1671,24 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "b32a18d9-2219-46b7-b185-6f2368fa4ae9", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/8af385ce-0340-4be6-ac53-5275a04294de/action", "href_result": "/servers/8af385ce-0340-4be6-ac53-5275a04294de", "started_at": "2025-10-29T22:53:59.669369+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:53:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ae666e44-3664-48d3-a65a-781f4f40ddac + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b32a18d9-2219-46b7-b185-6f2368fa4ae9 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fb5f0bd1-aa20-42d4-99fe-885389676dee + - 8f0d4927-ae51-4fe6-933c-1f499750a7dc status: 202 Accepted code: 202 - duration: 266.119539ms - - id: 40 + duration: 246.369418ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2025,7 +1704,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de method: GET response: proto: HTTP/2.0 @@ -2035,30 +1714,22 @@ 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-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"}}' + body: '{"server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9866d34-c36f-4233-aa3d-b293e7dba484", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:71", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:59.481365+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2181" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 46960ed4-2e78-435f-8fd3-a689563c29c4 + - 7574d1ff-9632-42b5-a0ca-3fd1acc87365 status: 200 OK code: 200 - duration: 170.886216ms - - id: 41 + duration: 135.688774ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2074,7 +1745,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de method: GET response: proto: HTTP/2.0 @@ -2082,32 +1753,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2284 + content_length: 2329 uncompressed: 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: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"}}' + body: '{"server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9866d34-c36f-4233-aa3d-b293e7dba484", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:71", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:59.481365+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "601", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2284" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2329" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f49102e-4eb5-4b0c-bf48-6e7b34755d6c + - 3b42fb24-05d4-4e73-afad-04be96ade0b4 status: 200 OK code: 200 - duration: 144.594416ms - - id: 42 + duration: 134.296373ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2123,7 +1786,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de method: GET response: proto: HTTP/2.0 @@ -2131,32 +1794,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2284 + content_length: 2329 uncompressed: 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: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"}}' + body: '{"server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9866d34-c36f-4233-aa3d-b293e7dba484", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:71", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:59.481365+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "601", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2284" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2329" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 435c86d1-3bca-4989-b221-a9ad38ceeb6a + - 67da9992-89bc-4994-9c49-275f03a354b4 status: 200 OK code: 200 - duration: 137.69146ms - - id: 43 + duration: 163.741834ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2172,7 +1827,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de method: GET response: proto: HTTP/2.0 @@ -2180,32 +1835,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + 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: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"}}' + body: '{"server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9866d34-c36f-4233-aa3d-b293e7dba484", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:71", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:54:14.183759+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "601", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2360" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 59a8166c-127c-4671-af07-fccb83349a70 + - 4533178a-56a7-46cf-8a23-6fcfcecd69d9 status: 200 OK code: 200 - duration: 156.170304ms - - id: 44 + duration: 121.267074ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2221,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/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de method: GET response: proto: HTTP/2.0 @@ -2229,32 +1876,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + 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: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"}}' + body: '{"server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9866d34-c36f-4233-aa3d-b293e7dba484", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:71", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:54:14.183759+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "601", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2360" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa0ee4c4-c696-4844-86af-e5ca1712ff16 + - e07d6a36-6859-46d1-b345-5f59f739230d status: 200 OK code: 200 - duration: 124.175272ms - - id: 45 + duration: 124.285448ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2270,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/volumes/27b4b773-c97b-45cf-8a23-32d0b1dbdac8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9866d34-c36f-4233-aa3d-b293e7dba484 method: GET response: proto: HTTP/2.0 @@ -2280,30 +1919,22 @@ interactions: trailer: {} content_length: 504 uncompressed: false - 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"}}' + body: '{"volume": {"id": "a9866d34-c36f-4233-aa3d-b293e7dba484", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bd6e4389-2e08-4d0e-8910-3d079da116ea + - e706d149-602e-4fa9-9a09-79a043cf23d9 status: 200 OK code: 200 - duration: 86.402347ms - - id: 46 + duration: 78.82359ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2319,7 +1950,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de/user_data method: GET response: proto: HTTP/2.0 @@ -2329,30 +1960,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f55ace94-2f1b-44ee-bded-aa2795fcf745 + - 8ecc89ad-2513-4591-9524-d806bd58fc4c status: 200 OK code: 200 - duration: 97.975467ms - - id: 47 + duration: 105.759046ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2368,7 +1991,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de/private_nics method: GET response: proto: HTTP/2.0 @@ -2378,34 +2001,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:12 GMT + - Wed, 29 Oct 2025 22:54:15 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 78992149-ba4d-4caa-bdfe-c9c400454e34 + - 98840f23-dca9-48be-bb2b-028decf542fe X-Total-Count: - "0" status: 200 OK code: 200 - duration: 111.895878ms - - id: 48 + duration: 100.599257ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2421,7 +2036,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de method: GET response: proto: HTTP/2.0 @@ -2429,32 +2044,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + 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: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"}}' + body: '{"server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9866d34-c36f-4233-aa3d-b293e7dba484", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:71", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:54:14.183759+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "601", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2360" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1dac56ab-98a7-4b93-a7bc-d2d38772f1ee + - 1b72fa43-02d6-4042-87b0-a57374410b25 status: 200 OK code: 200 - duration: 131.316372ms - - id: 49 + duration: 122.236737ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2466,7 +2073,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2480,30 +2095,22 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7113743d-f40f-4ed6-a023-77f10330759f + - c8b9e862-c5bb-41c5-bc33-88a948da7695 status: 200 OK code: 200 - duration: 45.553955ms - - id: 50 + duration: 47.043305ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2515,7 +2122,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2529,30 +2144,22 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 76000832-9de0-44fd-9c1d-804dcbe7431a + - 4eca811a-b3ee-4907-9f23-2de6aa9b4971 status: 200 OK code: 200 - duration: 51.84935ms - - id: 51 + duration: 93.607244ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2568,7 +2175,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de method: GET response: proto: HTTP/2.0 @@ -2576,32 +2183,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + 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-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"}}' + body: '{"server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9866d34-c36f-4233-aa3d-b293e7dba484", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:71", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:54:14.183759+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "601", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2314" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e9e4aace-8c48-4395-be08-c1b3a004c7a1 + - a6e1eaf0-7e34-432d-acd6-ef518b42df25 status: 200 OK code: 200 - duration: 160.326048ms - - id: 52 + duration: 131.540374ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2617,7 +2216,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/27b4b773-c97b-45cf-8a23-32d0b1dbdac8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9866d34-c36f-4233-aa3d-b293e7dba484 method: GET response: proto: HTTP/2.0 @@ -2627,30 +2226,22 @@ interactions: trailer: {} content_length: 504 uncompressed: false - 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"}}' + body: '{"volume": {"id": "a9866d34-c36f-4233-aa3d-b293e7dba484", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 22106020-186d-44b1-a352-2bf20ffb8f72 + - e57116f0-d726-400e-bf4d-e98f07ed0238 status: 200 OK code: 200 - duration: 101.023593ms - - id: 53 + duration: 95.267728ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2666,7 +2257,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de/user_data method: GET response: proto: HTTP/2.0 @@ -2676,30 +2267,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f593bd68-c861-4f42-adec-008c8f6889b8 + - b2ea81f4-c514-4045-8260-1387b89003a5 status: 200 OK code: 200 - duration: 115.10678ms - - id: 54 + duration: 99.727508ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2715,7 +2298,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de/private_nics method: GET response: proto: HTTP/2.0 @@ -2725,34 +2308,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:13 GMT + - Wed, 29 Oct 2025 22:54:16 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 94d4c916-b8a0-416b-bc6b-430609e066ca + - 51397b66-fdac-44d5-b517-9f6f74481bb3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 113.792555ms - - id: 55 + duration: 116.266123ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2768,7 +2343,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de method: GET response: proto: HTTP/2.0 @@ -2776,32 +2351,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + 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: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"}}' + body: '{"server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9866d34-c36f-4233-aa3d-b293e7dba484", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:71", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:54:14.183759+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "601", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2360" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b84c9357-db58-48ff-8adb-e9de542ef53d + - 8f0d0735-0cd1-446a-ba69-49c8fe48425c status: 200 OK code: 200 - duration: 141.40504ms - - id: 56 + duration: 135.599314ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2817,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/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de method: GET response: proto: HTTP/2.0 @@ -2825,32 +2392,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + 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: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"}}' + body: '{"server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9866d34-c36f-4233-aa3d-b293e7dba484", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:71", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:54:14.183759+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "601", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2360" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 771189b8-51a5-46f8-998b-0aaabccc1e8b + - f844dc4f-d211-4a9b-87f2-cb34320ef97b status: 200 OK code: 200 - duration: 147.734269ms - - id: 57 + duration: 138.743503ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2868,7 +2427,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/4545ed79-a8e6-41df-b4e9-570f5ba18fc4/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de/action method: POST response: proto: HTTP/2.0 @@ -2878,32 +2437,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "a920d783-ad8d-4aa4-b341-f1f8666949ea", "description": "server_terminate", "status": "pending", "href_from": "/servers/8af385ce-0340-4be6-ac53-5275a04294de/action", "href_result": "/servers/8af385ce-0340-4be6-ac53-5275a04294de", "started_at": "2025-10-29T22:54:17.493274+00:00", "terminated_at": null, "progress": 0, "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:14 GMT + - Wed, 29 Oct 2025 22:54:17 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3a11c83e-cdeb-4efd-870f-fb312c30b328 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a920d783-ad8d-4aa4-b341-f1f8666949ea Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - accf5cd3-2130-40e0-b410-ddb3c7838440 + - 425e0098-56dd-4347-92f3-8a49645dbefc status: 202 Accepted code: 202 - duration: 290.17943ms - - id: 58 + duration: 252.139379ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2919,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/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de method: GET response: proto: HTTP/2.0 @@ -2927,32 +2478,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2278 + content_length: 2323 uncompressed: 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: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"}}' + body: '{"server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "test", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9866d34-c36f-4233-aa3d-b293e7dba484", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8af385ce-0340-4be6-ac53-5275a04294de", "name": "test"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:53:58.936592+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:71", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:58.936592+00:00", "modification_date": "2025-10-29T22:54:17.295377+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "601", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2278" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2323" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0e0f6de8-3236-4d1b-850a-bc2f1737b5e6 + - f214f7fc-b44f-4db6-86c5-a7cba95ff321 status: 200 OK code: 200 - duration: 121.638036ms - - id: 59 + duration: 115.77762ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2968,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/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de method: GET response: proto: HTTP/2.0 @@ -2978,30 +2521,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "8af385ce-0340-4be6-ac53-5275a04294de"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c2946bc6-6a04-4a57-a6f8-b7e68e756f8f + - c979496d-e8fb-4a2d-9381-6b83252270e1 status: 404 Not Found code: 404 - duration: 49.164718ms - - id: 60 + duration: 51.118757ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3017,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/volumes/27b4b773-c97b-45cf-8a23-32d0b1dbdac8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9866d34-c36f-4233-aa3d-b293e7dba484 method: GET response: proto: HTTP/2.0 @@ -3027,30 +2562,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a9866d34-c36f-4233-aa3d-b293e7dba484"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9d198ba1-4b87-468c-938c-6f80c15af53c + - 603515fa-20a4-4952-8806-8cef4a2025c5 status: 404 Not Found code: 404 - duration: 36.855998ms - - id: 61 + duration: 35.946977ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3066,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/block/v1alpha1/zones/fr-par-1/volumes/27b4b773-c97b-45cf-8a23-32d0b1dbdac8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9866d34-c36f-4233-aa3d-b293e7dba484 method: GET response: proto: HTTP/2.0 @@ -3076,30 +2603,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"a9866d34-c36f-4233-aa3d-b293e7dba484","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:05:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c38fd65e-e472-4035-9bff-b9f05ac16170 + - ad7ca016-4607-4d18-95b7-23de68178750 status: 404 Not Found code: 404 - duration: 17.845932ms - - id: 62 + duration: 19.062685ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3115,7 +2634,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de method: GET response: proto: HTTP/2.0 @@ -3125,26 +2644,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "8af385ce-0340-4be6-ac53-5275a04294de"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 34748f0c-ddd6-4160-a9cc-33375a1f0d57 + - 1fcba6a9-c83f-419c-8155-8dcb812e0624 status: 404 Not Found code: 404 - duration: 41.03835ms + duration: 53.694382ms diff --git a/internal/services/instance/testdata/server-basic2.cassette.yaml b/internal/services/instance/testdata/server-basic2.cassette.yaml index d56962a0d..1e6f3507b 100644 --- a/internal/services/instance/testdata/server-basic2.cassette.yaml +++ b/internal/services/instance/testdata/server-basic2.cassette.yaml @@ -13,7 +13,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -27,29 +35,21 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 21c30999-3cc2-4d8a-b3e7-6dfc57c2677a + - 08fd356d-8f9f-478a-8687-da2a1cf883d8 status: 200 OK code: 200 - duration: 44.238268ms + duration: 53.596197ms - id: 1 request: proto: HTTP/1.1 @@ -62,7 +62,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -74,35 +76,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55:14 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 338c2041-4084-4ddd-b472-769a990ccf3e + - f55956d1-5e74-45ab-aac8-60bfde15618f X-Total-Count: - "68" status: 200 OK code: 200 - duration: 63.077426ms + duration: 37.802873ms - id: 2 request: proto: HTTP/1.1 @@ -115,7 +109,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -129,33 +125,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55:14 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - db484f97-f8a4-41ff-88e7-4028bf442d0d + - 71ef9f35-b744-4f3d-bb82-922c4495176f X-Total-Count: - "68" status: 200 OK code: 200 - duration: 45.510795ms + duration: 32.059562ms - id: 3 request: proto: HTTP/1.1 @@ -167,7 +155,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-modest-clarke","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,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 2200 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: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"}}' + body: '{"server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-modest-clarke", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2154" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2200" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55:14 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7ea8733a-523f-46aa-bd11-6508fa1255de + - 9996f3d7-7908-49e4-a629-406fcb0c450e status: 201 Created code: 201 - duration: 824.373528ms + duration: 844.231759ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 method: GET response: proto: HTTP/2.0 @@ -235,29 +215,21 @@ interactions: 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-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"}}' + body: '{"server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-modest-clarke", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2154" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9d210412-3e08-4fc1-bb49-99aed13a7006 + - f11fce94-5790-4985-b280-bd165056ffae status: 200 OK code: 200 - duration: 142.299792ms + duration: 117.770364ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 method: GET response: proto: HTTP/2.0 @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 2200 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: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"}}' + body: '{"server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-modest-clarke", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2154" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2200" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e2d5f16b-c55c-4b7d-a4bb-3a34639a5fec + - c759c78c-d759-46c2-870e-86ce25e00426 status: 200 OK code: 200 - duration: 136.434279ms + duration: 156.691268ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 method: GET response: proto: HTTP/2.0 @@ -331,31 +295,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 2200 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: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"}}' + body: '{"server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-modest-clarke", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2154" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2200" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d5245746-8adf-4e3f-bbdd-171343a68aaf + - 01bb970b-b6e7-401f-a775-5f640707a1ea status: 200 OK code: 200 - duration: 131.523466ms + duration: 131.012118ms - id: 7 request: proto: HTTP/1.1 @@ -372,7 +328,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c75f4999-05a6-4411-a598-c6e190ca3745 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6635ec0-0644-4d01-8dda-9737753cf558 method: GET response: proto: HTTP/2.0 @@ -382,29 +338,21 @@ interactions: trailer: {} content_length: 520 uncompressed: false - 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"}}' + body: '{"volume": {"id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "520" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5dc6830e-0a90-4468-b803-6b524ed52f0d + - 0c44994a-6f26-430f-8f9a-064cfb61f50e status: 200 OK code: 200 - duration: 103.14506ms + duration: 85.943377ms - id: 8 request: proto: HTTP/1.1 @@ -421,7 +369,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/user_data method: GET response: proto: HTTP/2.0 @@ -431,29 +379,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8e2973fa-84de-4211-9210-4f213a9ce6ec + - a4f742ee-7cb9-4a32-ba92-461feb10ab4c status: 200 OK code: 200 - duration: 97.055567ms + duration: 99.880049ms - id: 9 request: proto: HTTP/1.1 @@ -470,7 +410,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/private_nics method: GET response: proto: HTTP/2.0 @@ -480,33 +420,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 + - Wed, 29 Oct 2025 22:55:15 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1904034b-4ff8-4530-9883-fdff12aa22b1 + - fea2a0ae-a1af-48a4-98d6-722d70ae5403 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 102.831172ms + duration: 110.67733ms - id: 10 request: proto: HTTP/1.1 @@ -519,7 +451,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -533,29 +473,21 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 912e656b-4feb-41ef-a459-619099883c0c + - 41ef2706-8f77-45c4-8e15-8275fcf6df40 status: 200 OK code: 200 - duration: 38.994191ms + duration: 36.999671ms - id: 11 request: proto: HTTP/1.1 @@ -568,7 +500,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -582,29 +522,21 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 75d2145f-ad09-407c-96c0-3524e4d21bf4 + - 4cdfcf57-b33f-45d3-bfef-261f39ac9dbb status: 200 OK code: 200 - duration: 36.256019ms + duration: 47.852706ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +553,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 method: GET response: proto: HTTP/2.0 @@ -629,31 +561,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 2200 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: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"}}' + body: '{"server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-modest-clarke", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2154" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2200" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1fbf393a-4039-47a3-a37c-2888aca35f9b + - c04c3b9e-3b5f-452b-9f64-499a8b033fa6 status: 200 OK code: 200 - duration: 114.299575ms + duration: 126.924834ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +594,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c75f4999-05a6-4411-a598-c6e190ca3745 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6635ec0-0644-4d01-8dda-9737753cf558 method: GET response: proto: HTTP/2.0 @@ -680,29 +604,21 @@ interactions: trailer: {} content_length: 520 uncompressed: false - 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"}}' + body: '{"volume": {"id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "520" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4aae3f31-baaa-40fd-81ff-f0d3c0255b91 + - 991ac995-f429-4e1b-ba98-d658d84cff95 status: 200 OK code: 200 - duration: 99.21773ms + duration: 101.694001ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +635,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/user_data method: GET response: proto: HTTP/2.0 @@ -729,29 +645,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 79322b26-4519-44fa-b958-959afce11773 + - a3a71c48-0b03-4fc3-9f0e-d41a88fe1d4b status: 200 OK code: 200 - duration: 109.166346ms + duration: 102.605576ms - id: 15 request: proto: HTTP/1.1 @@ -768,7 +676,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/private_nics method: GET response: proto: HTTP/2.0 @@ -778,33 +686,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:28 GMT + - Wed, 29 Oct 2025 22:55:16 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ea5d6b63-c56f-4e9d-9da4-39801df86ec9 + - abca80b9-4757-489c-bbb8-c0a70151a737 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 93.248293ms + duration: 119.737353ms - id: 16 request: proto: HTTP/1.1 @@ -817,7 +717,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -831,29 +739,21 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fcfe7e66-d192-405c-b1fa-830e3c468415 + - c1064d1d-0b2a-4e0c-bcd0-2f49213f58d1 status: 200 OK code: 200 - duration: 39.329329ms + duration: 39.366216ms - id: 17 request: proto: HTTP/1.1 @@ -870,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/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 method: GET response: proto: HTTP/2.0 @@ -878,31 +778,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 2200 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: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"}}' + body: '{"server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-modest-clarke", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2154" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2200" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9ef3e7f-1849-490d-a676-c1d3431a3df1 + - 1a2dbfaf-2f18-4f7e-8e4d-eee059e25de6 status: 200 OK code: 200 - duration: 151.143538ms + duration: 137.055108ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +811,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c75f4999-05a6-4411-a598-c6e190ca3745 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6635ec0-0644-4d01-8dda-9737753cf558 method: GET response: proto: HTTP/2.0 @@ -929,29 +821,21 @@ interactions: trailer: {} content_length: 520 uncompressed: false - 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"}}' + body: '{"volume": {"id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "520" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 294bd804-5d5b-459e-a6f4-9f2473f97ca6 + - 97fb660b-566a-4c25-ba94-20bae0d1a4da status: 200 OK code: 200 - duration: 117.304038ms + duration: 118.644961ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/user_data method: GET response: proto: HTTP/2.0 @@ -978,29 +862,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d4f62871-99b5-40a8-96ae-56fbc580df5a + - a19b92d2-49ab-4058-bb24-db4f221f2b51 status: 200 OK code: 200 - duration: 100.979452ms + duration: 94.164761ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +893,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/private_nics method: GET response: proto: HTTP/2.0 @@ -1027,33 +903,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:29 GMT + - Wed, 29 Oct 2025 22:55:17 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 500bff56-344b-449d-a0e2-b252aea16c6b + - 9e1c40f2-2f45-4f4d-8a3c-bde904ae7685 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.058771ms + duration: 90.90728ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +938,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 method: GET response: proto: HTTP/2.0 @@ -1078,31 +946,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 2200 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: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"}}' + body: '{"server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-modest-clarke", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2154" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2200" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:29 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2d384001-fb01-4a71-a1f8-e1c53372bee4 + - 9fb2ed2a-58e6-4514-afbe-833fc9b434fa status: 200 OK code: 200 - duration: 176.37616ms + duration: 126.86374ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 method: GET response: proto: HTTP/2.0 @@ -1129,29 +989,21 @@ interactions: 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-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"}}' + body: '{"server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-modest-clarke", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2154" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:29 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 94422ad1-0b7d-4b58-b38b-08c49669962c + - b421ef96-8292-4293-af9d-256d54f05969 status: 200 OK code: 200 - duration: 129.639738ms + duration: 110.685165ms - id: 23 request: proto: HTTP/1.1 @@ -1170,7 +1022,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/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/action method: POST response: proto: HTTP/2.0 @@ -1180,31 +1032,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "631d6ab3-3b37-4ddd-9e9e-9cf90b548fa7", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/action", "href_result": "/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "started_at": "2025-10-29T22:55:18.069980+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:29 GMT + - Wed, 29 Oct 2025 22:55:18 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/149c98e9-9bb2-43c8-aa28-52fb91f409b6 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/631d6ab3-3b37-4ddd-9e9e-9cf90b548fa7 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8e5773c8-e1b8-4b8f-9b25-1780a85b4da2 + - df0c5f2f-39f5-4f6e-9c9c-8c4f12a538ef status: 202 Accepted code: 202 - duration: 267.678827ms + duration: 288.643084ms - id: 24 request: proto: HTTP/1.1 @@ -1221,7 +1065,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 method: GET response: proto: HTTP/2.0 @@ -1231,29 +1075,21 @@ interactions: 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-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"}}' + body: '{"server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-modest-clarke", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:17.840470+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2176" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:29 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c1cf50ff-a729-4601-983b-24a23762cd45 + - 2374832a-c518-4b89-aef9-0c0f7841dd43 status: 200 OK code: 200 - duration: 140.384886ms + duration: 116.884008ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1106,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 method: GET response: proto: HTTP/2.0 @@ -1280,29 +1116,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-modest-clarke", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:17.840470+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "704", "node_id": "36"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2279" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 42bcbd60-46b3-47d1-92fd-3f2bd9ca79ce + - e80453d2-9e2c-421d-8973-75a6ea73f1c3 status: 200 OK code: 200 - duration: 136.315977ms + duration: 142.28509ms - id: 26 request: proto: HTTP/1.1 @@ -1319,7 +1147,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 method: GET response: proto: HTTP/2.0 @@ -1327,31 +1155,23 @@ 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-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"}}' + body: '{"server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-modest-clarke", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:17.840470+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "704", "node_id": "36"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2279" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2325" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 91f3d817-b00d-4214-ad53-0aebdf5011db + - 293481de-a30e-4e30-9dae-e72ea1fd2135 status: 200 OK code: 200 - duration: 124.2083ms + duration: 126.372155ms - id: 27 request: proto: HTTP/1.1 @@ -1368,7 +1188,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 method: GET response: proto: HTTP/2.0 @@ -1378,29 +1198,21 @@ interactions: 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-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"}}' + body: '{"server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-modest-clarke", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:29.108974+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "704", "node_id": "36"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:45 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ec1a05c0-c9bb-4e02-bec8-8544a18e953c + - 06ad55c9-b69b-4b86-80f0-ac5e219b9bf0 status: 200 OK code: 200 - duration: 139.680506ms + duration: 126.955175ms - id: 28 request: proto: HTTP/1.1 @@ -1419,7 +1231,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/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/action method: POST response: proto: HTTP/2.0 @@ -1429,31 +1241,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "776ba552-8e1f-421c-9e5a-7cda78d996fe", "description": "server_terminate", "status": "pending", "href_from": "/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/action", "href_result": "/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "started_at": "2025-10-29T22:55:33.871436+00:00", "terminated_at": null, "progress": 0, "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:45 GMT + - Wed, 29 Oct 2025 22:55:33 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/98d66246-207d-4ebf-a0de-c201b4f08c2e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/776ba552-8e1f-421c-9e5a-7cda78d996fe Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8c086f42-1c35-41fa-a058-c70281bd4709 + - 7299aecf-7f24-4838-ad08-427001564139 status: 202 Accepted code: 202 - duration: 271.96035ms + duration: 281.367499ms - id: 29 request: proto: HTTP/1.1 @@ -1470,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/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 method: GET response: proto: HTTP/2.0 @@ -1478,31 +1282,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2273 + content_length: 2319 uncompressed: 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: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"}}' + body: '{"server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-modest-clarke", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d6635ec0-0644-4d01-8dda-9737753cf558", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6", "name": "tf-srv-modest-clarke"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:14.718975+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:14.718975+00:00", "modification_date": "2025-10-29T22:55:33.649832+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "704", "node_id": "36"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2273" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2319" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:45 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 57564cb9-5165-45e0-bda2-44d5837d54c2 + - bdfe8871-a026-4f20-a76e-36ba31aa08b1 status: 200 OK code: 200 - duration: 117.675632ms + duration: 137.919981ms - id: 30 request: proto: HTTP/1.1 @@ -1519,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/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 method: GET response: proto: HTTP/2.0 @@ -1529,29 +1325,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 16c4e13a-3523-402b-a124-0b53126a6dd6 + - e8dd5139-2f4a-4319-aaa5-c86b59480e0a status: 404 Not Found code: 404 - duration: 46.742533ms + duration: 62.834656ms - id: 31 request: proto: HTTP/1.1 @@ -1568,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/instance/v1/zones/fr-par-1/volumes/c75f4999-05a6-4411-a598-c6e190ca3745 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6635ec0-0644-4d01-8dda-9737753cf558 method: GET response: proto: HTTP/2.0 @@ -1578,29 +1366,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c75f4999-05a6-4411-a598-c6e190ca3745","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d6635ec0-0644-4d01-8dda-9737753cf558"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7873dfd7-134a-4807-aba6-828176528de8 + - 61c6be4a-cce3-4d43-afe7-610330e4d0f6 status: 404 Not Found code: 404 - duration: 28.186371ms + duration: 52.515459ms - id: 32 request: proto: HTTP/1.1 @@ -1617,7 +1397,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c75f4999-05a6-4411-a598-c6e190ca3745 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6635ec0-0644-4d01-8dda-9737753cf558 method: GET response: proto: HTTP/2.0 @@ -1627,29 +1407,21 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"c75f4999-05a6-4411-a598-c6e190ca3745","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"d6635ec0-0644-4d01-8dda-9737753cf558","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:03:50 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 73ebd456-975b-4736-8eb7-205e808e1cdc + - c43079a9-586f-47d1-81fb-c2d8566b5ea2 status: 404 Not Found code: 404 - duration: 19.371689ms + duration: 25.486633ms - id: 33 request: proto: HTTP/1.1 @@ -1666,7 +1438,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 method: GET response: proto: HTTP/2.0 @@ -1676,26 +1448,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a7961f38-80a7-4a22-8975-0c0c38c3e752 + - 2a9fec50-88dd-4ccc-b5b8-0bc10523e8db status: 404 Not Found code: 404 - duration: 49.560114ms + duration: 52.220607ms 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 e8dade631..38522b5f1 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 @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:50 GMT + - Wed, 29 Oct 2025 22:54:08 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7af4de64-f0fd-46e5-8c1a-947c7ba57463 + - 364b0904-d619-41f7-97e0-8a755ca77d91 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 74.588616ms + duration: 42.90157ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:50 GMT + - Wed, 29 Oct 2025 22:54:08 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 762c41c6-efe3-4122-9bb4-950c3c27beb7 + - cd41d47c-798e-4df1-9b85-494761ac57df X-Total-Count: - "68" status: 200 OK code: 200 - duration: 88.487531ms + duration: 94.843332ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,31 +127,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8f8fa993-94cc-4b9b-a88a-77b6341c9032 + - 1916d421-8ae7-4b36-afc1-ced4e1572237 status: 200 OK code: 200 - duration: 58.807745ms + duration: 45.569598ms - id: 3 request: proto: HTTP/1.1 @@ -182,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1816 + content_length: 1862 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: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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:08.887961+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1816" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1862" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:52 GMT + - Wed, 29 Oct 2025 22:54:09 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d461e62d-64d0-4eec-a2c8-3ce4fb1ed0a7 + - 4f65ff53-5b58-4a28-927f-25e3ef72ea64 status: 201 Created code: 201 - duration: 1.246606414s + duration: 1.106180052s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -235,29 +215,21 @@ 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-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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:08.887961+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1816" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:52 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1be6020c-4a12-454a-b008-3b045a1509ca + - b6de6e4d-0055-474e-b262-c64b0c220af0 status: 200 OK code: 200 - duration: 139.578753ms + duration: 122.935001ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -284,29 +256,21 @@ 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-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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:08.887961+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1816" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:52 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 61f6514f-a71b-4cd8-b397-f6f8fc3ee6f4 + - ec8422e5-4b90-4544-b5e2-94cd73ca210f status: 200 OK code: 200 - duration: 151.575036ms + duration: 139.773767ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +289,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/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: PATCH response: proto: HTTP/2.0 @@ -335,29 +299,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"0ab28e47-aa65-438f-877d-9144ccac4d41", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:09.011991Z", "updated_at":"2025-10-29T22:54:09.011991Z", "references":[{"id":"7b5fea98-6bdb-4b80-8907-f3e20a91859b", "product_resource_type":"instance_server", "product_resource_id":"fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "created_at":"2025-10-29T22:54:09.011991Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:20:52 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cdc22c53-30b9-42ac-b281-b6cb32d3d834 + - 875291bf-3040-42d7-a8aa-1bf7fb9bff39 status: 200 OK code: 200 - duration: 115.39993ms + duration: 183.579296ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -382,31 +338,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1816 + content_length: 1862 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: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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:08.887961+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1816" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1862" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:52 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 98411f1e-58ac-4c7a-88cd-050c1d06c75f + - 43ba0956-09f6-41ac-a82f-b9a778e35176 status: 200 OK code: 200 - duration: 141.681292ms + duration: 142.229379ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: GET response: proto: HTTP/2.0 @@ -433,29 +381,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"0ab28e47-aa65-438f-877d-9144ccac4d41", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:09.011991Z", "updated_at":"2025-10-29T22:54:09.011991Z", "references":[{"id":"7b5fea98-6bdb-4b80-8907-f3e20a91859b", "product_resource_type":"instance_server", "product_resource_id":"fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "created_at":"2025-10-29T22:54:09.011991Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:20:52 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 80a8209a-7f5e-47d1-b310-f79c323bc889 + - 9888cbc5-3a04-42f6-ac7d-4fe333685896 status: 200 OK code: 200 - duration: 95.38674ms + duration: 80.287977ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,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/670401d7-bbd7-4dab-bd89-020cf2b04d56/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/action method: POST response: proto: HTTP/2.0 @@ -484,31 +424,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "86f141c2-1b4c-4d49-af4c-01ceaab12c00", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/action", "href_result": "/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "started_at": "2025-10-29T22:54:10.278983+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:52 GMT + - Wed, 29 Oct 2025 22:54:10 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/09b08f6d-4586-4d2f-946c-355f013d4ff0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/86f141c2-1b4c-4d49-af4c-01ceaab12c00 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3d912664-2a7d-427e-a3a7-422b60a26eb7 + - 01ffa1aa-84ed-490a-bb34-f3f6a18540d4 status: 202 Accepted code: 202 - duration: 285.409369ms + duration: 260.18556ms - id: 10 request: proto: HTTP/1.1 @@ -525,7 +457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -533,31 +465,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1838 + content_length: 1884 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":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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:10.081489+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1838" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1884" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:53 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 43c5413d-c561-4c51-b944-112953b8c7f3 + - 525d84ad-6055-457b-a2fd-b565dc7f29c9 status: 200 OK code: 200 - duration: 138.6768ms + duration: 157.726566ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -582,31 +506,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1971 + content_length: 2018 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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:12.850172+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "1001", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1971" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2018" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 48a50c69-e2de-44fd-91d0-5468c34332b5 + - bc6d2270-ad0e-4405-bd98-f895f18f7095 status: 200 OK code: 200 - duration: 172.698772ms + duration: 156.562302ms - id: 12 request: proto: HTTP/1.1 @@ -623,7 +539,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -631,31 +547,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1971 + 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-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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:12.850172+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "1001", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1971" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1972" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b4971934-d16d-46aa-a2a4-b433a76c8a60 + - 4ee97714-dcea-4b51-a63a-600811e37892 status: 200 OK code: 200 - duration: 157.728464ms + duration: 131.040949ms - id: 13 request: proto: HTTP/1.1 @@ -672,7 +580,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: GET response: proto: HTTP/2.0 @@ -682,29 +590,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0ab28e47-aa65-438f-877d-9144ccac4d41"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d4120cba-0792-48ca-b62e-5c130f7da2c3 + - 480ad1ed-6971-44c0-a209-47a4c411fd42 status: 404 Not Found code: 404 - duration: 36.133689ms + duration: 27.187407ms - id: 14 request: proto: HTTP/1.1 @@ -721,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/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: GET response: proto: HTTP/2.0 @@ -731,29 +631,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"0ab28e47-aa65-438f-877d-9144ccac4d41", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:09.011991Z", "updated_at":"2025-10-29T22:54:09.011991Z", "references":[{"id":"7b5fea98-6bdb-4b80-8907-f3e20a91859b", "product_resource_type":"instance_server", "product_resource_id":"fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "created_at":"2025-10-29T22:54:09.011991Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:20:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7a2c3a3e-d435-4964-ada3-005c92da7f31 + - 2957164a-b442-4f86-994d-7d6126c249a6 status: 200 OK code: 200 - duration: 92.415239ms + duration: 106.880583ms - id: 15 request: proto: HTTP/1.1 @@ -770,7 +662,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/user_data method: GET response: proto: HTTP/2.0 @@ -780,29 +672,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:20:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b5556414-6be6-44ba-a4ec-0327a5e5d23b + - 4df2857b-ba2c-4fd8-a5f7-2abe6d22a64f status: 200 OK code: 200 - duration: 100.901098ms + duration: 106.787529ms - id: 16 request: proto: HTTP/1.1 @@ -819,7 +703,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/private_nics method: GET response: proto: HTTP/2.0 @@ -829,33 +713,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:20:58 GMT + - Wed, 29 Oct 2025 22:54:16 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c39137af-10ea-48ec-a516-d04690c213d8 + - 0c8a0453-10a9-4bdd-accd-c56827b568f5 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 94.048036ms + duration: 97.226932ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +748,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -880,31 +756,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1971 + 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-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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:12.850172+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "1001", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1971" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1972" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d73ae90a-332e-400b-9d51-b0862fa55b88 + - b3fb69c6-3ddb-42e8-847c-d448f90ca98f status: 200 OK code: 200 - duration: 122.192199ms + duration: 146.710359ms - id: 18 request: proto: HTTP/1.1 @@ -921,7 +789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: GET response: proto: HTTP/2.0 @@ -931,29 +799,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0ab28e47-aa65-438f-877d-9144ccac4d41"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 98b622f8-e3cd-437b-8442-707f8bc97135 + - 646d7ed5-2148-4e49-9c5d-7dcfba6cc962 status: 404 Not Found code: 404 - duration: 46.203743ms + duration: 34.769685ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +830,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: GET response: proto: HTTP/2.0 @@ -980,29 +840,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"0ab28e47-aa65-438f-877d-9144ccac4d41", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:09.011991Z", "updated_at":"2025-10-29T22:54:09.011991Z", "references":[{"id":"7b5fea98-6bdb-4b80-8907-f3e20a91859b", "product_resource_type":"instance_server", "product_resource_id":"fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "created_at":"2025-10-29T22:54:09.011991Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:20:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 899049c5-52a3-4134-8b17-01849d77b1c6 + - ad15b2db-a89f-4392-9cdd-1460f496e6b2 status: 200 OK code: 200 - duration: 80.206819ms + duration: 85.679419ms - id: 20 request: proto: HTTP/1.1 @@ -1019,7 +871,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/user_data method: GET response: proto: HTTP/2.0 @@ -1029,29 +881,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:20:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3afc7884-9764-42b5-98f9-dab904d30d2e + - f12b39d6-2d94-48f9-92f1-382df644ba61 status: 200 OK code: 200 - duration: 108.725364ms + duration: 100.137705ms - id: 21 request: proto: HTTP/1.1 @@ -1068,7 +912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/private_nics method: GET response: proto: HTTP/2.0 @@ -1078,33 +922,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:20:59 GMT + - Wed, 29 Oct 2025 22:54:16 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 82aaab33-73dd-4cbe-a007-188ac4887852 + - b468c807-2604-478d-977c-6f4c3747891c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 97.252365ms + duration: 104.285981ms - id: 22 request: proto: HTTP/1.1 @@ -1121,7 +957,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -1129,31 +965,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1971 + content_length: 2018 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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:12.850172+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "1001", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1971" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2018" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:59 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 15f4ccb4-5a96-4ebc-bbc4-d1106670a2ee + - b57175a6-132b-4f7c-8abf-f046d9085680 status: 200 OK code: 200 - duration: 414.219711ms + duration: 144.285606ms - id: 23 request: proto: HTTP/1.1 @@ -1170,7 +998,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: GET response: proto: HTTP/2.0 @@ -1180,29 +1008,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0ab28e47-aa65-438f-877d-9144ccac4d41"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e161414-8efe-4eca-83d8-f3b19c09c6d2 + - 53fe7990-9771-4c65-9801-3e5c65e48950 status: 404 Not Found code: 404 - duration: 30.72541ms + duration: 26.874331ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1039,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: GET response: proto: HTTP/2.0 @@ -1229,29 +1049,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"0ab28e47-aa65-438f-877d-9144ccac4d41", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:09.011991Z", "updated_at":"2025-10-29T22:54:09.011991Z", "references":[{"id":"7b5fea98-6bdb-4b80-8907-f3e20a91859b", "product_resource_type":"instance_server", "product_resource_id":"fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "created_at":"2025-10-29T22:54:09.011991Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:21:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ff671a90-6eba-4c1b-8d42-c819908f0ca4 + - 133faba6-745c-4058-b7f2-f2fe642ed685 status: 200 OK code: 200 - duration: 85.969853ms + duration: 90.984361ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1080,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/user_data method: GET response: proto: HTTP/2.0 @@ -1278,29 +1090,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:21:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3a827272-e6ca-4eb4-a539-29353e26b985 + - 6e9675cc-fb3b-4093-b247-478dca4263d3 status: 200 OK code: 200 - duration: 103.855848ms + duration: 91.821614ms - id: 26 request: proto: HTTP/1.1 @@ -1317,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/670401d7-bbd7-4dab-bd89-020cf2b04d56/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/private_nics method: GET response: proto: HTTP/2.0 @@ -1327,33 +1131,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:21:00 GMT + - Wed, 29 Oct 2025 22:54:17 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - da9a79c0-95bf-44fb-b0d6-6ef20914ed9f + - 039e9cb8-94cf-4698-8eba-4aca4088835b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 123.112226ms + duration: 100.458585ms - id: 27 request: proto: HTTP/1.1 @@ -1370,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/670401d7-bbd7-4dab-bd89-020cf2b04d56 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -1378,50 +1174,42 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1971 + content_length: 2018 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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:12.850172+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "1001", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1971" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2018" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f561ae46-d5c4-4606-81d3-5533271111b4 + - 0c369583-4d10-4cfd-b8cc-b30873735899 status: 200 OK code: 200 - duration: 144.446157ms + duration: 152.811268ms - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 108 + content_length: 109 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volumes":{"0":{"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","boot":false,"name":"tf-vol-laughing-diffie"}}}' + body: '{"volumes":{"0":{"id":"0ab28e47-aa65-438f-877d-9144ccac4d41","boot":false,"name":"tf-vol-magical-dijkstra"}}}' 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/670401d7-bbd7-4dab-bd89-020cf2b04d56 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: PATCH response: proto: HTTP/2.0 @@ -1429,31 +1217,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1971 + 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-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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:12.850172+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "1001", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1971" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1972" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae4e9a8c-c713-4d40-8c8b-3afbcd6d69ce + - c69070f3-f3d6-4607-ab1f-c0dd2ef1611c status: 200 OK code: 200 - duration: 239.931794ms + duration: 270.488812ms - id: 29 request: proto: HTTP/1.1 @@ -1470,7 +1250,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -1478,31 +1258,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1971 + content_length: 2018 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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:12.850172+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "1001", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1971" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2018" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 54f4ef5d-de25-4adc-89a2-1e9763ac90b6 + - a125a9c2-ee65-4d07-80fa-d51d323c402b status: 200 OK code: 200 - duration: 173.155681ms + duration: 150.407965ms - id: 30 request: proto: HTTP/1.1 @@ -1519,7 +1291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -1527,31 +1299,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1971 + content_length: 2018 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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:12.850172+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "1001", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1971" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2018" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e7845d1d-6f1c-4a5f-a109-57fdec2e256d + - 1e791f34-8302-4ae8-9632-5f7235c376a9 status: 200 OK code: 200 - duration: 135.196204ms + duration: 177.61597ms - id: 31 request: proto: HTTP/1.1 @@ -1570,7 +1334,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/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: PATCH response: proto: HTTP/2.0 @@ -1580,29 +1344,21 @@ interactions: trailer: {} content_length: 707 uncompressed: false - 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"}' + body: '{"id":"0ab28e47-aa65-438f-877d-9144ccac4d41", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:09.011991Z", "updated_at":"2025-10-29T22:54:09.011991Z", "references":[{"id":"7b5fea98-6bdb-4b80-8907-f3e20a91859b", "product_resource_type":"instance_server", "product_resource_id":"fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "created_at":"2025-10-29T22:54:09.011991Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"updating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "707" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2de3a906-d2f8-444b-931f-fdea2b576256 + - fe0c6a25-0536-4196-93aa-c2b35f1909ee status: 200 OK code: 200 - duration: 228.235204ms + duration: 264.768976ms - id: 32 request: proto: HTTP/1.1 @@ -1619,7 +1375,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -1627,31 +1383,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1971 + 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-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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:12.850172+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "1001", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1971" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1972" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d9ae4011-bcaa-4fef-98b4-df3b49284b56 + - e49486f1-6b9f-4a02-a73e-ed417c6460cd status: 200 OK code: 200 - duration: 166.144122ms + duration: 158.934679ms - id: 33 request: proto: HTTP/1.1 @@ -1668,7 +1416,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: GET response: proto: HTTP/2.0 @@ -1678,29 +1426,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0ab28e47-aa65-438f-877d-9144ccac4d41"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 306012e2-9eaa-4d5a-b419-e60c7d94d9e1 + - 586e03e4-4184-4836-9a0b-11a26f6fa378 status: 404 Not Found code: 404 - duration: 23.605076ms + duration: 26.650002ms - id: 34 request: proto: HTTP/1.1 @@ -1717,7 +1457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: GET response: proto: HTTP/2.0 @@ -1727,29 +1467,21 @@ interactions: trailer: {} content_length: 707 uncompressed: false - 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"}' + body: '{"id":"0ab28e47-aa65-438f-877d-9144ccac4d41", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_15k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:09.011991Z", "updated_at":"2025-10-29T22:54:18.729971Z", "references":[{"id":"7b5fea98-6bdb-4b80-8907-f3e20a91859b", "product_resource_type":"instance_server", "product_resource_id":"fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "created_at":"2025-10-29T22:54:09.011991Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "707" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 415995ca-139d-47e6-bcb6-fb8f258f9782 + - 4815461b-6f58-4f36-b54c-3d40bdf5dbd4 status: 200 OK code: 200 - duration: 87.666791ms + duration: 85.051226ms - id: 35 request: proto: HTTP/1.1 @@ -1766,7 +1498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/user_data method: GET response: proto: HTTP/2.0 @@ -1776,29 +1508,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:21:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ecba94c4-aef5-451e-9b9a-153ee36f7f83 + - 03528c15-bf9a-4b4b-b5f4-b7bb9761b1f8 status: 200 OK code: 200 - duration: 107.698446ms + duration: 106.186025ms - id: 36 request: proto: HTTP/1.1 @@ -1815,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/670401d7-bbd7-4dab-bd89-020cf2b04d56/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/private_nics method: GET response: proto: HTTP/2.0 @@ -1825,33 +1549,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:21:01 GMT + - Wed, 29 Oct 2025 22:54:19 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0d6a9485-e52b-4164-8615-df045da61151 + - 514200c3-9e05-4c63-bc1d-945c4833199b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 87.106088ms + duration: 96.436024ms - id: 37 request: proto: HTTP/1.1 @@ -1868,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/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -1876,31 +1592,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1971 + 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-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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:12.850172+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "1001", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1971" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1972" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8d7e5a25-a187-4399-95ef-e9616db1fec5 + - 84ce87ee-fd0e-46be-a38c-e6aca69da5f5 status: 200 OK code: 200 - duration: 148.625107ms + duration: 134.143643ms - id: 38 request: proto: HTTP/1.1 @@ -1917,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/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: GET response: proto: HTTP/2.0 @@ -1927,29 +1635,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0ab28e47-aa65-438f-877d-9144ccac4d41"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 329c2230-ff7b-41f7-b59f-76ed14eced23 + - b30b0505-85fd-4e79-9e81-bf9446b0951d status: 404 Not Found code: 404 - duration: 36.852809ms + duration: 31.045131ms - id: 39 request: proto: HTTP/1.1 @@ -1966,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/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: GET response: proto: HTTP/2.0 @@ -1976,29 +1676,21 @@ interactions: trailer: {} content_length: 707 uncompressed: false - 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"}' + body: '{"id":"0ab28e47-aa65-438f-877d-9144ccac4d41", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_15k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:09.011991Z", "updated_at":"2025-10-29T22:54:18.729971Z", "references":[{"id":"7b5fea98-6bdb-4b80-8907-f3e20a91859b", "product_resource_type":"instance_server", "product_resource_id":"fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "created_at":"2025-10-29T22:54:09.011991Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "707" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2fd9f931-6fd9-472f-a3fd-ef106297267e + - 431ed182-1c14-4e7c-8c4e-212ab23e7039 status: 200 OK code: 200 - duration: 89.35402ms + duration: 76.77499ms - id: 40 request: proto: HTTP/1.1 @@ -2015,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/670401d7-bbd7-4dab-bd89-020cf2b04d56/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/user_data method: GET response: proto: HTTP/2.0 @@ -2025,29 +1717,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:21:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0d8148bf-b055-4094-b9db-140c0cd63fdc + - e6dd3f99-e3e2-4ad4-9147-d88f6961a29e status: 200 OK code: 200 - duration: 102.831284ms + duration: 108.028861ms - id: 41 request: proto: HTTP/1.1 @@ -2064,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/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/private_nics method: GET response: proto: HTTP/2.0 @@ -2074,33 +1758,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:21:02 GMT + - Wed, 29 Oct 2025 22:54:20 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dc67e072-0b30-423b-8530-b8dc41f8bd00 + - 77c374d3-4570-4b9e-9444-f8de924c90bc X-Total-Count: - "0" status: 200 OK code: 200 - duration: 92.815782ms + duration: 116.113127ms - id: 42 request: proto: HTTP/1.1 @@ -2117,7 +1793,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -2125,31 +1801,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1971 + 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-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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:12.850172+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "1001", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1971" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1972" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5313cf3a-7d87-411a-a16a-c2f89d64d8f6 + - fea0909c-cee8-4cc7-9336-9c5009ad4cdb status: 200 OK code: 200 - duration: 161.896123ms + duration: 130.299505ms - id: 43 request: proto: HTTP/1.1 @@ -2166,7 +1834,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -2174,31 +1842,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1971 + 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-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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:12.850172+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "1001", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1971" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1972" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f99347a1-7999-4f3d-9fc6-d0a1c5ad1871 + - 809ed3cb-f311-4e7a-8638-881dd9eb542d status: 200 OK code: 200 - duration: 135.182287ms + duration: 141.020983ms - id: 44 request: proto: HTTP/1.1 @@ -2217,7 +1877,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/670401d7-bbd7-4dab-bd89-020cf2b04d56/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/action method: POST response: proto: HTTP/2.0 @@ -2227,31 +1887,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "a8592ca4-26de-42fd-867c-3a6ffd129cf5", "description": "server_terminate", "status": "pending", "href_from": "/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/action", "href_result": "/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "started_at": "2025-10-29T22:54:20.829738+00:00", "terminated_at": null, "progress": 0, "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:21:03 GMT + - Wed, 29 Oct 2025 22:54:20 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/448b9d04-3605-48eb-bca7-2e40d42e7cfa + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a8592ca4-26de-42fd-867c-3a6ffd129cf5 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8aea2e17-8878-439f-b6f4-0fb469981132 + - bdc8fc97-d613-4c22-9faf-ade87c3e243a status: 202 Accepted code: 202 - duration: 322.76677ms + duration: 300.925867ms - id: 45 request: proto: HTTP/1.1 @@ -2268,7 +1920,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -2276,31 +1928,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1934 + content_length: 1935 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"}}' + body: '{"server": {"id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21", "name": "tf-tests-instance-block-external-root-volume-iops-update", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume-iops-update", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab28e47-aa65-438f-877d-9144ccac4d41", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:08.887961+00:00", "modification_date": "2025-10-29T22:54:20.584162+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "1001", "node_id": "18"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1934" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1935" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 876f9daf-b517-43ba-87b4-2bfc9029b01c + - 5e56c160-29d4-44b2-b260-1e85c739f3fd status: 200 OK code: 200 - duration: 158.031405ms + duration: 133.7676ms - id: 46 request: proto: HTTP/1.1 @@ -2317,105 +1961,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -2425,30 +1971,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9c4ca96e-978f-4c95-9dea-4866a5533b4a + - c32de5e7-5702-404a-b798-379c69569da3 status: 404 Not Found code: 404 - duration: 59.284734ms - - id: 49 + duration: 61.84804ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2464,7 +2002,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: GET response: proto: HTTP/2.0 @@ -2474,30 +2012,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0ab28e47-aa65-438f-877d-9144ccac4d41"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ec6f3d8e-849c-4d6b-b1f5-45a1db37df74 + - 179a7493-34a9-4a6c-bdc8-13321cccb50d status: 404 Not Found code: 404 - duration: 44.893873ms - - id: 50 + duration: 25.997272ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2513,7 +2043,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: GET response: proto: HTTP/2.0 @@ -2523,30 +2053,22 @@ interactions: trailer: {} content_length: 500 uncompressed: false - 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"}' + body: '{"id":"0ab28e47-aa65-438f-877d-9144ccac4d41", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_15k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:09.011991Z", "updated_at":"2025-10-29T22:54:22.627509Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:54:22.627509Z", "zone":"fr-par-1"}' headers: Content-Length: - "500" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3f6c162a-ee01-44e9-8da5-8ce1ef9e1573 + - 369f6555-91fa-4851-963d-c0400ad15911 status: 200 OK code: 200 - duration: 83.148145ms - - id: 51 + duration: 81.476322ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2562,7 +2084,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 method: DELETE response: proto: HTTP/2.0 @@ -2574,26 +2096,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8f0ee206-a703-4ab3-aba0-3d05818424de + - b6e3c9f4-a6b7-4bc9-9cdf-a42a531d1127 status: 204 No Content code: 204 - duration: 159.14033ms - - id: 52 + duration: 143.703922ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2609,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/670401d7-bbd7-4dab-bd89-020cf2b04d56 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 method: GET response: proto: HTTP/2.0 @@ -2619,26 +2133,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 751abe21-3c93-46b3-8808-dba61973b972 + - 6321513c-7dc3-4ca1-a67a-1377b2779096 status: 404 Not Found code: 404 - duration: 40.763686ms + duration: 38.271454ms 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 bcb18a443..12e2281fa 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 @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53:45 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d3a3fcf1-1b2f-4d82-a094-397e652de1ac + - 3bbd37e0-0a0f-418e-b5f5-26d9aa812734 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 82.681747ms + duration: 45.512699ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53:45 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 75a88ad8-5714-4ff8-b494-4c0fe18ff0af + - cf55ec8a-261d-4121-ab00-b4eac42b2d52 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 89.111466ms + duration: 51.644043ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,31 +127,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 17be17b7-3ac2-4195-a94b-b00c4d5232e8 + - 5ceda58c-601f-49fe-b744-efef079117d9 status: 200 OK code: 200 - duration: 57.419047ms + duration: 52.34856ms - id: 3 request: proto: HTTP/1.1 @@ -184,31 +172,23 @@ 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-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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:46.318444+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1792" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b060efd4-4a55-4407-9773-b630de2397cc + - 9ede0afd-d559-4bfa-a018-4219ca778876 status: 201 Created code: 201 - duration: 1.217244852s + duration: 1.068644886s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -235,29 +215,21 @@ 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-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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:46.318444+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1792" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d950a5b9-7c90-4f78-94a1-d3d2a116db20 + - 332ca86a-b2d8-4d04-9a0a-e103f26aedad status: 200 OK code: 200 - duration: 147.235675ms + duration: 149.005368ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -284,29 +256,21 @@ 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-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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:46.318444+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1792" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3aff5cd8-b674-434a-8add-e32c7fa09e25 + - 2780ae85-31f9-4e76-87e2-f7fc1acc3b2c status: 200 OK code: 200 - duration: 149.67157ms + duration: 121.615996ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +289,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/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: PATCH response: proto: HTTP/2.0 @@ -335,29 +299,21 @@ interactions: trailer: {} content_length: 707 uncompressed: false - 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"}' + body: '{"id":"fdb1042e-3f37-4924-b39b-bc62b24a7888", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.476245Z", "updated_at":"2025-10-29T22:53:46.476245Z", "references":[{"id":"68fbb8ee-6f99-414f-8b41-644b2e6885ae", "product_resource_type":"instance_server", "product_resource_id":"261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "created_at":"2025-10-29T22:53:46.476245Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"updating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "707" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e3c777d1-7b0c-42a2-a729-dd19600de2ae + - 6acc6a11-ed2d-4c8d-a0c7-cb92c2524c83 status: 200 OK code: 200 - duration: 387.396936ms + duration: 228.364974ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -382,31 +338,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1792 + content_length: 1838 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: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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:46.318444+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1792" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1838" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 769cfd57-3c55-4cb9-91e2-c9d03c649515 + - 31287092-98fd-4f6f-8614-47d727ef036d status: 200 OK code: 200 - duration: 150.997075ms + duration: 147.496317ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -433,29 +381,21 @@ interactions: trailer: {} content_length: 707 uncompressed: false - 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"}' + body: '{"id":"fdb1042e-3f37-4924-b39b-bc62b24a7888", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_15k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.476245Z", "updated_at":"2025-10-29T22:53:47.388747Z", "references":[{"id":"68fbb8ee-6f99-414f-8b41-644b2e6885ae", "product_resource_type":"instance_server", "product_resource_id":"261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "created_at":"2025-10-29T22:53:46.476245Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "707" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 33bdd91f-997d-4221-845e-62e16e15faa0 + - f6ddbf51-5e47-46c3-bcbf-2a8795749d47 status: 200 OK code: 200 - duration: 81.835552ms + duration: 77.898814ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,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/ae857bb7-e464-4239-8285-58a9cf9bcea1/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/action method: POST response: proto: HTTP/2.0 @@ -484,31 +424,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "09a7c4c5-6892-44d7-9134-3915c86155c8", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/action", "href_result": "/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "started_at": "2025-10-29T22:53:47.889635+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53:47 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a5026eb8-ee90-421c-85ba-d288833f1e5b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/09a7c4c5-6892-44d7-9134-3915c86155c8 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b7feb6f9-f8dd-46cc-b459-5d8bf9cb9474 + - 3f9c4e2a-db37-4f52-8dbc-64dc0e0efd2f status: 202 Accepted code: 202 - duration: 250.638074ms + duration: 305.531459ms - id: 10 request: proto: HTTP/1.1 @@ -525,7 +457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -533,31 +465,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 1860 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: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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:47.642464+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1814" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1860" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9df5f0d2-7d26-4518-b369-425f724840c0 + - d0d71aa2-36a3-4897-a130-7f3a5b8d0d71 status: 200 OK code: 200 - duration: 162.139686ms + duration: 157.775486ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -582,31 +506,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + 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":"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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:50.903354+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1948" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4fc6e880-79bd-4252-89b0-8f3256fecd0c + - 34ed84c8-6910-491a-9668-567f23e495f5 status: 200 OK code: 200 - duration: 198.76585ms + duration: 126.97051ms - id: 12 request: proto: HTTP/1.1 @@ -623,7 +539,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -631,31 +547,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + 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":"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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:50.903354+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1948" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 140407b7-b838-4630-a713-e822356e4973 + - 399f6f42-0e2e-4157-9ae2-4aa6c492f5bd status: 200 OK code: 200 - duration: 168.004275ms + duration: 151.789378ms - id: 13 request: proto: HTTP/1.1 @@ -672,7 +580,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -682,29 +590,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 36c12cb4-4475-4cb6-ad9c-ea70af5acc11 + - 75bee3f0-b72e-4ba0-af35-62cbd03f78b6 status: 404 Not Found code: 404 - duration: 33.259066ms + duration: 27.989476ms - id: 14 request: proto: HTTP/1.1 @@ -721,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/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -731,29 +631,21 @@ interactions: trailer: {} content_length: 707 uncompressed: false - 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"}' + body: '{"id":"fdb1042e-3f37-4924-b39b-bc62b24a7888", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_15k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.476245Z", "updated_at":"2025-10-29T22:53:47.388747Z", "references":[{"id":"68fbb8ee-6f99-414f-8b41-644b2e6885ae", "product_resource_type":"instance_server", "product_resource_id":"261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "created_at":"2025-10-29T22:53:46.476245Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "707" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9ecc740-4f5d-471b-b0d7-9c4bd635560e + - 930be130-3bf6-4da1-8083-6dff8869a87f status: 200 OK code: 200 - duration: 88.356136ms + duration: 103.8181ms - id: 15 request: proto: HTTP/1.1 @@ -770,7 +662,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/user_data method: GET response: proto: HTTP/2.0 @@ -780,29 +672,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:07 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2fb70fc4-9472-49a6-be9d-e2ed81e331a6 + - 511ae9ff-7639-41b5-ad14-0e8a24a19056 status: 200 OK code: 200 - duration: 128.345155ms + duration: 105.633003ms - id: 16 request: proto: HTTP/1.1 @@ -819,7 +703,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/private_nics method: GET response: proto: HTTP/2.0 @@ -829,33 +713,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:07 GMT + - Wed, 29 Oct 2025 22:53:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bbd7068f-f071-4bb2-90bd-e08bad311dfc + - c3ed5480-117f-420a-b9cd-a1d860da5dad X-Total-Count: - "0" status: 200 OK code: 200 - duration: 100.024894ms + duration: 100.477443ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +748,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -880,31 +756,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + 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":"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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:50.903354+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1948" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 55c3dbfc-016b-4a4a-9496-575243a1ca5a + - dde8dcac-6e4a-4482-a2f3-77031b0bfd35 status: 200 OK code: 200 - duration: 166.143878ms + duration: 148.515396ms - id: 18 request: proto: HTTP/1.1 @@ -921,7 +789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -931,29 +799,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3b2708a3-180f-4c41-a93b-288609dae311 + - 09aaec45-17d2-40e0-94d3-aa84451af054 status: 404 Not Found code: 404 - duration: 23.632166ms + duration: 32.912851ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +830,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -980,29 +840,21 @@ interactions: trailer: {} content_length: 707 uncompressed: false - 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"}' + body: '{"id":"fdb1042e-3f37-4924-b39b-bc62b24a7888", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_15k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.476245Z", "updated_at":"2025-10-29T22:53:47.388747Z", "references":[{"id":"68fbb8ee-6f99-414f-8b41-644b2e6885ae", "product_resource_type":"instance_server", "product_resource_id":"261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "created_at":"2025-10-29T22:53:46.476245Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "707" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a6231265-0c6c-4766-9e5e-09add0e65f70 + - f280e468-bede-4141-af2e-e15b4c747503 status: 200 OK code: 200 - duration: 520.60353ms + duration: 106.817708ms - id: 20 request: proto: HTTP/1.1 @@ -1019,7 +871,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/user_data method: GET response: proto: HTTP/2.0 @@ -1029,29 +881,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:08 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cd0e7011-2c14-4b8e-b0ec-2a3f46b8cc0b + - 87484d29-1c79-4804-b52d-9e5bf1df6128 status: 200 OK code: 200 - duration: 119.551417ms + duration: 94.478928ms - id: 21 request: proto: HTTP/1.1 @@ -1068,7 +912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/private_nics method: GET response: proto: HTTP/2.0 @@ -1078,33 +922,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:08 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8afb4a47-c270-4100-a85f-c843e5c5b1ad + - 8029a3cd-a5ca-4d61-8d82-c8af18b82395 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.235003ms + duration: 105.408614ms - id: 22 request: proto: HTTP/1.1 @@ -1121,7 +957,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -1129,31 +965,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + 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":"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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:50.903354+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1948" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fbc27645-dacd-4973-9725-4c4c5ef445ab + - 9fece0b0-e1b0-4ba5-91ec-30ac81a16392 status: 200 OK code: 200 - duration: 198.068508ms + duration: 141.654357ms - id: 23 request: proto: HTTP/1.1 @@ -1170,7 +998,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -1180,29 +1008,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b40ff1e5-ced6-4922-886c-315879a15f71 + - 116da094-0da7-4fc6-b67c-d47c51fcd575 status: 404 Not Found code: 404 - duration: 31.771379ms + duration: 25.333569ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1039,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -1229,29 +1049,21 @@ interactions: trailer: {} content_length: 707 uncompressed: false - 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"}' + body: '{"id":"fdb1042e-3f37-4924-b39b-bc62b24a7888", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_15k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.476245Z", "updated_at":"2025-10-29T22:53:47.388747Z", "references":[{"id":"68fbb8ee-6f99-414f-8b41-644b2e6885ae", "product_resource_type":"instance_server", "product_resource_id":"261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "created_at":"2025-10-29T22:53:46.476245Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "707" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 395e7877-c3b5-4b60-a20e-1a785d12690b + - a749a450-58e5-4f41-b115-2972952acf1b status: 200 OK code: 200 - duration: 77.241059ms + duration: 78.24288ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1080,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/user_data method: GET response: proto: HTTP/2.0 @@ -1278,29 +1090,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:09 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 08c869a2-49db-43d2-8283-c6090df46903 + - 5211c0f7-fbe2-4eb8-be78-35c189a8b117 status: 200 OK code: 200 - duration: 117.9887ms + duration: 89.611877ms - id: 26 request: proto: HTTP/1.1 @@ -1317,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/ae857bb7-e464-4239-8285-58a9cf9bcea1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/private_nics method: GET response: proto: HTTP/2.0 @@ -1327,33 +1131,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:09 GMT + - Wed, 29 Oct 2025 22:53:55 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ac76b8cc-2dbf-4654-b369-e5b2e8ec3ac5 + - caa9f51e-8f35-495f-bc55-7c3c6343a686 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 94.461269ms + duration: 88.818914ms - id: 27 request: proto: HTTP/1.1 @@ -1370,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/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -1378,31 +1174,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + 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":"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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:50.903354+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1948" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c6f4ab20-5241-498f-bb73-207451432987 + - 9d7eac7e-cb33-4c38-bd17-01d094a5e159 status: 200 OK code: 200 - duration: 142.191426ms + duration: 141.262825ms - id: 28 request: proto: HTTP/1.1 @@ -1419,7 +1207,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -1427,31 +1215,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + 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-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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:50.903354+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1994" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 00320025-d18c-4fa2-9c86-6b0499683f37 + - 05249777-ff1c-4e6f-89cd-ffe744f2d0cd status: 200 OK code: 200 - duration: 159.917223ms + duration: 121.345473ms - id: 29 request: proto: HTTP/1.1 @@ -1468,7 +1248,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -1476,31 +1256,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + 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-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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:50.903354+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1994" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - de1e6849-1f70-4d58-9dd2-296b8afe9da2 + - 596d8634-7c65-4117-aa65-1be56a810686 status: 200 OK code: 200 - duration: 148.477224ms + duration: 148.249859ms - id: 30 request: proto: HTTP/1.1 @@ -1517,7 +1289,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -1527,29 +1299,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5a951754-b5f2-4960-a7e5-5278c6ac7a52 + - fd044595-bbe9-4287-a876-53f361b578a9 status: 404 Not Found code: 404 - duration: 27.760152ms + duration: 26.296079ms - id: 31 request: proto: HTTP/1.1 @@ -1566,7 +1330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -1576,29 +1340,21 @@ interactions: trailer: {} content_length: 707 uncompressed: false - 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"}' + body: '{"id":"fdb1042e-3f37-4924-b39b-bc62b24a7888", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_15k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.476245Z", "updated_at":"2025-10-29T22:53:47.388747Z", "references":[{"id":"68fbb8ee-6f99-414f-8b41-644b2e6885ae", "product_resource_type":"instance_server", "product_resource_id":"261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "created_at":"2025-10-29T22:53:46.476245Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "707" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ff605a78-3cd6-43b9-a82f-6296e7232471 + - ce3e71a4-b911-4eaa-8d31-5f4bc89c81c2 status: 200 OK code: 200 - duration: 83.615465ms + duration: 79.025563ms - id: 32 request: proto: HTTP/1.1 @@ -1617,7 +1373,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/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: PATCH response: proto: HTTP/2.0 @@ -1627,29 +1383,21 @@ interactions: trailer: {} content_length: 709 uncompressed: false - 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"}' + body: '{"id":"fdb1042e-3f37-4924-b39b-bc62b24a7888", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_15k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.476245Z", "updated_at":"2025-10-29T22:53:47.388747Z", "references":[{"id":"68fbb8ee-6f99-414f-8b41-644b2e6885ae", "product_resource_type":"instance_server", "product_resource_id":"261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "created_at":"2025-10-29T22:53:46.476245Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"updating", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "709" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2b021e1a-89f1-49b9-ae51-3fad2117c7fc + - 5499b476-bd96-4258-9ebd-67d3701faaa9 status: 200 OK code: 200 - duration: 1.297239168s + duration: 211.027031ms - id: 33 request: proto: HTTP/1.1 @@ -1661,14 +1409,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volumes":{"0":{"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","boot":false,"name":"tf-vol-peaceful-mendeleev"}}}' + body: '{"volumes":{"0":{"id":"fdb1042e-3f37-4924-b39b-bc62b24a7888","boot":false,"name":"tf-vol-affectionate-gates"}}}' 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/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: PATCH response: proto: HTTP/2.0 @@ -1676,31 +1424,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + 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":"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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:50.903354+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1948" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e624643-feb8-4c0c-b80d-19265eb5d585 + - 6533223e-0731-4ac4-b67e-d5c1235c9a0e status: 200 OK code: 200 - duration: 203.832654ms + duration: 233.86281ms - id: 34 request: proto: HTTP/1.1 @@ -1717,7 +1457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -1725,31 +1465,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1886 + content_length: 1933 uncompressed: false - 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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "resizing", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:50.903354+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": [], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1886" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1933" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - afaf0f28-488c-4bef-9c0e-a07002d8d0f1 + - a1c77b9e-0c61-4cf6-87fe-927ddea883a4 status: 200 OK code: 200 - duration: 123.744628ms + duration: 122.801066ms - id: 35 request: proto: HTTP/1.1 @@ -1766,7 +1498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -1774,31 +1506,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1886 + content_length: 1887 uncompressed: false - 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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "resizing", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:50.903354+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": [], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1886" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1887" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a49fc6cc-d784-485e-ae9d-b538745b4807 + - 1b29fc1f-738d-4fdb-8244-338312012385 status: 200 OK code: 200 - duration: 132.904684ms + duration: 129.267786ms - id: 36 request: proto: HTTP/1.1 @@ -1815,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/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -1825,29 +1549,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 46f05031-dbc6-40c2-a1ff-c43306d8e4f6 + - f29c6c26-33d6-4fde-9b5a-ed755a4edfbf status: 404 Not Found code: 404 - duration: 29.435693ms + duration: 28.107967ms - id: 37 request: proto: HTTP/1.1 @@ -1864,7 +1580,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -1874,29 +1590,21 @@ interactions: trailer: {} content_length: 707 uncompressed: false - 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"}' + body: '{"id":"fdb1042e-3f37-4924-b39b-bc62b24a7888", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_15k", "size":60000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.476245Z", "updated_at":"2025-10-29T22:53:55.896906Z", "references":[{"id":"68fbb8ee-6f99-414f-8b41-644b2e6885ae", "product_resource_type":"instance_server", "product_resource_id":"261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "created_at":"2025-10-29T22:53:46.476245Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "707" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dbfe66ce-5a04-4575-bafc-8251572333ce + - f3e0600e-6ab6-419c-92e1-8579edbb9e38 status: 200 OK code: 200 - duration: 95.714781ms + duration: 91.69359ms - id: 38 request: proto: HTTP/1.1 @@ -1913,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/ae857bb7-e464-4239-8285-58a9cf9bcea1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/user_data method: GET response: proto: HTTP/2.0 @@ -1923,29 +1631,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:12 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c9b0d59b-bb7a-48ed-95ef-210f234dda04 + - 15921715-f2ad-44a9-9547-4decbf8e33f4 status: 200 OK code: 200 - duration: 101.701671ms + duration: 100.525143ms - id: 39 request: proto: HTTP/1.1 @@ -1962,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/ae857bb7-e464-4239-8285-58a9cf9bcea1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/private_nics method: GET response: proto: HTTP/2.0 @@ -1972,33 +1672,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:12 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f86dd3d3-d7f0-4bcd-9981-d77716c881ac + - ea5577ad-6a3c-40ef-878a-f409a9aef04d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 85.376256ms + duration: 98.899243ms - id: 40 request: proto: HTTP/1.1 @@ -2015,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/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -2023,31 +1715,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + 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":"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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:50.903354+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1948" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 589a3613-d5ec-44f7-95cc-5e936b7f15a1 + - 400dc749-a15c-4c9a-afe7-0ee0ad2a2ef6 status: 200 OK code: 200 - duration: 138.913286ms + duration: 149.480661ms - id: 41 request: proto: HTTP/1.1 @@ -2064,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/instance/v1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -2074,29 +1758,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bf5cfb59-9ab5-4894-9d00-2942f0614617 + - 34e0ee5f-2330-4297-8aac-d040bf6c836c status: 404 Not Found code: 404 - duration: 23.281921ms + duration: 29.790954ms - id: 42 request: proto: HTTP/1.1 @@ -2113,7 +1789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -2123,29 +1799,21 @@ interactions: trailer: {} content_length: 707 uncompressed: false - 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"}' + body: '{"id":"fdb1042e-3f37-4924-b39b-bc62b24a7888", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_15k", "size":60000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.476245Z", "updated_at":"2025-10-29T22:53:55.896906Z", "references":[{"id":"68fbb8ee-6f99-414f-8b41-644b2e6885ae", "product_resource_type":"instance_server", "product_resource_id":"261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "created_at":"2025-10-29T22:53:46.476245Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "707" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b739a467-7534-4778-b01a-76a45fc324ce + - 808e029f-5744-4cd7-aef9-9bb6e0ecce26 status: 200 OK code: 200 - duration: 95.718969ms + duration: 85.165635ms - id: 43 request: proto: HTTP/1.1 @@ -2162,7 +1830,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/user_data method: GET response: proto: HTTP/2.0 @@ -2172,29 +1840,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:12 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae2bb670-1fb5-4610-a9d5-df87cacd26b6 + - 83198cd3-4dcc-43e4-8cf6-3aa0b6a00b18 status: 200 OK code: 200 - duration: 107.034164ms + duration: 89.937276ms - id: 44 request: proto: HTTP/1.1 @@ -2211,7 +1871,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/private_nics method: GET response: proto: HTTP/2.0 @@ -2221,33 +1881,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:12 GMT + - Wed, 29 Oct 2025 22:53:57 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9d545161-4644-48d3-8b80-67245adfb0fa + - af4cfed6-a3e3-4d73-96f0-340dfec46a85 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 95.443643ms + duration: 114.001472ms - id: 45 request: proto: HTTP/1.1 @@ -2264,7 +1916,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -2272,31 +1924,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + 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":"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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:50.903354+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1948" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 19a0095e-7de9-4a6f-ae51-09e92fe56cd9 + - 2b46bac2-90df-4885-8456-625cda388087 status: 200 OK code: 200 - duration: 134.545572ms + duration: 129.714423ms - id: 46 request: proto: HTTP/1.1 @@ -2313,7 +1957,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -2321,31 +1965,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + 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":"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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:50.903354+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1948" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8528338c-1f3a-4153-996a-798f91b5bbcb + - f9c9da2d-da6e-4ec1-afcb-30aa9a989a51 status: 200 OK code: 200 - duration: 168.369679ms + duration: 146.604103ms - id: 47 request: proto: HTTP/1.1 @@ -2364,7 +2000,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/ae857bb7-e464-4239-8285-58a9cf9bcea1/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/action method: POST response: proto: HTTP/2.0 @@ -2374,31 +2010,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "48378f20-c4a4-4f5f-bff0-233e11a51d86", "description": "server_terminate", "status": "pending", "href_from": "/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/action", "href_result": "/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "started_at": "2025-10-29T22:53:58.144321+00:00", "terminated_at": null, "progress": 0, "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:13 GMT + - Wed, 29 Oct 2025 22:53:58 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/708e6906-d491-4e1e-bdd0-7d0ca347a80a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/48378f20-c4a4-4f5f-bff0-233e11a51d86 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 36ed994a-1c3d-4107-810f-b8c0b2ea3056 + - 1596574c-6164-44df-b3d5-13d1623f8f00 status: 202 Accepted code: 202 - duration: 304.0727ms + duration: 289.869684ms - id: 48 request: proto: HTTP/1.1 @@ -2415,7 +2043,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -2423,31 +2051,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + 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-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"}}' + body: '{"server": {"id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f", "name": "tf-tests-instance-block-external-root-volume", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-block-external-root-volume", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fdb1042e-3f37-4924-b39b-bc62b24a7888", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:46.318444+00:00", "modification_date": "2025-10-29T22:53:57.916342+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1910" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1911" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - de013232-9b9e-4b22-b3eb-5bb92c2753e1 + - 787d6111-b88a-4653-8f82-66b1c308cd90 status: 200 OK code: 200 - duration: 114.87569ms + duration: 147.927718ms - id: 49 request: proto: HTTP/1.1 @@ -2464,7 +2084,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -2474,29 +2094,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7184b309-6457-4b5b-a3ff-f7f5ccfafcc5 + - becceb61-e52b-493b-8316-0948d569ec46 status: 404 Not Found code: 404 - duration: 48.350523ms + duration: 49.66229ms - id: 50 request: proto: HTTP/1.1 @@ -2513,7 +2125,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -2523,29 +2135,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3c7a37ec-7ebd-4740-b0b3-50a4c074d173 + - 1a59d71a-78a6-4e8e-b67b-9c44f853d160 status: 404 Not Found code: 404 - duration: 25.560993ms + duration: 34.910176ms - id: 51 request: proto: HTTP/1.1 @@ -2562,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/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -2572,29 +2176,21 @@ interactions: trailer: {} content_length: 500 uncompressed: false - 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"}' + body: '{"id":"fdb1042e-3f37-4924-b39b-bc62b24a7888", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_15k", "size":60000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:46.476245Z", "updated_at":"2025-10-29T22:54:00.104533Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:54:00.104533Z", "zone":"fr-par-1"}' headers: Content-Length: - "500" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6f691d96-ed35-46cd-a6fe-ed0642da600d + - dc3f6714-5b7e-4df1-b818-d521111efa99 status: 200 OK code: 200 - duration: 90.9089ms + duration: 95.712597ms - id: 52 request: proto: HTTP/1.1 @@ -2611,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/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: DELETE response: proto: HTTP/2.0 @@ -2623,25 +2219,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 907539e3-3cbb-45b1-9aaa-f5b02aa1d987 + - 486dcd75-c876-4c70-b7b9-5a09c294c82a status: 204 No Content code: 204 - duration: 136.145748ms + duration: 177.737721ms - id: 53 request: proto: HTTP/1.1 @@ -2658,7 +2246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f method: GET response: proto: HTTP/2.0 @@ -2668,29 +2256,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 642f84d6-f85d-4dfa-a24e-87ec9d4a1442 + - d3e3d6e8-a735-4b64-9497-22efa92b037f status: 404 Not Found code: 404 - duration: 58.245587ms + duration: 52.38429ms - id: 54 request: proto: HTTP/1.1 @@ -2707,7 +2287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -2717,29 +2297,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bac644f4-51f4-4698-938a-331deb31c45c + - 47c1a07f-d242-46d3-9cc4-c59927a79175 status: 404 Not Found code: 404 - duration: 30.832553ms + duration: 30.516682ms - id: 55 request: proto: HTTP/1.1 @@ -2756,7 +2328,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 method: GET response: proto: HTTP/2.0 @@ -2766,26 +2338,18 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"fdb1042e-3f37-4924-b39b-bc62b24a7888","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:03:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c2bb80f9-ccbd-457f-8749-6d311c41caf8 + - 0a4d6069-4cb1-427c-a9ee-58757772b002 status: 404 Not Found code: 404 - duration: 68.232683ms + duration: 76.26854ms diff --git a/internal/services/instance/testdata/server-block-external.cassette.yaml b/internal/services/instance/testdata/server-block-external.cassette.yaml index cac5bfe40..42883da66 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: 148 + content_length: 147 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-wizardly-bassi","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":10000000000},"tags":[]}' + body: '{"name":"tf-volume-great-mcnulty","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":10000000000},"tags":[]}' form: {} headers: Content-Type: @@ -27,31 +27,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 420 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:30.757397Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "421" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "420" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:42 GMT + - Wed, 29 Oct 2025 22:54: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: - - 9171d1dc-e301-4b16-9674-9393013e2229 + - e5383727-ca96-4e7f-802f-c3785bd55a0a status: 200 OK code: 200 - duration: 657.193483ms + duration: 299.49534ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +60,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -76,31 +68,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 421 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:30.757397Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "421" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:42 GMT + - Wed, 29 Oct 2025 22:54: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: - - 0cfba883-c6cf-43ac-bc33-8612c3658c99 + - 19212b1d-c312-4313-97ae-ca2b1ebcdb31 status: 200 OK code: 200 - duration: 110.179764ms + duration: 206.762949ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +101,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -125,31 +109,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 421 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:30.757397Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "421" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:42 GMT + - Wed, 29 Oct 2025 22:54: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: - - 76ba6281-386e-4ef1-9ba6-0ac1174c0fad + - cf16e584-78af-4d17-a07a-38a85d4f0bba status: 200 OK code: 200 - duration: 99.333281ms + duration: 99.083548ms - id: 3 request: proto: HTTP/1.1 @@ -162,7 +138,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -174,35 +152,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:42 GMT + - Wed, 29 Oct 2025 22:54:31 GMT Link: - ; rel="next",; 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: - - 1525af71-aeab-4c92-9d42-ebbfca43f7d0 + - b88388e8-403d-4954-86c2-8fd1431ebb9a X-Total-Count: - "68" status: 200 OK code: 200 - duration: 41.025826ms + duration: 187.480092ms - id: 4 request: proto: HTTP/1.1 @@ -215,7 +185,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -229,33 +201,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:42 GMT + - Wed, 29 Oct 2025 22:54:31 GMT Link: - ; rel="first",; rel="previous",; 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: - - 10a78f18-0cf2-4173-a72d-da914ca25228 + - 3a0d608d-b910-41bb-9b1d-2f4bcafc67db X-Total-Count: - "68" status: 200 OK code: 200 - duration: 41.545412ms + duration: 42.145649ms - id: 5 request: proto: HTTP/1.1 @@ -272,7 +236,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -282,29 +246,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "601ae645-7edb-49d8-a59a-636a130cd8ca"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:42 GMT + - Wed, 29 Oct 2025 22:54: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: - - ee12e644-4966-43e2-8838-fc05671cc356 + - fc41841b-624a-4996-b5ca-08ba0fd7fb27 status: 404 Not Found code: 404 - duration: 32.641138ms + duration: 28.757885ms - id: 6 request: proto: HTTP/1.1 @@ -321,7 +277,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -329,31 +285,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 421 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:30.757397Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "421" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:42 GMT + - Wed, 29 Oct 2025 22:54: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: - - 2c0dbd23-9659-4bbf-bdad-db3fca9c34ec + - d2c1a43a-1eeb-4776-9596-6c5a576d0233 status: 200 OK code: 200 - duration: 98.752551ms + duration: 161.413259ms - id: 7 request: proto: HTTP/1.1 @@ -366,7 +314,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -378,43 +334,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:42 GMT + - Wed, 29 Oct 2025 22:54: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: - - 92188acd-f0cc-444e-a6c9-aeda7f351d9c + - a8f0b0e2-d96b-472b-a646-7b1acc8a45b5 status: 200 OK code: 200 - duration: 55.987027ms + duration: 36.805112ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 316 + content_length: 314 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-cranky-jepsen","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false},"1":{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca","volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -429,33 +377,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1887 + content_length: 1929 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:32.292280+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1929" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:44 GMT + - Wed, 29 Oct 2025 22:54:33 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 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: - - bb12ee6b-108a-4fc7-88da-11f9c8286059 + - 4eea5f2a-8a16-4c43-ae16-07d8223353a3 status: 201 Created code: 201 - duration: 2.023973653s + duration: 1.626570605s - id: 9 request: proto: HTTP/1.1 @@ -472,7 +412,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -480,31 +420,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1887 + content_length: 1883 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:32.292280+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1883" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:44 GMT + - Wed, 29 Oct 2025 22:54:33 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: - - f92e74de-137b-428b-a394-c2c748ca26b2 + - d30dd54d-203d-4fbc-8817-d914c4245bfb status: 200 OK code: 200 - duration: 155.804337ms + duration: 272.63741ms - id: 10 request: proto: HTTP/1.1 @@ -521,7 +453,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -529,31 +461,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1887 + content_length: 1883 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:32.292280+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1883" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:44 GMT + - Wed, 29 Oct 2025 22:54:33 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: - - ccd5bf3d-d738-4832-9b46-0d6f58d855c1 + - 5d5a1a68-21c1-4616-bae4-08f9ceb43e74 status: 200 OK code: 200 - duration: 150.132675ms + duration: 170.215199ms - id: 11 request: proto: HTTP/1.1 @@ -570,7 +494,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -580,29 +504,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:32.426100Z", "updated_at":"2025-10-29T22:54:32.426100Z", "references":[{"id":"994b1006-7be1-4b03-8814-a15584ff209d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.426100Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:20:45 GMT + - Wed, 29 Oct 2025 22:54:33 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: - - 27e44d89-2eb2-467b-987c-0a505dffbc77 + - f92cb0a4-9d14-48a9-95e1-0e67325b4b0f status: 200 OK code: 200 - duration: 104.646071ms + duration: 209.651532ms - id: 12 request: proto: HTTP/1.1 @@ -619,7 +535,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -627,31 +543,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 654 + content_length: 653 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:32.761288Z", "references":[{"id":"e0dfe14d-dbaa-469a-ab9f-94c3efafff40", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.761288Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "654" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "653" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:45 GMT + - Wed, 29 Oct 2025 22:54: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: - - 66c90cb2-50b9-48a8-97f9-3a5df8c9119b + - d67416b1-a960-4675-9772-c19d2b5832dc status: 200 OK code: 200 - duration: 78.870748ms + duration: 80.405472ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,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/16b168a8-583a-44dc-b23c-e947bfbdc887/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/action method: POST response: proto: HTTP/2.0 @@ -680,31 +588,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "9cf9e7d6-5be5-41da-9d95-01b002158132", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/action", "href_result": "/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "started_at": "2025-10-29T22:54:34.318973+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:45 GMT + - Wed, 29 Oct 2025 22:54:34 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6c8e25ff-f391-4d8a-849f-191b89ba1ca4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9cf9e7d6-5be5-41da-9d95-01b002158132 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: - - 522212cf-6178-4626-8f1b-efc7124cb53d + - 4d93c121-4e58-4ca7-a7e9-60030e6f40ae status: 202 Accepted code: 202 - duration: 288.879575ms + duration: 238.94571ms - id: 14 request: proto: HTTP/1.1 @@ -721,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/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -729,31 +629,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1909 + content_length: 1905 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:34.134607+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1909" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1905" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:45 GMT + - Wed, 29 Oct 2025 22:54: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: - - eab7493b-7f4b-4217-92a4-e4fb18105c0c + - f06745b0-ff80-460d-8571-ea58ebb6dc3a status: 200 OK code: 200 - duration: 138.012941ms + duration: 230.084871ms - id: 15 request: proto: HTTP/1.1 @@ -770,7 +662,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -778,31 +670,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2043 + content_length: 2039 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2043" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2039" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:50 GMT + - Wed, 29 Oct 2025 22:54: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: - - 48cfc257-aefc-4639-a8f0-146f4a232447 + - 6c81e4ff-33d4-4e75-b75b-ba729b774983 status: 200 OK code: 200 - duration: 143.595617ms + duration: 208.766771ms - id: 16 request: proto: HTTP/1.1 @@ -819,7 +703,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -827,31 +711,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2043 + content_length: 2085 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2043" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2085" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:50 GMT + - Wed, 29 Oct 2025 22:54: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: - - 2991d7df-a4cb-4df6-8b98-4d672609d74f + - ae4d723a-d1fa-45eb-aab4-a28c64bf7e1c status: 200 OK code: 200 - duration: 145.159856ms + duration: 166.720657ms - id: 17 request: proto: HTTP/1.1 @@ -868,7 +744,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -878,29 +754,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:50 GMT + - Wed, 29 Oct 2025 22:54: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: - - d093ed3f-fb01-4b04-8fda-1d84ecff7e23 + - 1532465e-d7de-4930-9945-fbd42ef7e541 status: 404 Not Found code: 404 - duration: 32.385869ms + duration: 26.164357ms - id: 18 request: proto: HTTP/1.1 @@ -917,7 +785,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -927,29 +795,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:32.426100Z", "updated_at":"2025-10-29T22:54:32.426100Z", "references":[{"id":"994b1006-7be1-4b03-8814-a15584ff209d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.426100Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:20:51 GMT + - Wed, 29 Oct 2025 22:54: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: - - c572dced-5295-44c1-8eeb-018d4b508b39 + - 25bfeca4-b058-4a26-8472-f4906ac4b66b status: 200 OK code: 200 - duration: 78.108627ms + duration: 113.42632ms - id: 19 request: proto: HTTP/1.1 @@ -966,7 +826,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/user_data method: GET response: proto: HTTP/2.0 @@ -976,29 +836,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:20:51 GMT + - Wed, 29 Oct 2025 22:54: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: - - 798c4d8b-c8cf-4921-80af-757db990d24e + - aed044e0-8e26-4960-b11e-2d749ada6a26 status: 200 OK code: 200 - duration: 89.352486ms + duration: 117.552987ms - id: 20 request: proto: HTTP/1.1 @@ -1015,7 +867,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/private_nics method: GET response: proto: HTTP/2.0 @@ -1025,33 +877,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:20:51 GMT + - Wed, 29 Oct 2025 22:54:40 GMT Link: - - ; rel="last" + - ; 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: - - 4c9637a8-7ab6-46d2-8d3d-a211d86fc0e5 + - 3c201200-4468-414f-b4e9-14fb34315c4d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.62103ms + duration: 196.130543ms - id: 21 request: proto: HTTP/1.1 @@ -1068,7 +912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -1076,31 +920,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 654 + content_length: 653 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:32.761288Z", "references":[{"id":"e0dfe14d-dbaa-469a-ab9f-94c3efafff40", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.761288Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "654" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "653" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:51 GMT + - Wed, 29 Oct 2025 22:54: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: - - e164cac4-fd0b-4427-943b-5002b34399cf + - d9e13032-90cb-422f-98c7-d48dd4c4b320 status: 200 OK code: 200 - duration: 75.631034ms + duration: 132.592379ms - id: 22 request: proto: HTTP/1.1 @@ -1117,7 +953,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -1125,31 +961,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2043 + content_length: 2039 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2043" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2039" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:51 GMT + - Wed, 29 Oct 2025 22:54: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: - - 310ff39d-1513-47ac-8244-367208940421 + - 38c197d3-9ed9-4002-8e51-37a73332ea88 status: 200 OK code: 200 - duration: 148.141917ms + duration: 149.359754ms - id: 23 request: proto: HTTP/1.1 @@ -1166,7 +994,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -1176,29 +1004,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:51 GMT + - Wed, 29 Oct 2025 22:54: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: - - 41292443-9ff1-4ac1-ba89-dc1aac620a4b + - a6b0c449-91c8-4d66-9655-4149e3362387 status: 404 Not Found code: 404 - duration: 32.900385ms + duration: 27.023893ms - id: 24 request: proto: HTTP/1.1 @@ -1215,7 +1035,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -1225,29 +1045,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:32.426100Z", "updated_at":"2025-10-29T22:54:32.426100Z", "references":[{"id":"994b1006-7be1-4b03-8814-a15584ff209d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.426100Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:20:51 GMT + - Wed, 29 Oct 2025 22:54: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: - - a5d03506-8ac8-42ec-9450-d11f8b066da9 + - fff694a0-623f-42d0-80f6-91189cefb928 status: 200 OK code: 200 - duration: 87.49636ms + duration: 121.550382ms - id: 25 request: proto: HTTP/1.1 @@ -1264,7 +1076,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/user_data method: GET response: proto: HTTP/2.0 @@ -1274,29 +1086,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:20:51 GMT + - Wed, 29 Oct 2025 22:54: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: - - 586125af-9d03-4088-9127-ed0ae9c4c978 + - 8da5f5a9-a914-4ed0-9ab8-727ef8e18856 status: 200 OK code: 200 - duration: 92.843433ms + duration: 115.158129ms - id: 26 request: proto: HTTP/1.1 @@ -1313,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/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/private_nics method: GET response: proto: HTTP/2.0 @@ -1323,33 +1127,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:20:51 GMT + - Wed, 29 Oct 2025 22:54:41 GMT Link: - - ; rel="last" + - ; 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: - - bbc8278a-2e22-45eb-ba7c-688164e19573 + - bdc83c20-f08f-4138-9c09-ee6ce8fb35dd X-Total-Count: - "0" status: 200 OK code: 200 - duration: 104.376305ms + duration: 197.188431ms - id: 27 request: proto: HTTP/1.1 @@ -1366,7 +1162,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -1374,31 +1170,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 654 + content_length: 653 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:32.761288Z", "references":[{"id":"e0dfe14d-dbaa-469a-ab9f-94c3efafff40", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.761288Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "654" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "653" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:52 GMT + - Wed, 29 Oct 2025 22:54: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: - - 47a8ec62-d798-4ebf-981a-086a99974a41 + - 77231634-326e-4ab5-8f5b-7aa6430b0d81 status: 200 OK code: 200 - duration: 127.131755ms + duration: 126.854721ms - id: 28 request: proto: HTTP/1.1 @@ -1415,7 +1203,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -1423,31 +1211,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2043 + content_length: 2085 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2043" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2085" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:52 GMT + - Wed, 29 Oct 2025 22:54: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: - - 3fc0ed8a-e671-4148-81aa-7c27ea3c698a + - 70e5410c-88c3-43c8-bb36-c808e0c8850c status: 200 OK code: 200 - duration: 159.644592ms + duration: 148.440145ms - id: 29 request: proto: HTTP/1.1 @@ -1464,7 +1244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -1474,29 +1254,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:52 GMT + - Wed, 29 Oct 2025 22:54: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: - - 91735ee9-cd7a-472c-89e1-daefe6e46596 + - dcb2e60b-41bd-4445-bb9c-28a4f70a4a59 status: 404 Not Found code: 404 - duration: 25.90746ms + duration: 93.853281ms - id: 30 request: proto: HTTP/1.1 @@ -1513,7 +1285,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -1523,29 +1295,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:32.426100Z", "updated_at":"2025-10-29T22:54:32.426100Z", "references":[{"id":"994b1006-7be1-4b03-8814-a15584ff209d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.426100Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:20:52 GMT + - Wed, 29 Oct 2025 22:54: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: - - a7ef51b2-fc99-48d4-856e-3d1223a5c1ab + - 94c3b174-2508-4281-81f1-beb08041a2ce status: 200 OK code: 200 - duration: 98.026378ms + duration: 87.457631ms - id: 31 request: proto: HTTP/1.1 @@ -1562,7 +1326,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/user_data method: GET response: proto: HTTP/2.0 @@ -1572,29 +1336,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:20:52 GMT + - Wed, 29 Oct 2025 22:54: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: - - 7a6c8f13-e2a3-4bfe-a0a4-43259bde9488 + - a81ad1d3-4854-42d2-bd25-eb74e1c840be status: 200 OK code: 200 - duration: 315.301334ms + duration: 102.34011ms - id: 32 request: proto: HTTP/1.1 @@ -1611,7 +1367,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/private_nics method: GET response: proto: HTTP/2.0 @@ -1621,33 +1377,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:20:52 GMT + - Wed, 29 Oct 2025 22:54:42 GMT Link: - - ; rel="last" + - ; 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: - - 93fb2941-ef57-4eea-a8fa-bb518add8554 + - 9947375f-63ee-410d-a208-c716da0d8570 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 115.208059ms + duration: 113.008149ms - id: 33 request: proto: HTTP/1.1 @@ -1664,7 +1412,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -1672,50 +1420,42 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2043 + content_length: 2085 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2043" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2085" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:53 GMT + - Wed, 29 Oct 2025 22:54: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: - - 8bacae26-8384-4b16-973c-df26074cf1d0 + - b5c24835-cce7-4e9f-af56-a4614fe0727f status: 200 OK code: 200 - duration: 132.171942ms + duration: 157.579925ms - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 109 + content_length: 107 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volumes":{"0":{"id":"eb4df47d-a115-460d-9120-c57d1ef11833","boot":false,"name":"tf-vol-optimistic-kilby"}}}' + body: '{"volumes":{"0":{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc","boot":false,"name":"tf-vol-zealous-wilson"}}}' 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/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: PATCH response: proto: HTTP/2.0 @@ -1723,31 +1463,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1904 + 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":"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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1904" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1900" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:53 GMT + - Wed, 29 Oct 2025 22:54: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: - - a794f28e-d24d-47ac-b21f-6b9c0bed7e23 + - def03f35-06ae-4f70-8afe-0a1ef0dc32a7 status: 200 OK code: 200 - duration: 365.083458ms + duration: 287.384203ms - id: 35 request: proto: HTTP/1.1 @@ -1764,7 +1496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -1772,31 +1504,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1904 + 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":"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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1904" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1900" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:53 GMT + - Wed, 29 Oct 2025 22:54:43 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: - - ce007064-b189-4d66-b155-51873db3ed05 + - 8f9700d1-81ac-4ba1-858b-2d9bf71f69f0 status: 200 OK code: 200 - duration: 180.266446ms + duration: 179.988859ms - id: 36 request: proto: HTTP/1.1 @@ -1813,7 +1537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -1821,31 +1545,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1904 + content_length: 1946 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1904" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1946" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:53 GMT + - Wed, 29 Oct 2025 22:54:43 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: - - f15aba18-241d-4d76-a7ad-97ef0d642e72 + - c37f8f61-396d-45b6-96e0-de5ddb10b237 status: 200 OK code: 200 - duration: 142.782581ms + duration: 147.293911ms - id: 37 request: proto: HTTP/1.1 @@ -1862,7 +1578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -1872,29 +1588,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:53 GMT + - Wed, 29 Oct 2025 22:54:43 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: - - 82eb412e-8347-4c6f-9f07-03ae4be324a1 + - 82d68f00-8948-41e4-8ef9-9e649679747e status: 404 Not Found code: 404 - duration: 32.638644ms + duration: 29.418351ms - id: 38 request: proto: HTTP/1.1 @@ -1911,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/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -1921,29 +1629,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:32.426100Z", "updated_at":"2025-10-29T22:54:32.426100Z", "references":[{"id":"994b1006-7be1-4b03-8814-a15584ff209d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.426100Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:20:53 GMT + - Wed, 29 Oct 2025 22:54:43 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: - - 247553c0-3d42-4486-b58d-4298927ce6b7 + - 885ab54d-cb1d-41b4-8140-df6a9cd0c82e status: 200 OK code: 200 - duration: 88.575708ms + duration: 126.120588ms - id: 39 request: proto: HTTP/1.1 @@ -1960,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/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/user_data method: GET response: proto: HTTP/2.0 @@ -1970,29 +1670,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:20:54 GMT + - Wed, 29 Oct 2025 22:54:43 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: - - f2e3c6ee-cd6d-45d6-af8c-a9aecda5f2a6 + - 38cd2c49-71ae-4fbf-b3dc-0f423003215f status: 200 OK code: 200 - duration: 121.429224ms + duration: 121.330391ms - id: 40 request: proto: HTTP/1.1 @@ -2009,7 +1701,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/private_nics method: GET response: proto: HTTP/2.0 @@ -2019,33 +1711,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:20:54 GMT + - Wed, 29 Oct 2025 22:54:43 GMT Link: - - ; rel="last" + - ; 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: - - 58f34452-bf90-401b-bd49-5b4ec39d53a9 + - c0fa7808-e2ff-414c-b567-3458964d1dca X-Total-Count: - "0" status: 200 OK code: 200 - duration: 90.80793ms + duration: 90.375688ms - id: 41 request: proto: HTTP/1.1 @@ -2062,7 +1746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -2070,31 +1754,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 655 + content_length: 654 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:32.761288Z", "references":[{"id":"e0dfe14d-dbaa-469a-ab9f-94c3efafff40", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.761288Z", "type":"exclusive", "status":"detaching"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "655" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "654" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:54 GMT + - Wed, 29 Oct 2025 22:54:43 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: - - 67fb39f6-18f2-46be-af2a-ad19aaff7e7e + - 4d06bd06-0a2d-46b4-bd84-239417fcce5e status: 200 OK code: 200 - duration: 82.889958ms + duration: 90.239634ms - id: 42 request: proto: HTTP/1.1 @@ -2111,7 +1787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -2119,31 +1795,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1904 + content_length: 1946 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1904" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1946" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:54 GMT + - Wed, 29 Oct 2025 22:54: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: - - 32029547-7e2e-4a5d-821e-410857860be1 + - 8db02dc4-89fc-4dd7-b34e-9b53b967fcdf status: 200 OK code: 200 - duration: 144.931548ms + duration: 209.346808ms - id: 43 request: proto: HTTP/1.1 @@ -2160,7 +1828,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -2170,29 +1838,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:54 GMT + - Wed, 29 Oct 2025 22:54: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: - - d35f31ab-cca6-41e3-809c-8dacd241c93f + - a9096cc8-932f-4aa5-b4d3-53fe279d080a status: 404 Not Found code: 404 - duration: 30.778179ms + duration: 27.79749ms - id: 44 request: proto: HTTP/1.1 @@ -2209,7 +1869,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -2219,29 +1879,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:32.426100Z", "updated_at":"2025-10-29T22:54:32.426100Z", "references":[{"id":"994b1006-7be1-4b03-8814-a15584ff209d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.426100Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:20:54 GMT + - Wed, 29 Oct 2025 22:54: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: - - 2b62ce77-52a7-4799-9f82-347089d7c2e3 + - 6d6fe48e-9e50-4cf0-a97e-1ab2e0135ad2 status: 200 OK code: 200 - duration: 83.179723ms + duration: 157.714058ms - id: 45 request: proto: HTTP/1.1 @@ -2258,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/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/user_data method: GET response: proto: HTTP/2.0 @@ -2268,29 +1920,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:20:54 GMT + - Wed, 29 Oct 2025 22:54: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: - - 23e2d055-7818-4558-bd9f-c62c21fc6118 + - 9808b3b3-17ce-44a2-a00a-519dd8d3bddc status: 200 OK code: 200 - duration: 107.512506ms + duration: 118.657534ms - id: 46 request: proto: HTTP/1.1 @@ -2307,7 +1951,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/private_nics method: GET response: proto: HTTP/2.0 @@ -2317,33 +1961,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:20:54 GMT + - Wed, 29 Oct 2025 22:54:44 GMT Link: - - ; rel="last" + - ; 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: - - 57282e5f-8ebb-4de7-b4ba-cb0729928e21 + - b19454e8-a360-4ab6-bbda-9b365567d2e3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 99.915226ms + duration: 83.729189ms - id: 47 request: proto: HTTP/1.1 @@ -2360,7 +1996,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -2368,31 +2004,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 655 + content_length: 654 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:32.761288Z", "references":[{"id":"e0dfe14d-dbaa-469a-ab9f-94c3efafff40", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.761288Z", "type":"exclusive", "status":"detaching"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "655" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "654" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:20:59 GMT + - Wed, 29 Oct 2025 22:54:49 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: - - e129b899-4f1a-4cdf-80ef-2d45831100e7 + - 6ab08cd3-b770-4978-8129-d82b22964fbf status: 200 OK code: 200 - duration: 92.839096ms + duration: 80.507716ms - id: 48 request: proto: HTTP/1.1 @@ -2409,7 +2037,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -2417,31 +2045,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 655 + content_length: 654 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:32.761288Z", "references":[{"id":"e0dfe14d-dbaa-469a-ab9f-94c3efafff40", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.761288Z", "type":"exclusive", "status":"detaching"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "655" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "654" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:04 GMT + - Wed, 29 Oct 2025 22:54: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: - - f589df8e-cf46-4dfb-b4fe-616f9121db09 + - d721fb7c-f060-4b51-bf41-68584a45254d status: 200 OK code: 200 - duration: 126.897777ms + duration: 86.715647ms - id: 49 request: proto: HTTP/1.1 @@ -2458,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/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -2466,31 +2086,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 655 + content_length: 654 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:32.761288Z", "references":[{"id":"e0dfe14d-dbaa-469a-ab9f-94c3efafff40", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.761288Z", "type":"exclusive", "status":"detaching"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "655" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "654" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:09 GMT + - Wed, 29 Oct 2025 22:54: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: - - 71c7f5b8-2be5-47de-99f2-1f533c38f908 + - 4764dcf5-c3c5-43c7-afa9-f97152a6bda0 status: 200 OK code: 200 - duration: 88.391303ms + duration: 80.05416ms - id: 50 request: proto: HTTP/1.1 @@ -2507,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/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -2515,31 +2127,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 655 + content_length: 654 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:32.761288Z", "references":[{"id":"e0dfe14d-dbaa-469a-ab9f-94c3efafff40", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.761288Z", "type":"exclusive", "status":"detaching"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "655" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "654" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:14 GMT + - Wed, 29 Oct 2025 22:55: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: - - 8da6149b-5d8f-4283-bf51-8173464c429e + - 4073feae-d068-4020-aacd-599bc14d2d75 status: 200 OK code: 200 - duration: 115.710917ms + duration: 83.517749ms - id: 51 request: proto: HTTP/1.1 @@ -2556,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/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -2564,31 +2168,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 655 + content_length: 654 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:32.761288Z", "references":[{"id":"e0dfe14d-dbaa-469a-ab9f-94c3efafff40", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.761288Z", "type":"exclusive", "status":"detaching"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "655" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "654" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:19 GMT + - Wed, 29 Oct 2025 22:55: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: - - 0921b3bf-4b9b-45fd-96d7-f6b32659ef3e + - 7040dbff-ac72-43cf-ab6f-7d4cd7b13894 status: 200 OK code: 200 - duration: 92.919489ms + duration: 100.615442ms - id: 52 request: proto: HTTP/1.1 @@ -2605,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/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -2613,31 +2209,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 655 + content_length: 654 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:32.761288Z", "references":[{"id":"e0dfe14d-dbaa-469a-ab9f-94c3efafff40", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.761288Z", "type":"exclusive", "status":"detaching"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "655" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "654" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:25 GMT + - Wed, 29 Oct 2025 22:55: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: - - a28bab01-76b9-4656-af50-2a82bed96e8d + - 69f483a5-1a04-41ea-bacc-e3592f3ca10d status: 200 OK code: 200 - duration: 95.074036ms + duration: 76.31968ms - id: 53 request: proto: HTTP/1.1 @@ -2654,7 +2242,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -2662,31 +2250,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 655 + content_length: 654 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:32.761288Z", "references":[{"id":"e0dfe14d-dbaa-469a-ab9f-94c3efafff40", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.761288Z", "type":"exclusive", "status":"detaching"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "655" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "654" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:30 GMT + - Wed, 29 Oct 2025 22:55: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: - - 05127b9b-a26f-493c-ae6c-f9ef1f5b2ed0 + - 09eb8ee7-ceea-403c-9f46-4a836c37485c status: 200 OK code: 200 - duration: 98.245623ms + duration: 85.993572ms - id: 54 request: proto: HTTP/1.1 @@ -2703,7 +2283,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -2711,31 +2291,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 655 + content_length: 654 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:54:32.761288Z", "references":[{"id":"e0dfe14d-dbaa-469a-ab9f-94c3efafff40", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.761288Z", "type":"exclusive", "status":"detaching"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "655" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "654" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:35 GMT + - Wed, 29 Oct 2025 22:55:24 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: - - 2649638b-f16d-4fac-af3f-826b613eea07 + - e8f7ca26-3919-4d28-98b6-e76ffcb98b85 status: 200 OK code: 200 - duration: 93.014489ms + duration: 95.829167ms - id: 55 request: proto: HTTP/1.1 @@ -2752,7 +2324,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -2760,31 +2332,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 446 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:55:29.549511Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:29.549511Z", "zone":"fr-par-1"}' headers: Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "446" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:40 GMT + - Wed, 29 Oct 2025 22:55:29 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: - - f31025d3-b4fc-4634-945b-4ad1117823d8 + - ddfa4354-11d1-4146-aece-7166463bcb08 status: 200 OK code: 200 - duration: 83.645562ms + duration: 84.184891ms - id: 56 request: proto: HTTP/1.1 @@ -2801,7 +2365,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -2809,31 +2373,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 446 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:55:29.549511Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:29.549511Z", "zone":"fr-par-1"}' headers: Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "446" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:40 GMT + - Wed, 29 Oct 2025 22:55: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: - - a94df8ec-6bd5-4918-81f6-1cab83555deb + - 29dd7768-b61a-4e3c-b126-34fec0806782 status: 200 OK code: 200 - duration: 87.852073ms + duration: 91.329533ms - id: 57 request: proto: HTTP/1.1 @@ -2850,7 +2406,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -2858,31 +2414,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1904 + content_length: 1946 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1904" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1946" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:40 GMT + - Wed, 29 Oct 2025 22:55: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: - - d4b32c7b-3c4f-430d-b685-b4b4b1bc4047 + - 056b01cf-b81d-4cfc-b33c-8332f8eb6a5e status: 200 OK code: 200 - duration: 153.318619ms + duration: 147.981096ms - id: 58 request: proto: HTTP/1.1 @@ -2899,7 +2447,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -2909,29 +2457,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:40 GMT + - Wed, 29 Oct 2025 22:55: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: - - e644ec15-9c59-44b2-93f7-45aaad7d5242 + - bc89cd4a-24e5-45e6-a051-641fbe21f0e0 status: 404 Not Found code: 404 - duration: 32.443388ms + duration: 34.815667ms - id: 59 request: proto: HTTP/1.1 @@ -2948,7 +2488,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -2958,29 +2498,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:32.426100Z", "updated_at":"2025-10-29T22:54:32.426100Z", "references":[{"id":"994b1006-7be1-4b03-8814-a15584ff209d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.426100Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:21:40 GMT + - Wed, 29 Oct 2025 22:55: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: - - 9dee3e17-b3ce-4b04-b27c-212331e1f5df + - 1f801a7b-08d0-4f71-859a-78213e8c9224 status: 200 OK code: 200 - duration: 86.72732ms + duration: 90.082691ms - id: 60 request: proto: HTTP/1.1 @@ -2997,7 +2529,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/user_data method: GET response: proto: HTTP/2.0 @@ -3007,29 +2539,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:21:40 GMT + - Wed, 29 Oct 2025 22:55: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: - - c9d12079-bdc6-426b-8d98-76611b41dcd2 + - b06ef64c-d4b6-453e-ae95-c7d646fae930 status: 200 OK code: 200 - duration: 103.369499ms + duration: 101.433828ms - id: 61 request: proto: HTTP/1.1 @@ -3046,7 +2570,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/private_nics method: GET response: proto: HTTP/2.0 @@ -3056,33 +2580,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:21:41 GMT + - Wed, 29 Oct 2025 22:55:30 GMT Link: - - ; rel="last" + - ; 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: - - a28739ec-e3f6-42b8-b56e-7f824b672f01 + - e314ce7c-4d1c-46fc-b561-4e5d26caac6c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 95.443793ms + duration: 90.22136ms - id: 62 request: proto: HTTP/1.1 @@ -3099,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/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -3107,31 +2623,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1904 + content_length: 1946 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1904" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1946" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:41 GMT + - Wed, 29 Oct 2025 22:55: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: - - 4246853a-5a0b-49f6-960e-ae09398ce6fc + - 04025aad-6c35-4d55-82ad-2ddd16605910 status: 200 OK code: 200 - duration: 126.484085ms + duration: 151.318247ms - id: 63 request: proto: HTTP/1.1 @@ -3148,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/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -3158,29 +2666,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "601ae645-7edb-49d8-a59a-636a130cd8ca"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:41 GMT + - Wed, 29 Oct 2025 22:55: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: - - c6735473-9797-4c79-ac4e-1ebd4089580a + - 95749e51-c40a-4ca5-8782-bd95861917dc status: 404 Not Found code: 404 - duration: 33.067942ms + duration: 27.910414ms - id: 64 request: proto: HTTP/1.1 @@ -3197,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/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -3205,50 +2705,42 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 446 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:55:29.549511Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:29.549511Z", "zone":"fr-par-1"}' headers: Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "446" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:41 GMT + - Wed, 29 Oct 2025 22:55: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: - - d01afe90-ef79-4e75-a4a2-4b3dc2afffba + - 791e3631-ee83-460a-935a-1190cd2a426a status: 200 OK code: 200 - duration: 80.895957ms + duration: 79.923673ms - id: 65 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 188 + content_length: 186 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}}}' + body: '{"volumes":{"0":{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc","boot":false,"name":"tf-vol-heuristic-bhabha"},"1":{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca","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/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: PATCH response: proto: HTTP/2.0 @@ -3256,31 +2748,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 2025 uncompressed: false - 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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "attaching", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": [], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2025" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:42 GMT + - Wed, 29 Oct 2025 22:55: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: - - 9aa42f20-eaaf-4a87-a444-583abd8f1910 + - b5cf4695-1f8a-4752-813d-5276116cb916 status: 200 OK code: 200 - duration: 887.040823ms + duration: 428.731088ms - id: 66 request: proto: HTTP/1.1 @@ -3297,7 +2781,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -3305,31 +2789,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 1979 uncompressed: false - 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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "attaching", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": [], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1979" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:42 GMT + - Wed, 29 Oct 2025 22:55: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: - - 3fdce64a-52e1-4663-9d7c-ee767eab1709 + - 47e11dfd-567d-4bfa-aa18-2ab126c33ad0 status: 200 OK code: 200 - duration: 172.063518ms + duration: 147.397034ms - id: 67 request: proto: HTTP/1.1 @@ -3346,7 +2822,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -3354,31 +2830,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 2025 uncompressed: false - 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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "attaching", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": [], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2025" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:42 GMT + - Wed, 29 Oct 2025 22:55: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: - - 447241cb-e6c2-433d-bc17-e61c9ed06452 + - 62fe5e6d-60fb-44ca-a439-d5eaf305d827 status: 200 OK code: 200 - duration: 182.088548ms + duration: 121.834299ms - id: 68 request: proto: HTTP/1.1 @@ -3395,7 +2863,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -3405,29 +2873,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:42 GMT + - Wed, 29 Oct 2025 22:55: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: - - e8451fdc-41e3-4429-848c-f00a1186946c + - 17c27e35-8d46-47e3-bbe8-3ea944f6f7a9 status: 404 Not Found code: 404 - duration: 25.894157ms + duration: 26.754252ms - id: 69 request: proto: HTTP/1.1 @@ -3444,7 +2904,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -3454,29 +2914,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:32.426100Z", "updated_at":"2025-10-29T22:54:32.426100Z", "references":[{"id":"994b1006-7be1-4b03-8814-a15584ff209d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.426100Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:21:42 GMT + - Wed, 29 Oct 2025 22:55: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: - - 621a8e79-1fe3-4d79-97f0-f89277173b0c + - 464019a3-e9f0-447f-9f7f-38d778f2efcd status: 200 OK code: 200 - duration: 93.300427ms + duration: 89.715334ms - id: 70 request: proto: HTTP/1.1 @@ -3493,7 +2945,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/user_data method: GET response: proto: HTTP/2.0 @@ -3503,29 +2955,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:21:42 GMT + - Wed, 29 Oct 2025 22:55: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: - - d947d816-03e1-4a07-8b4d-0dca98ce4977 + - de26e5e1-4d56-4083-90cc-df5bf65a7abc status: 200 OK code: 200 - duration: 93.154483ms + duration: 89.578098ms - id: 71 request: proto: HTTP/1.1 @@ -3542,7 +2986,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/private_nics method: GET response: proto: HTTP/2.0 @@ -3552,33 +2996,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:21:42 GMT + - Wed, 29 Oct 2025 22:55:31 GMT Link: - - ; rel="last" + - ; 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: - - 8cdfe6b3-eee0-4411-9fa6-ef549745acdd + - 40c84e30-9729-407b-af10-290c5a257ef2 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 104.896087ms + duration: 105.929045ms - id: 72 request: proto: HTTP/1.1 @@ -3595,7 +3031,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -3603,31 +3039,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 679 + content_length: 678 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:55:31.097073Z", "references":[{"id":"a0779622-7d5a-4cd6-aa76-0a3d7a1ad16d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:55:31.097073Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:29.549511Z", "zone":"fr-par-1"}' headers: Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "678" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:43 GMT + - Wed, 29 Oct 2025 22:55: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: - - 2f4986fa-7161-49eb-b282-16cbc2150443 + - 00ce555c-1ba0-4984-9c18-1272c9400ab7 status: 200 OK code: 200 - duration: 85.776645ms + duration: 87.617622ms - id: 73 request: proto: HTTP/1.1 @@ -3644,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/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -3652,31 +3080,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2043 + content_length: 2085 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2043" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2085" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:43 GMT + - Wed, 29 Oct 2025 22:55: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: - - 0974699a-b9f7-4a8d-b6ac-b9323da7e1e8 + - 229a9c5c-cc99-4a91-9fd2-c129aef1a949 status: 200 OK code: 200 - duration: 138.85418ms + duration: 137.995452ms - id: 74 request: proto: HTTP/1.1 @@ -3693,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/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -3703,29 +3123,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:43 GMT + - Wed, 29 Oct 2025 22:55: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: - - e178625c-82c3-4eee-985f-2be1264c5d7c + - c7c5701a-f430-4439-a38d-d295b6927087 status: 404 Not Found code: 404 - duration: 33.844831ms + duration: 35.010462ms - id: 75 request: proto: HTTP/1.1 @@ -3742,7 +3154,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -3752,29 +3164,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:32.426100Z", "updated_at":"2025-10-29T22:54:32.426100Z", "references":[{"id":"994b1006-7be1-4b03-8814-a15584ff209d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.426100Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:21:43 GMT + - Wed, 29 Oct 2025 22:55: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: - - 85efb661-2215-4683-bffe-9d561c3d55c9 + - 148a926a-b232-42c1-9844-9eb99d2c5ea6 status: 200 OK code: 200 - duration: 79.168503ms + duration: 76.336745ms - id: 76 request: proto: HTTP/1.1 @@ -3791,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/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/user_data method: GET response: proto: HTTP/2.0 @@ -3801,29 +3205,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:21:43 GMT + - Wed, 29 Oct 2025 22:55: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: - - eb76f0f7-b304-44d6-b61b-66006d86cc87 + - d8b1ddad-edbe-4578-b654-99825e51367a status: 200 OK code: 200 - duration: 118.340069ms + duration: 101.313113ms - id: 77 request: proto: HTTP/1.1 @@ -3840,7 +3236,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/private_nics method: GET response: proto: HTTP/2.0 @@ -3850,33 +3246,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:21:43 GMT + - Wed, 29 Oct 2025 22:55:32 GMT Link: - - ; rel="last" + - ; 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: - - ec36479d-bd4c-46c4-9001-b8d7ff3398c4 + - 919b1c4c-48d5-409e-92b2-985010cea8a0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 105.228671ms + duration: 99.479394ms - id: 78 request: proto: HTTP/1.1 @@ -3893,7 +3281,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -3901,31 +3289,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 679 + content_length: 678 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:55:31.097073Z", "references":[{"id":"a0779622-7d5a-4cd6-aa76-0a3d7a1ad16d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:55:31.097073Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:29.549511Z", "zone":"fr-par-1"}' headers: Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "678" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:44 GMT + - Wed, 29 Oct 2025 22:55:33 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: - - bbc4f6aa-34c9-4041-b614-31f19596eab4 + - 3abfd79e-0079-4017-b627-a74a8a2e9391 status: 200 OK code: 200 - duration: 86.516114ms + duration: 73.038638ms - id: 79 request: proto: HTTP/1.1 @@ -3942,7 +3322,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -3950,31 +3330,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2043 + content_length: 2039 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2043" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2039" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:44 GMT + - Wed, 29 Oct 2025 22:55:33 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: - - 47642ec5-b477-4826-a3cb-30f36fcb3c2a + - c2416dd4-f3d7-43b1-9206-f45f679b368b status: 200 OK code: 200 - duration: 162.305831ms + duration: 177.83228ms - id: 80 request: proto: HTTP/1.1 @@ -3991,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/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -4001,29 +3373,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:44 GMT + - Wed, 29 Oct 2025 22:55:33 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: - - d49e9ae2-c79d-4091-b84a-ab59507f2e59 + - 79eb88b4-b23a-449f-912d-ae9ddb2e9bbd status: 404 Not Found code: 404 - duration: 30.363502ms + duration: 29.76345ms - id: 81 request: proto: HTTP/1.1 @@ -4040,7 +3404,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -4050,29 +3414,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:32.426100Z", "updated_at":"2025-10-29T22:54:32.426100Z", "references":[{"id":"994b1006-7be1-4b03-8814-a15584ff209d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.426100Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:21:44 GMT + - Wed, 29 Oct 2025 22:55:33 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: - - e92a82de-1432-4555-8da1-c74db89d272c + - fc667edf-7eaf-4429-84d7-e2b2f6e93799 status: 200 OK code: 200 - duration: 99.141679ms + duration: 94.191736ms - id: 82 request: proto: HTTP/1.1 @@ -4089,7 +3445,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/user_data method: GET response: proto: HTTP/2.0 @@ -4099,29 +3455,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:21:44 GMT + - Wed, 29 Oct 2025 22:55:33 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: - - d686c842-c8e8-4f11-a877-4c6e1e510ab7 + - 30e289aa-437d-4447-9686-0804a592ff75 status: 200 OK code: 200 - duration: 114.834144ms + duration: 99.780557ms - id: 83 request: proto: HTTP/1.1 @@ -4138,7 +3486,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/private_nics method: GET response: proto: HTTP/2.0 @@ -4148,45 +3496,37 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:21:44 GMT + - Wed, 29 Oct 2025 22:55:33 GMT Link: - - ; rel="last" + - ; 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: - - d178ae77-4f4e-49f1-8a59-df6025d0e3f6 + - e13a126b-ddd8-48c5-8eb9-dbb9c1b23714 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.550743ms + duration: 110.668499ms - id: 84 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 150 + content_length: 149 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-vigorous-hoover","perf_iops":15000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":15000000000},"tags":[]}' + body: '{"name":"tf-volume-vibrant-newton","perf_iops":15000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":15000000000},"tags":[]}' form: {} headers: Content-Type: @@ -4201,31 +3541,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 423 uncompressed: false - 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"}' + body: '{"id":"e62ff282-cf88-4f1f-bfde-793a543685c3", "name":"tf-volume-vibrant-newton", "type":"sbs_15k", "size":15000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:33.912100Z", "updated_at":"2025-10-29T22:55:33.912100Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "424" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:45 GMT + - Wed, 29 Oct 2025 22:55: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: - - 8cfa2ff6-6e90-4c6c-b406-98ff1d6cc474 + - 924a893f-5540-470e-9cb8-f65cec1155f1 status: 200 OK code: 200 - duration: 559.137772ms + duration: 370.499724ms - id: 85 request: proto: HTTP/1.1 @@ -4242,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/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 method: GET response: proto: HTTP/2.0 @@ -4252,29 +3584,21 @@ interactions: trailer: {} content_length: 424 uncompressed: false - 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"}' + body: '{"id":"e62ff282-cf88-4f1f-bfde-793a543685c3", "name":"tf-volume-vibrant-newton", "type":"sbs_15k", "size":15000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:33.912100Z", "updated_at":"2025-10-29T22:55:33.912100Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "424" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:45 GMT + - Wed, 29 Oct 2025 22:55: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: - - 5326d176-4a4b-45ba-8914-5c37a872edf0 + - 58248dae-9540-43f3-a5cd-8648adbf972e status: 200 OK code: 200 - duration: 84.385482ms + duration: 97.355924ms - id: 86 request: proto: HTTP/1.1 @@ -4291,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/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 method: GET response: proto: HTTP/2.0 @@ -4299,31 +3623,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 425 + content_length: 424 uncompressed: false - 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"}' + body: '{"id":"e62ff282-cf88-4f1f-bfde-793a543685c3", "name":"tf-volume-vibrant-newton", "type":"sbs_15k", "size":15000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:33.912100Z", "updated_at":"2025-10-29T22:55:33.912100Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "425" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "424" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - d6918aa5-8186-4a80-8a7f-a584ba8b5e43 + - 1903c744-060e-4467-8ec9-df757d0f18b6 status: 200 OK code: 200 - duration: 95.48486ms + duration: 101.018593ms - id: 87 request: proto: HTTP/1.1 @@ -4340,7 +3656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -4348,31 +3664,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 425 + content_length: 2085 uncompressed: false - 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"}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "425" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2085" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - cc0bd6d7-efdb-4e95-b893-e7d8037ff136 + - 3e5bcde7-ae7a-472b-891e-0d06eb827ef1 status: 200 OK code: 200 - duration: 81.368085ms + duration: 159.290676ms - id: 88 request: proto: HTTP/1.1 @@ -4389,56 +3697,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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-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: - - "2043" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:21: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: - - cd1dde14-48c4-4d5d-bddb-325cfa14c420 - status: 200 OK - code: 200 - duration: 138.908794ms - - 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/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -4448,30 +3707,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "601ae645-7edb-49d8-a59a-636a130cd8ca"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - 2fbd3c44-4106-4549-ba0d-5bfeca441a53 + - b1ca10dc-074e-4c8e-8d54-abff754c98c5 status: 404 Not Found code: 404 - duration: 29.926471ms - - id: 90 + duration: 32.038103ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4487,7 +3738,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -4495,32 +3746,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 679 + content_length: 678 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:55:31.097073Z", "references":[{"id":"a0779622-7d5a-4cd6-aa76-0a3d7a1ad16d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:55:31.097073Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:29.549511Z", "zone":"fr-par-1"}' headers: Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "678" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - 7b9d6778-2315-4bb8-bb49-b2ddb7a0d46e + - 1cf58468-cd0f-424d-a1ed-deae62a5e4a1 status: 200 OK code: 200 - duration: 82.438004ms - - id: 91 + duration: 86.174994ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4536,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/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 method: GET response: proto: HTTP/2.0 @@ -4546,30 +3789,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9d190c3-6517-42dd-91f2-50681d8f8101","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "e62ff282-cf88-4f1f-bfde-793a543685c3"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - 4ee9969b-a9ac-4e0c-b18a-75c9a853cb4d + - 444bea60-fd4a-485c-a59f-b4587d84d1d5 status: 404 Not Found code: 404 - duration: 26.423852ms - - id: 92 + duration: 24.669875ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4585,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/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 method: GET response: proto: HTTP/2.0 @@ -4593,50 +3828,42 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 425 + content_length: 424 uncompressed: false - 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"}' + body: '{"id":"e62ff282-cf88-4f1f-bfde-793a543685c3", "name":"tf-volume-vibrant-newton", "type":"sbs_15k", "size":15000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:33.912100Z", "updated_at":"2025-10-29T22:55:33.912100Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "425" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "424" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - 4609502b-2ff4-4a1a-b86a-2261ffb1f49c + - 7b8552cb-6343-4261-8548-3fc068a54fd6 status: 200 OK code: 200 - duration: 89.55916ms - - id: 93 + duration: 111.880015ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 265 + content_length: 264 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}}}' + body: '{"volumes":{"0":{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc","boot":false,"name":"tf-vol-pedantic-lovelace"},"1":{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca","volume_type":"sbs_volume"},"2":{"id":"e62ff282-cf88-4f1f-bfde-793a543685c3","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/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: PATCH response: proto: HTTP/2.0 @@ -4644,32 +3871,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2122 + content_length: 2164 uncompressed: false - 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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}, "2": {"boot": false, "volume_type": "sbs_volume", "id": "e62ff282-cf88-4f1f-bfde-793a543685c3", "state": "attaching", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": [], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2122" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2164" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:51 GMT + - Wed, 29 Oct 2025 22:55: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: - - 3d467768-d5ed-457d-94ab-4f3bf7e78485 + - f4c45a8a-ad70-49c9-a706-16f895b571db status: 200 OK code: 200 - duration: 446.126766ms - - id: 94 + duration: 392.701445ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4685,7 +3904,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -4693,32 +3912,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2122 + content_length: 2118 uncompressed: false - 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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}, "2": {"boot": false, "volume_type": "sbs_volume", "id": "e62ff282-cf88-4f1f-bfde-793a543685c3", "state": "attaching", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": [], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2122" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2118" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:51 GMT + - Wed, 29 Oct 2025 22:55: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: - - ea741ade-74a5-456a-b571-bebfe2b40ed9 + - 53dcb87c-b12b-40e9-8ad7-9c7a426de819 status: 200 OK code: 200 - duration: 156.019113ms - - id: 95 + duration: 152.823462ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4734,7 +3945,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -4742,32 +3953,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2122 + content_length: 2118 uncompressed: false - 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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}, "2": {"boot": false, "volume_type": "sbs_volume", "id": "e62ff282-cf88-4f1f-bfde-793a543685c3", "state": "attaching", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": [], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2122" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2118" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:51 GMT + - Wed, 29 Oct 2025 22:55: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: - - 8c5d34dd-df43-414d-8711-5b5599b182c0 + - 039d33d3-ee40-4808-8b02-f19f74680931 status: 200 OK code: 200 - duration: 144.623048ms - - id: 96 + duration: 177.276632ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4783,7 +3986,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -4793,30 +3996,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:51 GMT + - Wed, 29 Oct 2025 22:55: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: - - ca9f4f92-98ba-4cfd-87a3-758c4f832489 + - 756b34ed-1210-4b37-8ce5-aa11855410d2 status: 404 Not Found code: 404 - duration: 27.671927ms - - id: 97 + duration: 28.219843ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4832,7 +4027,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -4842,30 +4037,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:32.426100Z", "updated_at":"2025-10-29T22:54:32.426100Z", "references":[{"id":"994b1006-7be1-4b03-8814-a15584ff209d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.426100Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:21:51 GMT + - Wed, 29 Oct 2025 22:55: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: - - 004ee87d-8b04-4e55-99d2-b0a214216b38 + - 803f5a42-eb90-4d9b-ad14-2706ef6a2b1e status: 200 OK code: 200 - duration: 86.611153ms - - id: 98 + duration: 82.06615ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -4881,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/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/user_data method: GET response: proto: HTTP/2.0 @@ -4891,30 +4078,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:21:51 GMT + - Wed, 29 Oct 2025 22:55: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: - - 630d553f-c1f4-492d-b0ae-fd6d2811f801 + - d7a98332-990a-4483-9ce2-88f03fc78ded status: 200 OK code: 200 - duration: 104.580976ms - - id: 99 + duration: 84.095856ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4930,7 +4109,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/private_nics method: GET response: proto: HTTP/2.0 @@ -4940,34 +4119,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:21:51 GMT + - Wed, 29 Oct 2025 22:55:35 GMT Link: - - ; rel="last" + - ; 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: - - a3599dd7-ed20-4a1a-8ea8-13562d5fe28e + - 0a69dba0-f662-4413-821f-a47c170419e8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 100.905362ms - - id: 100 + duration: 113.09677ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -4983,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/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -4991,32 +4162,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 679 + content_length: 678 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:55:31.097073Z", "references":[{"id":"a0779622-7d5a-4cd6-aa76-0a3d7a1ad16d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:55:31.097073Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:29.549511Z", "zone":"fr-par-1"}' headers: Content-Length: - - "679" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "678" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:52 GMT + - Wed, 29 Oct 2025 22:55: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: - - f7bebfa9-f36e-40ae-ac68-93d177fb4245 + - cc3c144d-5aa2-4800-99d0-b6cb23c6c0c9 status: 200 OK code: 200 - duration: 78.276728ms - - id: 101 + duration: 81.319855ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -5032,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/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 method: GET response: proto: HTTP/2.0 @@ -5040,32 +4203,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 657 + content_length: 656 uncompressed: false - 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"}' + body: '{"id":"e62ff282-cf88-4f1f-bfde-793a543685c3", "name":"tf-volume-vibrant-newton", "type":"sbs_15k", "size":15000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:33.912100Z", "updated_at":"2025-10-29T22:55:34.965091Z", "references":[{"id":"5366aaf0-9bd3-4f7d-b989-1b56157d4440", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:55:34.965091Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":null, "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "657" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "656" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:52 GMT + - Wed, 29 Oct 2025 22:55: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: - - b51c28d5-002d-43e8-ba4f-c8fe4bf65ef3 + - 07640b73-cd3a-45d4-a651-ff616dcdd326 status: 200 OK code: 200 - duration: 90.650049ms - - id: 102 + duration: 83.917503ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -5081,7 +4236,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -5089,32 +4244,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2182 + content_length: 2178 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}, "2": {"boot": false, "volume_type": "sbs_volume", "id": "e62ff282-cf88-4f1f-bfde-793a543685c3", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2182" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2178" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:52 GMT + - Wed, 29 Oct 2025 22:55: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: - - 9072308e-0a54-4356-9798-5c57f5a21fdb + - 2f903292-a8a5-44b9-9612-f9a3b4c722a4 status: 200 OK code: 200 - duration: 165.757795ms - - id: 103 + duration: 131.735226ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5130,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/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -5140,30 +4287,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:52 GMT + - Wed, 29 Oct 2025 22:55: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: - - 7de0eba4-bba7-4c7f-b55c-77b75ee9f888 + - a3af37b6-04e5-46de-b45b-5ce8ccb182f8 status: 404 Not Found code: 404 - duration: 34.848166ms - - id: 104 + duration: 27.060987ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5179,7 +4318,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -5189,30 +4328,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:32.426100Z", "updated_at":"2025-10-29T22:54:32.426100Z", "references":[{"id":"994b1006-7be1-4b03-8814-a15584ff209d", "product_resource_type":"instance_server", "product_resource_id":"1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "created_at":"2025-10-29T22:54:32.426100Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:21:52 GMT + - Wed, 29 Oct 2025 22:55: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: - - 391b8b67-9440-402b-b34c-b40cbcd9fe7f + - 527c42e4-f53d-4c1b-9790-cc916f10e329 status: 200 OK code: 200 - duration: 81.190631ms - - id: 105 + duration: 89.487228ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5228,7 +4359,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/user_data method: GET response: proto: HTTP/2.0 @@ -5238,30 +4369,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:21:52 GMT + - Wed, 29 Oct 2025 22:55: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: - - 936c91a2-5490-4dd5-9c40-6d3412d5c0c2 + - dc9b170b-20ac-44f7-8116-11b0b95b44d1 status: 200 OK code: 200 - duration: 92.27442ms - - id: 106 + duration: 99.221512ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5277,7 +4400,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/private_nics method: GET response: proto: HTTP/2.0 @@ -5287,34 +4410,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:21:52 GMT + - Wed, 29 Oct 2025 22:55:36 GMT Link: - - ; rel="last" + - ; 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: - - 743bf4eb-0eac-4df8-b5b8-6c9033b6cd72 + - 9085f12b-bff7-4db0-b5d3-f5a39b38d5dd X-Total-Count: - "0" status: 200 OK code: 200 - duration: 109.107358ms - - id: 107 + duration: 88.982315ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5330,7 +4445,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -5338,32 +4453,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2182 + content_length: 2178 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}, "2": {"boot": false, "volume_type": "sbs_volume", "id": "e62ff282-cf88-4f1f-bfde-793a543685c3", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2182" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2178" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:53 GMT + - Wed, 29 Oct 2025 22:55: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: - - 76364cd4-da9c-4c82-8f57-51ecbb5bbdb5 + - b06a0357-5eae-4a62-b471-b0f58d6daa90 status: 200 OK code: 200 - duration: 155.723438ms - - id: 108 + duration: 166.864111ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5379,7 +4486,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -5387,32 +4494,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2182 + content_length: 2178 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}, "2": {"boot": false, "volume_type": "sbs_volume", "id": "e62ff282-cf88-4f1f-bfde-793a543685c3", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:54:38.396986+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2182" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2178" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:53 GMT + - Wed, 29 Oct 2025 22:55: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: - - 6fc68868-e37a-41d7-be03-5e9e6a978ba1 + - 8e81c8c9-7358-4775-b945-36bd594c7ecf status: 200 OK code: 200 - duration: 149.244188ms - - id: 109 + duration: 139.932146ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5430,7 +4529,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/16b168a8-583a-44dc-b23c-e947bfbdc887/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/action method: POST response: proto: HTTP/2.0 @@ -5440,32 +4539,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "68848e25-aa22-452d-8f85-12d0b9a7bb08", "description": "server_terminate", "status": "pending", "href_from": "/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/action", "href_result": "/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "started_at": "2025-10-29T22:55:37.546606+00:00", "terminated_at": null, "progress": 0, "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:21:53 GMT + - Wed, 29 Oct 2025 22:55:37 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1d91c6d8-ff48-42d8-a00f-02ee9a0e2276 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/68848e25-aa22-452d-8f85-12d0b9a7bb08 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: - - 5ede536a-e066-400e-8676-02a632549816 + - 108f02ec-c7e1-4058-bd34-0a0864744ce4 status: 202 Accepted code: 202 - duration: 301.23247ms - - id: 110 + duration: 256.587862ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5481,7 +4572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -5489,32 +4580,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2145 + content_length: 2187 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: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"}}' + body: '{"server": {"id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628", "name": "tf-srv-cranky-jepsen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-cranky-jepsen", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc", "state": "available", "zone": "fr-par-1"}, "1": {"boot": false, "volume_type": "sbs_volume", "id": "601ae645-7edb-49d8-a59a-636a130cd8ca", "state": "available", "zone": "fr-par-1"}, "2": {"boot": false, "volume_type": "sbs_volume", "id": "e62ff282-cf88-4f1f-bfde-793a543685c3", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:91", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:32.292280+00:00", "modification_date": "2025-10-29T22:55:37.343413+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2145" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2187" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:53 GMT + - Wed, 29 Oct 2025 22:55: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: - - bbc0361d-1e52-42d3-9460-d76ed3ef37c8 + - 9a1a8fd3-2ffe-44df-94bf-bae2377a784e status: 200 OK code: 200 - duration: 152.666365ms - - id: 111 + duration: 142.139564ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5530,7 +4613,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -5540,30 +4623,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:58 GMT + - Wed, 29 Oct 2025 22:55: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: - - d52e3c27-66b1-410f-8b12-86233abd1a97 + - 9bd774de-67b9-483f-a479-f860c251fc27 status: 404 Not Found code: 404 - duration: 48.113633ms - - id: 112 + duration: 43.475734ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5579,7 +4654,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -5589,30 +4664,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:58 GMT + - Wed, 29 Oct 2025 22:55: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: - - 4791a065-8fe5-4b5f-912c-1220d399982c + - 56c94dfc-f6b8-4a03-99d5-b36c045d213a status: 404 Not Found code: 404 - duration: 24.609975ms - - id: 113 + duration: 34.159461ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5628,7 +4695,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: GET response: proto: HTTP/2.0 @@ -5638,30 +4705,22 @@ interactions: trailer: {} content_length: 498 uncompressed: false - 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"}' + body: '{"id":"cd02bd9e-6199-4cdf-a539-2150d85a23cc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:32.426100Z", "updated_at":"2025-10-29T22:55:39.475012Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:39.475012Z", "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:21:58 GMT + - Wed, 29 Oct 2025 22:55: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: - - cf02677a-5f51-4bb0-ad0a-4f1c22122f36 + - 6173e2e1-f1cb-46a5-b059-910fc45ec611 status: 200 OK code: 200 - duration: 96.130654ms - - id: 114 + duration: 74.746814ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5677,7 +4736,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc method: DELETE response: proto: HTTP/2.0 @@ -5689,26 +4748,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:59 GMT + - Wed, 29 Oct 2025 22:55:43 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: - - 4e77ca5b-62af-4900-9760-dd68f280780a + - ff96340f-8d70-4eac-84a2-d4d6ad9529f6 status: 204 No Content code: 204 - duration: 174.802125ms - - id: 115 + duration: 147.585921ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -5724,7 +4775,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 method: GET response: proto: HTTP/2.0 @@ -5732,32 +4783,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 449 uncompressed: false - 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"}' + body: '{"id":"e62ff282-cf88-4f1f-bfde-793a543685c3", "name":"tf-volume-vibrant-newton", "type":"sbs_15k", "size":15000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:33.912100Z", "updated_at":"2025-10-29T22:55:39.631725Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:39.631725Z", "zone":"fr-par-1"}' headers: Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "449" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:59 GMT + - Wed, 29 Oct 2025 22:55:43 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: - - 7c19d32b-c5c9-4115-8097-e688ac647d8b + - d8569689-aa8e-40af-87aa-72e05ef792c6 status: 200 OK code: 200 - duration: 82.199086ms - - id: 116 + duration: 72.678266ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5773,7 +4816,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -5781,32 +4824,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 450 + content_length: 446 uncompressed: false - 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"}' + body: '{"id":"601ae645-7edb-49d8-a59a-636a130cd8ca", "name":"tf-volume-great-mcnulty", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:30.757397Z", "updated_at":"2025-10-29T22:55:39.554880Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:39.554880Z", "zone":"fr-par-1"}' headers: Content-Length: - - "450" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "446" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:59 GMT + - Wed, 29 Oct 2025 22:55:43 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: - - 2e9b933d-31d8-46a0-865b-ae008d981f25 + - 7c5978cd-485e-4589-8199-2451fa6088aa status: 200 OK code: 200 - duration: 120.465473ms - - id: 117 + duration: 101.173475ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -5822,7 +4857,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 method: DELETE response: proto: HTTP/2.0 @@ -5834,26 +4869,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:59 GMT + - Wed, 29 Oct 2025 22:55:43 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: - - a15adda0-6512-47bb-ab99-7b9733d66a64 + - a721cccc-b898-49bc-8863-2bbe4f11c368 status: 204 No Content code: 204 - duration: 149.712208ms - - id: 118 + duration: 170.691651ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -5869,7 +4896,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: DELETE response: proto: HTTP/2.0 @@ -5881,26 +4908,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:59 GMT + - Wed, 29 Oct 2025 22:55:43 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: - - bc003c4a-1128-4e12-9d49-aa1bf6799c79 + - 146ed3d3-97d8-4043-aae4-9314c3dea45c status: 204 No Content code: 204 - duration: 171.953083ms - - id: 119 + duration: 161.677293ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -5916,7 +4935,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 method: GET response: proto: HTTP/2.0 @@ -5926,30 +4945,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"e62ff282-cf88-4f1f-bfde-793a543685c3","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:21:59 GMT + - Wed, 29 Oct 2025 22:55:43 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: - - 027bfeeb-6341-48ba-bf77-026aea70bf93 + - 6d08de2a-09e8-4ac2-8e1c-dd241d60a96a status: 404 Not Found code: 404 - duration: 75.147912ms - - id: 120 + duration: 80.073627ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -5965,7 +4976,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca method: GET response: proto: HTTP/2.0 @@ -5975,30 +4986,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"b9d190c3-6517-42dd-91f2-50681d8f8101","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"601ae645-7edb-49d8-a59a-636a130cd8ca","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:21:59 GMT + - Wed, 29 Oct 2025 22:55:43 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: - - e4ffd010-a496-4c5a-b891-b62d6d3cd93f + - 7d30c08a-fd64-451d-a968-e15a7ad5842c status: 404 Not Found code: 404 - duration: 98.988593ms - - id: 121 + duration: 86.52992ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -6014,7 +5017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 method: GET response: proto: HTTP/2.0 @@ -6024,26 +5027,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:21:59 GMT + - Wed, 29 Oct 2025 22:55:43 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: - - 7a107f4c-c4b4-4a42-b493-05a1fa74ffed + - d1526515-ef14-476a-97e0-805d1cd92103 status: 404 Not Found code: 404 - duration: 53.232017ms + duration: 45.34514ms 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 176888814..b27167692 100644 --- a/internal/services/instance/testdata/server-custom-diff-image.cassette.yaml +++ b/internal/services/instance/testdata/server-custom-diff-image.cassette.yaml @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:55:00 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f1666e7-d43b-4063-9596-05c34c472c63 + - 3f7fea11-d94f-4e6c-9daa-db82435d0162 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 50.381261ms + duration: 43.649294ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -78,35 +74,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:55:00 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 952d4e25-8b4f-47d7-96b0-d45f5c61eebd + - 33555cef-9789-401e-9210-26bfe4726ed8 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 50.021396ms + duration: 42.380692ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -133,33 +123,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:55:00 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 65645231-1674-4b35-a674-cd9460af9ef6 + - 78640ab1-5eb1-4e3a-8a93-d63a269f42eb X-Total-Count: - "68" status: 200 OK code: 200 - duration: 50.72229ms + duration: 49.024836ms - id: 3 request: proto: HTTP/1.1 @@ -172,7 +154,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -186,33 +170,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:55:00 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 79da0ed4-2db0-46ab-be7d-cc9768445c7e + - de651c44-6fb9-42a6-a149-7107f7d80b6b X-Total-Count: - "68" status: 200 OK code: 200 - duration: 55.016817ms + duration: 49.82877ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +201,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -237,31 +221,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:55:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6501367e-16e2-44c6-8bcc-c7cf1a977e80 + - 19ed1c03-d312-4dc0-8aa2-ec9974b575de status: 200 OK code: 200 - duration: 53.91899ms + duration: 49.713244ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +250,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -286,43 +270,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:55:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a570bfc8-36d6-42e8-9460-797f7209d64a + - 1348d787-d1c4-4375-afe8-ffa5f64aaec3 status: 200 OK code: 200 - duration: 47.918105ms + duration: 57.568062ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 224 + content_length: 246 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + 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","tags":["control"]}' form: {} headers: Content-Type: @@ -337,82 +313,70 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + content_length: 1783 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.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"}}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["control"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:01.134529+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1783" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:55:01 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6ee0d54a-7625-4773-9b2a-2d27aae936b2 + - 2eed81c9-2db9-4a58-8881-e97b4c4f0555 status: 201 Created code: 201 - duration: 1.263218608s + duration: 1.277751841s - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 240 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","tags":["main"]}' 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/e01c2167-95ea-4bed-a6f0-f5198840c5fa - 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: 1722 + 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-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"}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1774" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:55:01 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c30c29a8-2cda-4590-a2c4-c805090b0773 - status: 200 OK - code: 200 - duration: 173.456527ms + - 3c967060-3945-4c0c-a711-24dffd80444e + status: 201 Created + code: 201 + duration: 1.36371952s - id: 8 request: proto: HTTP/1.1 @@ -429,7 +393,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -437,31 +401,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + content_length: 1783 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.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"}}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["control"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:01.134529+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1783" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 60fa69d1-be34-434b-aaf1-876fe5fa207a + - c4268351-dc55-4770-9c1b-60cda0766044 status: 200 OK code: 200 - duration: 124.604972ms + duration: 183.456524ms - id: 9 request: proto: HTTP/1.1 @@ -478,7 +434,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -486,31 +442,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + 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-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"}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1774" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1be12e79-9699-426f-b34f-df2649f00282 + - 192557ac-79a3-4d9a-93ef-46743f78118e status: 200 OK code: 200 - duration: 137.376786ms + duration: 169.521976ms - id: 10 request: proto: HTTP/1.1 @@ -527,7 +475,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -535,31 +483,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1737 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","type":"not_found"}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["control"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:01.134529+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1737" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0719d93b-7b55-4314-b05a-53885a62a6b8 - status: 404 Not Found - code: 404 - duration: 28.238868ms + - c66b03ea-b880-4dca-a221-7faf70254838 + status: 200 OK + code: 200 + duration: 176.848717ms - id: 11 request: proto: HTTP/1.1 @@ -576,7 +516,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -584,31 +524,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 1728 uncompressed: false - 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"}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1728" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f418fb5d-7eb1-4bd2-b73f-2b3441e741d5 + - 3da27cda-f2e7-4fd9-a751-12e7971e43e2 status: 200 OK code: 200 - duration: 83.784787ms + duration: 176.513811ms - id: 12 request: proto: HTTP/1.1 @@ -625,7 +557,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -633,51 +565,41 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1737 uncompressed: false - body: '{"user_data":[]}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["control"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:01.134529+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1737" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 893b1ba1-7010-4d2f-8b09-4347ae97365f + - 48de13f5-8104-403d-8a28-5af2c3e93aab status: 200 OK code: 200 - duration: 94.381806ms + duration: 171.446475ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 227 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + 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/5482e87c-50db-46f1-a362-030d2b4c49c7 + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -686,31 +608,21 @@ interactions: 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"}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8f4fbe54-42a6-482e-9297-00315795ff3d - status: 201 Created - code: 201 - duration: 1.963882431s + - 7d487f79-cef3-4200-bdb5-34b179ef6bb3 + status: 200 OK + code: 200 + duration: 127.934286ms - id: 14 request: proto: HTTP/1.1 @@ -727,7 +639,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 method: GET response: proto: HTTP/2.0 @@ -735,35 +647,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 143 uncompressed: false - body: '{"private_nics":[]}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4f696818-eb10-4822-9698-0b7e2469ca58"}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9165f516-1c14-458f-b84c-9ce7db7e38fd - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 100.171356ms + - 9ebfb875-9590-46f8-901a-1e19850fecb5 + status: 404 Not Found + code: 404 + duration: 34.863454ms - id: 15 request: proto: HTTP/1.1 @@ -780,7 +680,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 method: GET response: proto: HTTP/2.0 @@ -788,31 +688,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1728 + 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-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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f15a087-0697-40f6-b645-b2020057a336"}' headers: Content-Length: - - "1728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 03fd78a3-00db-4d82-ab2f-c597812aeed4 - status: 200 OK - code: 200 - duration: 165.850064ms + - a812c468-7c60-4a4b-ac47-48505d77b293 + status: 404 Not Found + code: 404 + duration: 27.285264ms - id: 16 request: proto: HTTP/1.1 @@ -829,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/57d06475-4195-4d4a-ad7b-c120eeb2a7ee + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 method: GET response: proto: HTTP/2.0 @@ -837,31 +729,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1728 + 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-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"}}' + body: '{"id":"6f15a087-0697-40f6-b645-b2020057a336", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.309950Z", "updated_at":"2025-10-29T22:55:01.309950Z", "references":[{"id":"4c6570ff-311b-4004-9d2a-5ba8edbee7db", "product_resource_type":"instance_server", "product_resource_id":"5482e87c-50db-46f1-a362-030d2b4c49c7", "created_at":"2025-10-29T22:55:01.309950Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "1728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "705" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1d74f0e4-ad3e-4997-992d-3169dab50d94 + - befe74b5-9db4-4481-88eb-269f72616061 status: 200 OK code: 200 - duration: 154.558765ms + duration: 78.893581ms - id: 17 request: proto: HTTP/1.1 @@ -878,7 +762,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 method: GET response: proto: HTTP/2.0 @@ -886,31 +770,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1728 + 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-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"}}' + body: '{"id":"4f696818-eb10-4822-9698-0b7e2469ca58", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.287790Z", "updated_at":"2025-10-29T22:55:01.287790Z", "references":[{"id":"2aa0885b-dbd7-4428-a206-d3acd6173266", "product_resource_type":"instance_server", "product_resource_id":"2bb452d6-9784-45ac-8627-ffff97dd2451", "created_at":"2025-10-29T22:55:01.287790Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "1728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "705" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9e67823b-6faa-4017-a3e5-997101012e45 + - 1a74a00f-d266-4981-b350-84f621afc4bf status: 200 OK code: 200 - duration: 158.582325ms + duration: 89.326961ms - id: 18 request: proto: HTTP/1.1 @@ -927,7 +803,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/user_data method: GET response: proto: HTTP/2.0 @@ -935,31 +811,23 @@ 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":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","type":"not_found"}' + body: '{"user_data": []}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 811afe1b-94d7-4eca-a469-4a3c7f82bdd7 - status: 404 Not Found - code: 404 - duration: 36.156696ms + - 3a1ad65c-1203-48d0-af64-581f44019220 + status: 200 OK + code: 200 + duration: 120.797672ms - id: 19 request: proto: HTTP/1.1 @@ -976,7 +844,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/user_data method: GET response: proto: HTTP/2.0 @@ -984,31 +852,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 17 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"}' + body: '{"user_data": []}' headers: Content-Length: - - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 38f43d2e-0339-4332-9e3f-21a0c27229ca + - 88f953c3-a328-46fc-988d-43687959c49c status: 200 OK code: 200 - duration: 99.380755ms + duration: 117.219271ms - id: 20 request: proto: HTTP/1.1 @@ -1025,7 +885,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/private_nics method: GET response: proto: HTTP/2.0 @@ -1033,31 +893,27 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:55:02 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5598dc8b-6e43-4f16-99c6-f7b684a37881 + - 71aec292-4a58-47bd-bded-6f69f5a2b4ed + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 94.538941ms + duration: 97.305942ms - id: 21 request: proto: HTTP/1.1 @@ -1074,7 +930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/private_nics method: GET response: proto: HTTP/2.0 @@ -1084,33 +940,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:05 GMT + - Wed, 29 Oct 2025 22:55:02 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c678a21f-dd57-41ca-b3c5-1791bd2ed3bd + - f970cba0-4dad-4aad-9b85-c62364810b1e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 87.372792ms + duration: 104.30525ms - id: 22 request: proto: HTTP/1.1 @@ -1127,7 +975,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -1135,31 +983,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + 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-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"}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1774" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c4404e12-d5ef-49a9-98e2-b93555814395 + - 37439335-4365-45bc-9248-32822621f18d status: 200 OK code: 200 - duration: 135.164552ms + duration: 147.504954ms - id: 23 request: proto: HTTP/1.1 @@ -1176,7 +1016,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -1184,31 +1024,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1728 + content_length: 1783 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"}}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["control"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:01.134529+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1783" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cfecfc6c-8dc7-4b74-844d-eeeeb6d2565c + - 1a717ec9-bbaa-4bf6-975f-832c06ca0042 status: 200 OK code: 200 - duration: 133.816686ms + duration: 150.236503ms - id: 24 request: proto: HTTP/1.1 @@ -1225,7 +1057,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -1233,31 +1065,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1728 + 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-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"}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1774" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 87ef9731-74fd-450c-81c7-9625e28193a0 + - 91ae0a4e-c1a5-451a-8b79-69d34b24840a status: 200 OK code: 200 - duration: 126.960519ms + duration: 145.599281ms - id: 25 request: proto: HTTP/1.1 @@ -1274,7 +1098,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -1282,31 +1106,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1737 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","type":"not_found"}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["control"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:01.134529+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1737" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 23d91094-f5b1-40c3-ae4d-0bee9e7cf233 - status: 404 Not Found - code: 404 - duration: 22.520622ms + - 858942c8-f6b2-4e36-aa5e-d023ecbc92d0 + status: 200 OK + code: 200 + duration: 163.691173ms - id: 26 request: proto: HTTP/1.1 @@ -1323,7 +1139,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 method: GET response: proto: HTTP/2.0 @@ -1331,31 +1147,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + 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-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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f15a087-0697-40f6-b645-b2020057a336"}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e9abd41a-3ff7-4f66-a552-232bf8d3c413 - status: 200 OK - code: 200 - duration: 158.520962ms + - 820c2ddf-9f10-47eb-8802-3a4dbd1b8e38 + status: 404 Not Found + code: 404 + duration: 28.191217ms - id: 27 request: proto: HTTP/1.1 @@ -1372,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/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 method: GET response: proto: HTTP/2.0 @@ -1382,29 +1190,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4f696818-eb10-4822-9698-0b7e2469ca58"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1793d4a0-ea62-479a-8625-cdaa1d827196 + - 28f9aede-4613-4ae2-92a6-11f83c12a8ae status: 404 Not Found code: 404 - duration: 30.593582ms + duration: 29.698967ms - id: 28 request: proto: HTTP/1.1 @@ -1421,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/db8bd0c7-9f6f-4063-8ddb-37972b309f89 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 method: GET response: proto: HTTP/2.0 @@ -1431,29 +1231,21 @@ interactions: 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"}' + body: '{"id":"6f15a087-0697-40f6-b645-b2020057a336", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.309950Z", "updated_at":"2025-10-29T22:55:01.309950Z", "references":[{"id":"4c6570ff-311b-4004-9d2a-5ba8edbee7db", "product_resource_type":"instance_server", "product_resource_id":"5482e87c-50db-46f1-a362-030d2b4c49c7", "created_at":"2025-10-29T22:55:01.309950Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a17a200f-4670-4cea-9744-f77c56e526f4 + - 82fd120d-1ed2-4121-94a4-f872fba13687 status: 200 OK code: 200 - duration: 94.765918ms + duration: 90.970495ms - id: 29 request: proto: HTTP/1.1 @@ -1470,7 +1262,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 method: GET response: proto: HTTP/2.0 @@ -1480,29 +1272,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"4f696818-eb10-4822-9698-0b7e2469ca58", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.287790Z", "updated_at":"2025-10-29T22:55:01.287790Z", "references":[{"id":"2aa0885b-dbd7-4428-a206-d3acd6173266", "product_resource_type":"instance_server", "product_resource_id":"2bb452d6-9784-45ac-8627-ffff97dd2451", "created_at":"2025-10-29T22:55:01.287790Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab3bc78f-61ed-4366-907a-0d785c9a4adc + - d0e81a02-8efd-4f5b-9eec-991f84511832 status: 200 OK code: 200 - duration: 90.716819ms + duration: 111.269795ms - id: 30 request: proto: HTTP/1.1 @@ -1519,7 +1303,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/user_data method: GET response: proto: HTTP/2.0 @@ -1529,29 +1313,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9a5cea71-edec-421f-b6c3-43e17dcea979 + - 1a3335bc-ddfd-471e-ba46-f724850e0cef status: 200 OK code: 200 - duration: 97.454576ms + duration: 116.163035ms - id: 31 request: proto: HTTP/1.1 @@ -1568,7 +1344,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/user_data method: GET response: proto: HTTP/2.0 @@ -1578,29 +1354,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c9a2b203-b7f7-4c00-9419-524fe69a5e05 + - d27fcefe-655c-44e2-ace7-06d2b400d51b status: 200 OK code: 200 - duration: 133.812339ms + duration: 95.067166ms - id: 32 request: proto: HTTP/1.1 @@ -1617,7 +1385,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/private_nics method: GET response: proto: HTTP/2.0 @@ -1627,33 +1395,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:06 GMT + - Wed, 29 Oct 2025 22:55:03 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bf7fc7c1-b494-4202-b511-ba7abfef0dc8 + - 53ff8f5f-e2ac-412b-9631-6fddd029ae51 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 94.320262ms + duration: 96.360034ms - id: 33 request: proto: HTTP/1.1 @@ -1670,7 +1430,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/private_nics method: GET response: proto: HTTP/2.0 @@ -1680,33 +1440,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:06 GMT + - Wed, 29 Oct 2025 22:55:03 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bf7fad05-fcea-4160-b490-96d5c110eecb + - 27e31267-2736-4e72-ae52-787c5407dfc8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 100.224026ms + duration: 111.207218ms - id: 34 request: proto: HTTP/1.1 @@ -1719,7 +1471,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1731,31 +1491,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7eeec4b6-1fe2-45d9-80d8-3006093febe7 + - 23bd61b0-ac83-4bd7-adaf-f225a2811a84 status: 200 OK code: 200 - duration: 43.128922ms + duration: 45.963311ms - id: 35 request: proto: HTTP/1.1 @@ -1772,7 +1524,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -1780,31 +1532,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1728 + content_length: 1737 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"}}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["control"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:01.134529+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1737" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5137d59e-9b40-494e-b641-6c6395129bc7 + - 6e24ea0c-034e-4043-80b0-337ee5cb0163 status: 200 OK code: 200 - duration: 171.624177ms + duration: 140.470522ms - id: 36 request: proto: HTTP/1.1 @@ -1821,7 +1565,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 method: GET response: proto: HTTP/2.0 @@ -1829,31 +1573,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + 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-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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4f696818-eb10-4822-9698-0b7e2469ca58"}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fe35e805-a7d6-471d-9073-4d805bd25437 - status: 200 OK - code: 200 - duration: 149.909054ms + - aeff8d3e-0a9c-4bcc-a944-7523a0398aba + status: 404 Not Found + code: 404 + duration: 30.43368ms - id: 37 request: proto: HTTP/1.1 @@ -1870,7 +1606,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -1878,31 +1614,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1728 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","type":"not_found"}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1728" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - adefb3af-9658-4608-affd-f307aa36378c - status: 404 Not Found - code: 404 - duration: 27.919581ms + - bfc72a9c-c7f4-45f9-9392-b75c1b9ea6ca + status: 200 OK + code: 200 + duration: 170.880287ms - id: 38 request: proto: HTTP/1.1 @@ -1919,7 +1647,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 method: GET response: proto: HTTP/2.0 @@ -1927,31 +1655,23 @@ 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":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","type":"not_found"}' + body: '{"id":"4f696818-eb10-4822-9698-0b7e2469ca58", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.287790Z", "updated_at":"2025-10-29T22:55:01.287790Z", "references":[{"id":"2aa0885b-dbd7-4428-a206-d3acd6173266", "product_resource_type":"instance_server", "product_resource_id":"2bb452d6-9784-45ac-8627-ffff97dd2451", "created_at":"2025-10-29T22:55:01.287790Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "705" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 36337067-cbcf-4fe1-81ba-3d56069e8a5e - status: 404 Not Found - code: 404 - duration: 48.884669ms + - 2bf02ec9-904a-453b-a40f-a4fb07f22ba8 + status: 200 OK + code: 200 + duration: 82.075451ms - id: 39 request: proto: HTTP/1.1 @@ -1968,7 +1688,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 method: GET response: proto: HTTP/2.0 @@ -1976,31 +1696,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 143 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f15a087-0697-40f6-b645-b2020057a336"}' headers: Content-Length: - - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d7285a1b-ee7d-4a40-b24f-8073c834950e - status: 200 OK - code: 200 - duration: 492.039086ms + - ee82a411-c902-4467-88fb-1c432bbe7a71 + status: 404 Not Found + code: 404 + duration: 32.067246ms - id: 40 request: proto: HTTP/1.1 @@ -2017,7 +1729,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 method: GET response: proto: HTTP/2.0 @@ -2025,31 +1737,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 705 uncompressed: false - body: '{"user_data":[]}' + body: '{"id":"6f15a087-0697-40f6-b645-b2020057a336", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.309950Z", "updated_at":"2025-10-29T22:55:01.309950Z", "references":[{"id":"4c6570ff-311b-4004-9d2a-5ba8edbee7db", "product_resource_type":"instance_server", "product_resource_id":"5482e87c-50db-46f1-a362-030d2b4c49c7", "created_at":"2025-10-29T22:55:01.309950Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "705" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c9350d9c-5381-4adf-9e30-247b1b5b6a47 + - a4e5f912-58ef-4c69-8d85-97d34459df5f status: 200 OK code: 200 - duration: 118.19308ms + duration: 79.531434ms - id: 41 request: proto: HTTP/1.1 @@ -2066,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/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/user_data method: GET response: proto: HTTP/2.0 @@ -2074,35 +1778,23 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b2ee8590-c9db-46df-9f15-1f6e9121d9df - X-Total-Count: - - "0" + - d66389d1-46d6-4174-a681-54020e38df2b status: 200 OK code: 200 - duration: 94.843855ms + duration: 89.039525ms - id: 42 request: proto: HTTP/1.1 @@ -2119,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/56cbd02d-683d-4c7d-b3cc-0beb73dc859d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/private_nics method: GET response: proto: HTTP/2.0 @@ -2127,31 +1819,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 20 uncompressed: false - 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"}' + body: '{"private_nics": []}' headers: Content-Length: - - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:55:04 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9e4878c3-84cb-47bb-9237-64a919599438 + - dc685c3f-682d-41a6-94b9-b26ee1d1d722 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 1.327899399s + duration: 101.679872ms - id: 43 request: proto: HTTP/1.1 @@ -2168,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/e01c2167-95ea-4bed-a6f0-f5198840c5fa/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/user_data method: GET response: proto: HTTP/2.0 @@ -2178,29 +1866,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 84a4ea27-6a83-44f1-80f0-7655dcfcca59 + - af15da88-45c0-4a5c-999f-2bce994c6965 status: 200 OK code: 200 - duration: 106.123904ms + duration: 116.244217ms - id: 44 request: proto: HTTP/1.1 @@ -2217,7 +1897,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/private_nics method: GET response: proto: HTTP/2.0 @@ -2227,33 +1907,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:08 GMT + - Wed, 29 Oct 2025 22:55:04 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5eadddf4-ccac-4638-9af6-2cf6dc0f0bdd + - 76e0b47e-958c-4149-bfb1-624ec874cd7f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 100.672719ms + duration: 159.080542ms - id: 45 request: proto: HTTP/1.1 @@ -2270,7 +1942,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -2278,31 +1950,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + 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-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"}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1774" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8888ddb8-5382-4b01-9ac8-0bbea3a28c6a + - 3ccadca2-cfd8-47d7-8ecc-05c7fb2131aa status: 200 OK code: 200 - duration: 156.39973ms + duration: 157.86605ms - id: 46 request: proto: HTTP/1.1 @@ -2319,7 +1983,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -2327,31 +1991,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + 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.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"}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1728" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0ea85d32-cdea-4438-9845-83ec2113ce90 + - 7b27c235-c378-442d-acd8-763614f55f01 status: 200 OK code: 200 - duration: 168.530604ms + duration: 161.494355ms - id: 47 request: proto: HTTP/1.1 @@ -2368,7 +2024,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -2376,31 +2032,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + content_length: 1737 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.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"}}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["control"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:01.134529+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1737" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1df82a7e-4056-489f-b328-1a0d12a08c32 + - 8963ed96-74eb-4a5e-9582-f46af26a0c7f status: 200 OK code: 200 - duration: 166.69807ms + duration: 161.176231ms - id: 48 request: proto: HTTP/1.1 @@ -2417,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/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -2425,31 +2073,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + 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-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"}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1774" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5a9a6604-9072-4c79-9b66-1e95a462d903 + - f83e093c-54a5-46ce-a59b-0215ff24ba15 status: 200 OK code: 200 - duration: 137.603157ms + duration: 170.128872ms - id: 49 request: proto: HTTP/1.1 @@ -2466,7 +2106,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -2474,80 +2114,66 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + 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.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"}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1728" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 264d7dc8-a8e0-43a1-9a3f-5c838a724044 + - f34b0e8c-7108-4a6a-9cd4-793ae4a3f035 status: 200 OK code: 200 - duration: 117.806679ms + duration: 155.17577ms - id: 50 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: '{"tags":["conntrol"]}' 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/56cbd02d-683d-4c7d-b3cc-0beb73dc859d - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1738 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","type":"not_found"}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["conntrol"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:05.169061+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1738" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f93b6a43-6881-42aa-a83b-e0a58a8d91bd - status: 404 Not Found - code: 404 - duration: 31.224705ms + - 69f2ee1d-8022-4fc6-ad7b-8bc14af8226f + status: 200 OK + code: 200 + duration: 408.481764ms - id: 51 request: proto: HTTP/1.1 @@ -2564,7 +2190,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -2572,31 +2198,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 1774 uncompressed: false - 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"}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1774" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c8d4cc73-f031-4cf2-b756-3531afbe3c92 + - 0a50995f-47d8-4674-a113-67844ccf6046 status: 200 OK code: 200 - duration: 80.094196ms + duration: 139.690623ms - id: 52 request: proto: HTTP/1.1 @@ -2613,7 +2231,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 method: GET response: proto: HTTP/2.0 @@ -2621,31 +2239,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 143 uncompressed: false - body: '{"user_data":[]}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f15a087-0697-40f6-b645-b2020057a336"}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 693d7e12-93e8-4e1d-a7e1-b9b0f6aee72c - status: 200 OK - code: 200 - duration: 114.161598ms + - 4739f2db-286b-431d-ae2f-acc426f2e15d + status: 404 Not Found + code: 404 + duration: 29.289432ms - id: 53 request: proto: HTTP/1.1 @@ -2662,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/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -2670,35 +2280,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1784 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["conntrol"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:05.169061+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1784" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa6f1831-5beb-4e51-b797-6156551397b5 - X-Total-Count: - - "0" + - d0202fbf-13c6-4adc-816f-2787bb2120b2 status: 200 OK code: 200 - duration: 92.402041ms + duration: 159.745856ms - id: 54 request: proto: HTTP/1.1 @@ -2715,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/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 method: GET response: proto: HTTP/2.0 @@ -2723,31 +2321,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + 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-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"}}' + body: '{"id":"6f15a087-0697-40f6-b645-b2020057a336", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.309950Z", "updated_at":"2025-10-29T22:55:01.309950Z", "references":[{"id":"4c6570ff-311b-4004-9d2a-5ba8edbee7db", "product_resource_type":"instance_server", "product_resource_id":"5482e87c-50db-46f1-a362-030d2b4c49c7", "created_at":"2025-10-29T22:55:01.309950Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "705" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cbc77fcb-dac8-4f06-9092-b5343f729603 + - eb2d3035-7055-4e9f-b15c-ec05ce28ca43 status: 200 OK code: 200 - duration: 139.396128ms + duration: 97.515175ms - id: 55 request: proto: HTTP/1.1 @@ -2764,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-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/user_data method: GET response: proto: HTTP/2.0 @@ -2772,31 +2362,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1728 + 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-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"}}' + body: '{"user_data": []}' headers: Content-Length: - - "1728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e663df73-9405-4218-9bb7-75ecce6b5459 + - c9d48f16-1369-49c9-8166-48b4cd10c9ca status: 200 OK code: 200 - duration: 133.299673ms + duration: 94.394077ms - id: 56 request: proto: HTTP/1.1 @@ -2813,7 +2395,7 @@ interactions: headers: User-Agent: - scaleway-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/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -2821,31 +2403,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1784 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: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["conntrol"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:05.169061+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1784" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 32489cfd-f676-40fe-b1d3-035b3a89f59f + - 00c5c395-61ea-48ef-99e4-0126fdfa2a00 status: 200 OK code: 200 - duration: 50.36304ms + duration: 169.915974ms - id: 57 request: proto: HTTP/1.1 @@ -2862,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/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/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 method: GET response: proto: HTTP/2.0 @@ -2870,31 +2444,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 143 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: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4f696818-eb10-4822-9698-0b7e2469ca58"}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a27da082-0b28-462c-bb16-5529e958389b - status: 200 OK - code: 200 - duration: 50.087013ms + - b05811d9-5a15-45ad-a319-e7b5b0290959 + status: 404 Not Found + code: 404 + duration: 22.269084ms - id: 58 request: proto: HTTP/1.1 @@ -2911,7 +2477,7 @@ interactions: headers: User-Agent: - scaleway-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/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/private_nics method: GET response: proto: HTTP/2.0 @@ -2919,31 +2485,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 20 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: '{"private_nics": []}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55:05 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ca13e71a-1f9b-4020-8438-c24f2aa51a34 + - d4f65dca-32ff-4b44-96b2-fd8d56d296e0 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 53.216718ms + duration: 142.273041ms - id: 59 request: proto: HTTP/1.1 @@ -2960,7 +2522,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 method: GET response: proto: HTTP/2.0 @@ -2968,31 +2530,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1728 + 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-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"}}' + body: '{"id":"4f696818-eb10-4822-9698-0b7e2469ca58", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.287790Z", "updated_at":"2025-10-29T22:55:01.287790Z", "references":[{"id":"2aa0885b-dbd7-4428-a206-d3acd6173266", "product_resource_type":"instance_server", "product_resource_id":"2bb452d6-9784-45ac-8627-ffff97dd2451", "created_at":"2025-10-29T22:55:01.287790Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "1728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "705" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0be18151-dcf1-41e0-97d4-fb8de2ba2dc0 + - 709ae66e-ba3e-48a6-93f9-27ee2ec5224e status: 200 OK code: 200 - duration: 146.277634ms + duration: 77.838719ms - id: 60 request: proto: HTTP/1.1 @@ -3009,7 +2563,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/user_data method: GET response: proto: HTTP/2.0 @@ -3017,31 +2571,23 @@ 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":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","type":"not_found"}' + body: '{"user_data": []}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 34ed6cd3-a688-4be6-a65f-1d1f87c120b4 - status: 404 Not Found - code: 404 - duration: 27.008754ms + - d60c5bf2-3e64-41cf-85b5-7fcb192cca8c + status: 200 OK + code: 200 + duration: 97.300362ms - id: 61 request: proto: HTTP/1.1 @@ -3058,7 +2604,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/private_nics method: GET response: proto: HTTP/2.0 @@ -3066,31 +2612,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + 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-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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55:06 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 62bbeb4d-de54-4a16-8477-eecf2f557772 + - 01789952-79d2-4cbe-a93b-484323be5a22 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 154.986785ms + duration: 102.98855ms - id: 62 request: proto: HTTP/1.1 @@ -3107,7 +2649,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -3115,31 +2657,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1774 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","type":"not_found"}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1774" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5d97776d-9bbd-457d-b710-7e308074886a - status: 404 Not Found - code: 404 - duration: 36.310897ms + - 9aaeaa27-550e-4593-9ee2-e400096ec810 + status: 200 OK + code: 200 + duration: 150.532277ms - id: 63 request: proto: HTTP/1.1 @@ -3156,7 +2690,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -3164,31 +2698,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 1738 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"}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["conntrol"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:05.169061+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1738" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 89b7b2f0-b99a-4d90-87d9-c63ab682ca49 + - 572e02ef-44d6-4b61-beb1-f3d6b78c7e9d status: 200 OK code: 200 - duration: 93.316946ms + duration: 132.308718ms - id: 64 request: proto: HTTP/1.1 @@ -3201,11 +2727,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d + 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 @@ -3213,31 +2747,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 1403 uncompressed: false - 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"}' + body: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f80b5269-71cc-4b34-9a23-374ac7d520c6 + - f4d1255c-3b07-40c3-8522-b9c960585eb5 status: 200 OK code: 200 - duration: 116.879161ms + duration: 48.00478ms - id: 65 request: proto: HTTP/1.1 @@ -3250,11 +2776,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + 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 @@ -3262,31 +2796,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1403 uncompressed: false - body: '{"user_data":[]}' + body: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4c36c591-1dae-4600-b2fe-4ef385b616ca + - a687955e-9979-4b3b-9226-b00ada65950f status: 200 OK code: 200 - duration: 101.735512ms + duration: 45.588162ms - id: 66 request: proto: HTTP/1.1 @@ -3299,11 +2825,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + 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 @@ -3311,35 +2845,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1403 uncompressed: false - body: '{"private_nics":[]}' + body: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 579696ff-29c8-4f0a-9598-d29e427395a6 - X-Total-Count: - - "0" + - 84af056b-2d43-45f7-bd7b-ed1ab1a91d76 status: 200 OK code: 200 - duration: 95.014377ms + duration: 54.239979ms - id: 67 request: proto: HTTP/1.1 @@ -3356,7 +2878,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -3364,31 +2886,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1738 uncompressed: false - body: '{"user_data":[]}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["conntrol"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:05.169061+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1738" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c0bf015a-2773-4146-a329-cd7eca5f6775 + - 2d7618c2-6aeb-4dd0-830f-b77c9e9b8591 status: 200 OK code: 200 - duration: 107.198269ms + duration: 144.885247ms - id: 68 request: proto: HTTP/1.1 @@ -3405,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/e01c2167-95ea-4bed-a6f0-f5198840c5fa/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 method: GET response: proto: HTTP/2.0 @@ -3413,35 +2927,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 143 uncompressed: false - body: '{"private_nics":[]}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4f696818-eb10-4822-9698-0b7e2469ca58"}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8fc5b119-e32f-4ba0-b292-bac4597a9777 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 104.591104ms + - f68df96e-5149-4f7c-83a8-81c6d2f26f8a + status: 404 Not Found + code: 404 + duration: 30.126978ms - id: 69 request: proto: HTTP/1.1 @@ -3458,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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -3466,31 +2968,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1728 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: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1728" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0b412bde-81e0-4d42-b071-12f017eb33e9 + - 6e561d35-1910-4581-8a85-0b2189cf9fbe status: 200 OK code: 200 - duration: 56.826394ms + duration: 126.997627ms - id: 70 request: proto: HTTP/1.1 @@ -3507,7 +3001,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 method: GET response: proto: HTTP/2.0 @@ -3515,31 +3009,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1728 + 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-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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f15a087-0697-40f6-b645-b2020057a336"}' headers: Content-Length: - - "1728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a43a7b56-3221-4867-816b-2e42e7403006 - status: 200 OK - code: 200 - duration: 152.608209ms + - 27776bd5-3f65-434f-bd72-ccaefab7c168 + status: 404 Not Found + code: 404 + duration: 26.651849ms - id: 71 request: proto: HTTP/1.1 @@ -3556,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/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 method: GET response: proto: HTTP/2.0 @@ -3564,31 +3050,23 @@ 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":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","type":"not_found"}' + body: '{"id":"4f696818-eb10-4822-9698-0b7e2469ca58", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.287790Z", "updated_at":"2025-10-29T22:55:01.287790Z", "references":[{"id":"2aa0885b-dbd7-4428-a206-d3acd6173266", "product_resource_type":"instance_server", "product_resource_id":"2bb452d6-9784-45ac-8627-ffff97dd2451", "created_at":"2025-10-29T22:55:01.287790Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "705" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 76a1e103-606f-4971-be90-43694e25a0dc - status: 404 Not Found - code: 404 - duration: 37.921295ms + - 600b0f49-0f67-47b5-93d4-e149a8e9d9de + status: 200 OK + code: 200 + duration: 85.561201ms - id: 72 request: proto: HTTP/1.1 @@ -3605,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/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 method: GET response: proto: HTTP/2.0 @@ -3613,31 +3091,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + 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-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"}}' + body: '{"id":"6f15a087-0697-40f6-b645-b2020057a336", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.309950Z", "updated_at":"2025-10-29T22:55:01.309950Z", "references":[{"id":"4c6570ff-311b-4004-9d2a-5ba8edbee7db", "product_resource_type":"instance_server", "product_resource_id":"5482e87c-50db-46f1-a362-030d2b4c49c7", "created_at":"2025-10-29T22:55:01.309950Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "705" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8c744c9d-56bc-4bbb-8153-9f8e91fc73d2 + - d31226f3-0306-44dd-8744-50eb899dbdfa status: 200 OK code: 200 - duration: 163.751061ms + duration: 92.143339ms - id: 73 request: proto: HTTP/1.1 @@ -3654,7 +3124,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/user_data method: GET response: proto: HTTP/2.0 @@ -3662,31 +3132,23 @@ 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":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","type":"not_found"}' + body: '{"user_data": []}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 67d8317e-fc94-48ad-84b6-634813939d8d - status: 404 Not Found - code: 404 - duration: 21.530288ms + - 34cd4625-6699-4de2-9fd0-1ba49e8fd672 + status: 200 OK + code: 200 + duration: 110.415378ms - id: 74 request: proto: HTTP/1.1 @@ -3703,7 +3165,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/user_data method: GET response: proto: HTTP/2.0 @@ -3711,31 +3173,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 17 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"}' + body: '{"user_data": []}' headers: Content-Length: - - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8fe4e79a-477d-4d9b-92f0-7836f7726e37 + - d744d54c-7055-4218-b3d0-ef8a2cc10135 status: 200 OK code: 200 - duration: 99.751275ms + duration: 104.159329ms - id: 75 request: proto: HTTP/1.1 @@ -3752,7 +3206,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/private_nics method: GET response: proto: HTTP/2.0 @@ -3760,31 +3214,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 20 uncompressed: false - 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"}' + body: '{"private_nics": []}' headers: Content-Length: - - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55:07 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7c033633-a9ed-4da3-8085-62cff8052fd9 + - e9e7a1d6-22d0-4687-8fab-2535aeccc3c8 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 103.443534ms + duration: 107.390663ms - id: 76 request: proto: HTTP/1.1 @@ -3801,7 +3251,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/private_nics method: GET response: proto: HTTP/2.0 @@ -3809,31 +3259,27 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55:07 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dc6fd7bc-01e4-4834-acc0-9b860a945b4b + - f9baa9ed-652d-49b5-bfe3-6e930e184e8c + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 100.833783ms + duration: 101.634107ms - id: 77 request: proto: HTTP/1.1 @@ -3846,11 +3292,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/user_data + 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 @@ -3858,31 +3312,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1403 uncompressed: false - body: '{"user_data":[]}' + body: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 402b90ec-6ede-4163-93d7-140498c0cdc2 + - 8ef08d66-687e-4599-a036-309de519cd31 status: 200 OK code: 200 - duration: 83.107093ms + duration: 59.033894ms - id: 78 request: proto: HTTP/1.1 @@ -3899,7 +3345,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -3907,35 +3353,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1784 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["conntrol"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:05.169061+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1784" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dfae4245-35ca-4281-9c67-697c30e8f243 - X-Total-Count: - - "0" + - 18796773-6ab7-4873-b2e9-51f01b810d00 status: 200 OK code: 200 - duration: 105.016061ms + duration: 145.301586ms - id: 79 request: proto: HTTP/1.1 @@ -3952,7 +3386,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 method: GET response: proto: HTTP/2.0 @@ -3960,35 +3394,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 143 uncompressed: false - body: '{"private_nics":[]}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4f696818-eb10-4822-9698-0b7e2469ca58"}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d0e69627-96db-4b69-ade5-0b96292cdf86 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 80.114105ms + - 64a58f6b-7f11-4848-acab-9a8ae71fa03f + status: 404 Not Found + code: 404 + duration: 33.287608ms - id: 80 request: proto: HTTP/1.1 @@ -4005,7 +3427,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -4013,31 +3435,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + 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.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"}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1728" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 099e4a79-78aa-4797-a7d8-1111b2c182d5 + - 0cdfe1c9-9114-4967-9e0b-282226dc9c05 status: 200 OK code: 200 - duration: 141.756594ms + duration: 127.41114ms - id: 81 request: proto: HTTP/1.1 @@ -4054,7 +3468,7 @@ interactions: headers: User-Agent: - scaleway-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/6d3c053e-c728-4294-b23a-560b62a4d592 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 method: GET response: proto: HTTP/2.0 @@ -4062,31 +3476,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 971 + 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","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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f15a087-0697-40f6-b645-b2020057a336"}' headers: Content-Length: - - "971" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7898fd47-ece7-411c-ab27-2d7f6729b2bd - status: 200 OK - code: 200 - duration: 116.923576ms + - 2f4ce748-0ce3-481b-96e2-96fdefca9311 + status: 404 Not Found + code: 404 + duration: 31.954886ms - id: 82 request: proto: HTTP/1.1 @@ -4103,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/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 method: GET response: proto: HTTP/2.0 @@ -4111,31 +3517,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + 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-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"}}' + body: '{"id":"4f696818-eb10-4822-9698-0b7e2469ca58", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.287790Z", "updated_at":"2025-10-29T22:55:01.287790Z", "references":[{"id":"2aa0885b-dbd7-4428-a206-d3acd6173266", "product_resource_type":"instance_server", "product_resource_id":"2bb452d6-9784-45ac-8627-ffff97dd2451", "created_at":"2025-10-29T22:55:01.287790Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "705" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 177aa290-f4e6-4435-8d7c-7a26aafe48b5 + - 24c96400-f0b5-405f-a8d4-a95b6569671e status: 200 OK code: 200 - duration: 168.163461ms + duration: 119.896508ms - id: 83 request: proto: HTTP/1.1 @@ -4152,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/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 method: GET response: proto: HTTP/2.0 @@ -4160,31 +3558,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + 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-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"}}' + body: '{"id":"6f15a087-0697-40f6-b645-b2020057a336", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.309950Z", "updated_at":"2025-10-29T22:55:01.309950Z", "references":[{"id":"4c6570ff-311b-4004-9d2a-5ba8edbee7db", "product_resource_type":"instance_server", "product_resource_id":"5482e87c-50db-46f1-a362-030d2b4c49c7", "created_at":"2025-10-29T22:55:01.309950Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "705" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6706b05f-0760-4245-8e5e-4d4c94529927 + - bb78c204-f15c-41e1-a4ac-867576255a86 status: 200 OK code: 200 - duration: 175.454826ms + duration: 79.634507ms - id: 84 request: proto: HTTP/1.1 @@ -4201,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/56cbd02d-683d-4c7d-b3cc-0beb73dc859d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/user_data method: GET response: proto: HTTP/2.0 @@ -4209,84 +3599,64 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 17 uncompressed: false - 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"}' + body: '{"user_data": []}' headers: Content-Length: - - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b2b4301e-3473-445f-b5e3-f7152ee94c69 + - f057b2c6-38cf-4d82-a244-5b6d19b21a24 status: 200 OK code: 200 - duration: 92.534531ms + duration: 85.749093ms - id: 85 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/e01c2167-95ea-4bed-a6f0-f5198840c5fa/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/user_data + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 17 uncompressed: false - 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"}}' + body: '{"user_data": []}' headers: Content-Length: - - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fb205500-020a-4bdc-90ca-cb2326fc536f - status: 202 Accepted - code: 202 - duration: 259.831299ms + - d4812628-a01b-4256-a084-5f1124df18e2 + status: 200 OK + code: 200 + duration: 111.886089ms - id: 86 request: proto: HTTP/1.1 @@ -4303,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/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/private_nics method: GET response: proto: HTTP/2.0 @@ -4311,31 +3681,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1744 + 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-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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "1744" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:55:08 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5f796668-0bac-4f40-9942-4e9ad8f84ae5 + - b0ad8a09-140f-4da1-a9b5-8b5c83795247 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 142.810389ms + duration: 108.530133ms - id: 87 request: proto: HTTP/1.1 @@ -4352,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/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/private_nics method: GET response: proto: HTTP/2.0 @@ -4360,84 +3726,68 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1878 + 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-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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "1878" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:18 GMT + - Wed, 29 Oct 2025 22:55:08 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c4903511-7463-4b83-b528-b5caf885e981 + - b96be744-1b01-444e-83e3-0f9791f7f561 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 129.826875ms + duration: 111.262352ms - id: 88 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/e01c2167-95ea-4bed-a6f0-f5198840c5fa/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 1774 uncompressed: false - 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"}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "353" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1774" Content-Type: - application/json Date: - - 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 00e88fc9-3cb9-4c13-8e3e-65dc8979f5c3 - status: 202 Accepted - code: 202 - duration: 299.692626ms + - 1ae6a28a-0871-4bdd-b9ed-c0c38fe8d7ff + status: 200 OK + code: 200 + duration: 167.895838ms - id: 89 request: proto: HTTP/1.1 @@ -4454,7 +3804,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 method: GET response: proto: HTTP/2.0 @@ -4462,31 +3812,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 971 uncompressed: 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.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"}}' + body: '{"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}' headers: Content-Length: - - "1841" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "971" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:18 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f5fc69c2-ad4c-4c09-b85f-4c4cf0425ec9 + - 4391e42b-3008-4da1-9950-c57696112d3c status: 200 OK code: 200 - duration: 130.876232ms + duration: 43.276258ms - id: 90 request: proto: HTTP/1.1 @@ -4503,7 +3845,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -4511,31 +3853,23 @@ 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":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","type":"not_found"}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1728" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 42ebd086-fde2-4f94-85ac-27476bfbfd79 - status: 404 Not Found - code: 404 - duration: 49.26601ms + - 44942e98-b3dd-48a1-afe0-0d31414d9431 + status: 200 OK + code: 200 + duration: 139.616124ms - id: 91 request: proto: HTTP/1.1 @@ -4552,7 +3886,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -4560,31 +3894,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1774 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","type":"not_found"}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:01.162122+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1774" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bc97792d-74f5-49f6-9862-7801734be4c9 - status: 404 Not Found - code: 404 - duration: 26.511987ms + - 568b8616-485c-40c8-bf39-b64119e4442e + status: 200 OK + code: 200 + duration: 169.388449ms - id: 92 request: proto: HTTP/1.1 @@ -4601,7 +3927,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 method: GET response: proto: HTTP/2.0 @@ -4609,78 +3935,68 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 498 + content_length: 705 uncompressed: false - 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"}' + body: '{"id":"6f15a087-0697-40f6-b645-b2020057a336", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.309950Z", "updated_at":"2025-10-29T22:55:01.309950Z", "references":[{"id":"4c6570ff-311b-4004-9d2a-5ba8edbee7db", "product_resource_type":"instance_server", "product_resource_id":"5482e87c-50db-46f1-a362-030d2b4c49c7", "created_at":"2025-10-29T22:55:01.309950Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "498" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "705" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1867d3f4-d29b-4bc1-a044-cd23871e8723 + - d19e7fa0-53e2-4b7c-bf49-3bc0bbb16dff status: 200 OK code: 200 - duration: 88.010542ms + duration: 85.331281ms - id: 93 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/56cbd02d-683d-4c7d-b3cc-0beb73dc859d - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 357 uncompressed: false - body: "" + body: '{"task": {"id": "da20df2b-9d2f-4e24-bbf4-f126f7243b23", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/action", "href_result": "/servers/5482e87c-50db-46f1-a362-030d2b4c49c7", "started_at": "2025-10-29T22:55:09.117062+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "357" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT + - Wed, 29 Oct 2025 22:55:09 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/da20df2b-9d2f-4e24-bbf4-f126f7243b23 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 356ab2a9-7780-402f-86fb-8390979caa3b - status: 204 No Content - code: 204 - duration: 180.011323ms + - 4113a60a-afc2-47f9-b0ea-c308d6cd848c + status: 202 Accepted + code: 202 + duration: 268.060667ms - id: 94 request: proto: HTTP/1.1 @@ -4697,7 +4013,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -4705,35 +4021,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 1796 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}}}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:08.909742+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1796" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6d2dad21-5d8a-4516-ba6f-fb36b75de881 - X-Total-Count: - - "68" + - e4b013be-28d6-4fd7-8418-cd0f201db162 status: 200 OK code: 200 - duration: 34.675716ms + duration: 152.129515ms - id: 95 request: proto: HTTP/1.1 @@ -4750,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/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -4758,54 +4062,42 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14295 + content_length: 1929 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}}}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:11.436119+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "603", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1929" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:23 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bf3bddcd-e64d-4efb-9d12-1429acc89250 - X-Total-Count: - - "68" + - e3752a3e-a434-4821-946d-a95647471ea8 status: 200 OK code: 200 - duration: 43.832738ms + duration: 138.924253ms - id: 96 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 224 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + 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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/action method: POST response: proto: HTTP/2.0 @@ -4813,33 +4105,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1718 + 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-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"}}' + body: '{"task": {"id": "90032d6e-46f7-4d07-ac49-3fc7ec804c4f", "description": "server_terminate", "status": "pending", "href_from": "/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/action", "href_result": "/servers/5482e87c-50db-46f1-a362-030d2b4c49c7", "started_at": "2025-10-29T22:55:14.659975+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "1718" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "353" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:55:14 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/90032d6e-46f7-4d07-ac49-3fc7ec804c4f Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e39a578-a757-4283-80f5-95905a9842b3 - status: 201 Created - code: 201 - duration: 1.2228284s + - 6506b5ff-6881-4c4a-85af-1a3df2167f7b + status: 202 Accepted + code: 202 + duration: 240.784394ms - id: 97 request: proto: HTTP/1.1 @@ -4856,7 +4140,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -4864,31 +4148,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1718 + content_length: 1892 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"}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:14.467898+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "603", "node_id": "8"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1718" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1892" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - af5c36c1-6afd-46dd-b718-39a63fb9001b + - 5a49d46d-640b-4504-9310-2c80198e6a91 status: 200 OK code: 200 - duration: 161.422208ms + duration: 131.859631ms - id: 98 request: proto: HTTP/1.1 @@ -4905,7 +4181,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -4913,31 +4189,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1718 + content_length: 1892 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"}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:14.467898+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "603", "node_id": "8"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1718" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1892" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e902486b-ce94-4b28-92c8-ac00d89d89c3 + - ebbc11a4-a5e2-462f-8a37-873a1b3a2b54 status: 200 OK code: 200 - duration: 148.343867ms + duration: 129.475505ms - id: 99 request: proto: HTTP/1.1 @@ -4954,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/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -4962,31 +4230,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1718 + content_length: 1892 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"}}' + body: '{"server": {"id": "5482e87c-50db-46f1-a362-030d2b4c49c7", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6f15a087-0697-40f6-b645-b2020057a336", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.162122+00:00", "modification_date": "2025-10-29T22:55:14.467898+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "603", "node_id": "8"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1718" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1892" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dfd9cc11-eae6-4b50-bb44-3c5c6dc6592e + - d479f40a-c98f-4574-b87e-ef7ce526ba01 status: 200 OK code: 200 - duration: 160.483519ms + duration: 159.720558ms - id: 100 request: proto: HTTP/1.1 @@ -5003,7 +4263,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 method: GET response: proto: HTTP/2.0 @@ -5013,29 +4273,21 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "5482e87c-50db-46f1-a362-030d2b4c49c7"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4e8a2b6-ee64-4c0b-852d-8fa9a80e4291 + - aa534ec2-5b5f-49d2-a70e-62c2b780715c status: 404 Not Found code: 404 - duration: 30.997174ms + duration: 42.38324ms - id: 101 request: proto: HTTP/1.1 @@ -5052,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/block/v1alpha1/zones/fr-par-1/volumes/6263783c-22b5-4fa4-8834-dcd9a0954991 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 method: GET response: proto: HTTP/2.0 @@ -5060,31 +4312,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 143 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6f15a087-0697-40f6-b645-b2020057a336"}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dccd56f5-282f-47d6-ab19-1f777a91da9d - status: 200 OK - code: 200 - duration: 97.071836ms + - 55009d2e-965b-466b-9dff-3a2fa9819ba2 + status: 404 Not Found + code: 404 + duration: 34.756417ms - id: 102 request: proto: HTTP/1.1 @@ -5101,7 +4345,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 method: GET response: proto: HTTP/2.0 @@ -5109,31 +4353,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 498 uncompressed: false - body: '{"user_data":[]}' + body: '{"id":"6f15a087-0697-40f6-b645-b2020057a336", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.309950Z", "updated_at":"2025-10-29T22:55:25.986901Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:25.986901Z", "zone":"fr-par-1"}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "498" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 24b68c81-c40c-4a10-9f92-0fc72021e4af + - c79304b5-dd97-47e5-a683-08df15fc2e67 status: 200 OK code: 200 - duration: 104.102943ms + duration: 86.688153ms - id: 103 request: proto: HTTP/1.1 @@ -5150,43 +4386,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 + 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, 15 Oct 2025 15:03:25 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 92007e8e-ffa9-4c4a-a320-fe08752ccece - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 105.896115ms + - 75c02aaa-a1fb-4f4c-a82e-9e236e450961 + status: 204 No Content + code: 204 + duration: 135.617775ms - id: 104 request: proto: HTTP/1.1 @@ -5199,11 +4421,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -5211,31 +4435,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1718 + content_length: 39264 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"}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "1718" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55:30 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 41d6c3ae-0a10-4c17-b5d7-13af9790c9f2 + - 56b16a78-535f-4132-b3a6-96f96c2665e2 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 164.456105ms + duration: 44.871212ms - id: 105 request: proto: HTTP/1.1 @@ -5248,11 +4468,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -5260,80 +4482,72 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1728 + 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-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"}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "1728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "14295" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55:30 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 343e8855-4aef-4f33-ae7b-bd11599b6738 + - 0d96129c-d540-4491-b789-7b35dd24ff66 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 156.266757ms + duration: 49.412255ms - id: 106 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 240 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":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["main"]}' 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/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - 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: 1260 + content_length: 1770 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: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:31.088975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1770" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55:31 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae972800-bb40-43a8-8199-ab19b14dab8c - status: 200 OK - code: 200 - duration: 46.033854ms + - b6ad1e0f-668d-4266-bd0e-8afb8d3826af + status: 201 Created + code: 201 + duration: 1.074311159s - id: 107 request: proto: HTTP/1.1 @@ -5350,7 +4564,7 @@ interactions: headers: User-Agent: - scaleway-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/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 method: GET response: proto: HTTP/2.0 @@ -5358,31 +4572,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1770 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: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:31.088975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1770" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4463a4b7-add2-4b5d-a598-6f2e43248224 + - 82a5c50e-97f9-4abd-bf42-3a477403f650 status: 200 OK code: 200 - duration: 54.468332ms + duration: 138.325378ms - id: 108 request: proto: HTTP/1.1 @@ -5399,7 +4605,7 @@ interactions: headers: User-Agent: - scaleway-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/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 method: GET response: proto: HTTP/2.0 @@ -5407,31 +4613,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1770 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: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:31.088975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1770" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4af6e256-8b3d-4038-9d03-c4d3c8acddef + - e00c200a-9c52-4ebf-b692-450c859554a7 status: 200 OK code: 200 - duration: 51.843753ms + duration: 129.081862ms - id: 109 request: proto: HTTP/1.1 @@ -5448,7 +4646,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 method: GET response: proto: HTTP/2.0 @@ -5456,31 +4654,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1728 + content_length: 1770 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"}}' + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:31.088975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1770" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 727acbc9-9088-4cd2-a6bd-da734fa3b15a + - 9025a78c-2404-46b4-ad03-f662ed28107e status: 200 OK code: 200 - duration: 162.079051ms + duration: 149.804746ms - id: 110 request: proto: HTTP/1.1 @@ -5497,7 +4687,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/02442d1b-ca87-4923-b82e-2184566848c9 method: GET response: proto: HTTP/2.0 @@ -5507,29 +4697,21 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "02442d1b-ca87-4923-b82e-2184566848c9"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c27245b2-4e8d-42cc-8a6a-08ce87d24da5 + - e348bd94-97a6-4f49-b05f-41a4ea1525b8 status: 404 Not Found code: 404 - duration: 25.111963ms + duration: 30.29823ms - id: 111 request: proto: HTTP/1.1 @@ -5546,7 +4728,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/02442d1b-ca87-4923-b82e-2184566848c9 method: GET response: proto: HTTP/2.0 @@ -5554,31 +4736,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1718 + 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-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"}}' + body: '{"id":"02442d1b-ca87-4923-b82e-2184566848c9", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:31.220791Z", "updated_at":"2025-10-29T22:55:31.220791Z", "references":[{"id":"bbff43f1-8034-4b36-8608-1319f1b5db1e", "product_resource_type":"instance_server", "product_resource_id":"1a862eb0-b63b-4128-bd82-83151709b765", "created_at":"2025-10-29T22:55:31.220791Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "1718" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e8d0194e-0bca-41b8-ac7d-711ce63eeaf1 + - fee4179d-3ac1-4ea4-b2f8-9b7fce8673b6 status: 200 OK code: 200 - duration: 152.89054ms + duration: 98.489142ms - id: 112 request: proto: HTTP/1.1 @@ -5595,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/fr-par-1/volumes/6263783c-22b5-4fa4-8834-dcd9a0954991 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765/user_data method: GET response: proto: HTTP/2.0 @@ -5603,31 +4777,23 @@ 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":"6263783c-22b5-4fa4-8834-dcd9a0954991","type":"not_found"}' + body: '{"user_data": []}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2ec86bbe-3ede-435f-907e-31fb8a1b667e - status: 404 Not Found - code: 404 - duration: 34.138862ms + - 1c224bb9-7e32-445f-a29c-9ca417fbbe72 + status: 200 OK + code: 200 + duration: 100.563091ms - id: 113 request: proto: HTTP/1.1 @@ -5644,7 +4810,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765/private_nics method: GET response: proto: HTTP/2.0 @@ -5652,31 +4818,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 20 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"}' + body: '{"private_nics": []}' headers: Content-Length: - - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9fe68a15-9dba-4f26-9e20-778f72b5815d + - 84de0168-1e52-4981-972d-3372cda87134 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 93.961388ms + duration: 104.485045ms - id: 114 request: proto: HTTP/1.1 @@ -5693,7 +4855,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 method: GET response: proto: HTTP/2.0 @@ -5701,31 +4863,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 1724 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"}' + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:31.088975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1724" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 68f1c7d8-7f81-43c0-90e0-446ab3813525 + - b2293d47-50a6-4356-ac56-b97aa273f385 status: 200 OK code: 200 - duration: 88.671774ms + duration: 132.616854ms - id: 115 request: proto: HTTP/1.1 @@ -5742,7 +4896,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -5750,31 +4904,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1738 uncompressed: false - body: '{"user_data":[]}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["conntrol"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:05.169061+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1738" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1ab6a315-8e24-4148-ac09-3200b6ce9122 + - 5943c0e0-d441-4a7b-917c-9432cf629142 status: 200 OK code: 200 - duration: 97.651824ms + duration: 158.030238ms - id: 116 request: proto: HTTP/1.1 @@ -5787,11 +4933,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + 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 @@ -5799,31 +4953,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1403 uncompressed: false - body: '{"user_data":[]}' + body: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4cef6d47-57d1-4ab8-ace3-e7fd150f353d + - b19aefad-bf10-4c4d-bc65-26affd34dba6 status: 200 OK code: 200 - duration: 87.788699ms + duration: 59.65542ms - id: 117 request: proto: HTTP/1.1 @@ -5836,11 +4982,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + 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 @@ -5848,35 +5002,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1403 uncompressed: false - body: '{"private_nics":[]}' + body: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8659d02e-d7f5-4469-b451-391de5c59ec4 - X-Total-Count: - - "0" + - e3a7f878-36cb-45b6-9aca-2d5ca92bd024 status: 200 OK code: 200 - duration: 101.904555ms + duration: 94.572738ms - id: 118 request: proto: HTTP/1.1 @@ -5889,11 +5031,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + 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 @@ -5901,35 +5051,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1403 uncompressed: false - body: '{"private_nics":[]}' + body: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 605a7cf2-26a1-490c-9553-d8d4ab2fd887 - X-Total-Count: - - "0" + - b954db5b-f847-4e86-99c7-8116603a942e status: 200 OK code: 200 - duration: 107.265983ms + duration: 43.912219ms - id: 119 request: proto: HTTP/1.1 @@ -5946,7 +5084,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -5954,31 +5092,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1728 + content_length: 1784 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"}}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["conntrol"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:05.169061+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1784" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9898489d-bb70-4e1b-8efb-01100d53ad72 + - 311c255a-002b-4ba8-a044-7f39962c9efb status: 200 OK code: 200 - duration: 133.721805ms + duration: 134.997225ms - id: 120 request: proto: HTTP/1.1 @@ -5995,7 +5125,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 method: GET response: proto: HTTP/2.0 @@ -6003,31 +5133,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1718 + 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-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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4f696818-eb10-4822-9698-0b7e2469ca58"}' headers: Content-Length: - - "1718" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7a65f6bf-43ea-446f-8381-4f4ce25a6bb1 - status: 200 OK - code: 200 - duration: 162.481606ms + - 96e89259-1a25-41e2-a29d-7b4d11f1eb66 + status: 404 Not Found + code: 404 + duration: 26.742911ms - id: 121 request: proto: HTTP/1.1 @@ -6044,7 +5166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 method: GET response: proto: HTTP/2.0 @@ -6052,31 +5174,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1728 + content_length: 1770 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"}}' + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:31.088975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1770" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 68a4e05f-02e6-41e4-86b0-7befaa665a6a + - 5178ca6c-9c63-4e4a-bd54-93eb36cc90f1 status: 200 OK code: 200 - duration: 155.366441ms + duration: 147.174548ms - id: 122 request: proto: HTTP/1.1 @@ -6093,7 +5207,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/02442d1b-ca87-4923-b82e-2184566848c9 method: GET response: proto: HTTP/2.0 @@ -6101,31 +5215,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1718 + 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-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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "02442d1b-ca87-4923-b82e-2184566848c9"}' headers: Content-Length: - - "1718" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 30f0481e-b5bb-4bd3-96f2-e9c272c06b71 - status: 200 OK - code: 200 - duration: 139.244205ms + - 06f53082-c728-4e15-8256-1b22fe3980d0 + status: 404 Not Found + code: 404 + duration: 30.133311ms - id: 123 request: proto: HTTP/1.1 @@ -6142,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/block/v1alpha1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 method: GET response: proto: HTTP/2.0 @@ -6152,29 +5258,21 @@ interactions: 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"}' + body: '{"id":"4f696818-eb10-4822-9698-0b7e2469ca58", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.287790Z", "updated_at":"2025-10-29T22:55:01.287790Z", "references":[{"id":"2aa0885b-dbd7-4428-a206-d3acd6173266", "product_resource_type":"instance_server", "product_resource_id":"2bb452d6-9784-45ac-8627-ffff97dd2451", "created_at":"2025-10-29T22:55:01.287790Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3588f83e-c73c-446f-9a5f-aade8484aa40 + - cccea50e-95cd-41c7-a3ac-06cbbb870934 status: 200 OK code: 200 - duration: 70.384903ms + duration: 96.887637ms - id: 124 request: proto: HTTP/1.1 @@ -6191,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/block/v1alpha1/zones/fr-par-1/volumes/6263783c-22b5-4fa4-8834-dcd9a0954991 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/02442d1b-ca87-4923-b82e-2184566848c9 method: GET response: proto: HTTP/2.0 @@ -6201,82 +5299,62 @@ interactions: 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"}' + body: '{"id":"02442d1b-ca87-4923-b82e-2184566848c9", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:31.220791Z", "updated_at":"2025-10-29T22:55:31.220791Z", "references":[{"id":"bbff43f1-8034-4b36-8608-1319f1b5db1e", "product_resource_type":"instance_server", "product_resource_id":"1a862eb0-b63b-4128-bd82-83151709b765", "created_at":"2025-10-29T22:55:31.220791Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cab853fa-9c8d-4b9b-9365-d810af1546f8 + - 65438e60-a07e-44c0-b747-589e18cd4006 status: 200 OK code: 200 - duration: 81.856191ms + duration: 86.135511ms - id: 125 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/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/user_data + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 17 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"}}' + body: '{"user_data": []}' headers: Content-Length: - - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 70153b88-0bdc-4d20-80ca-ec605420cd70 - status: 202 Accepted - code: 202 - duration: 251.484973ms + - 3f3876a6-2902-4aed-a0d3-dc3d26bebd3c + status: 200 OK + code: 200 + duration: 97.794834ms - id: 126 request: proto: HTTP/1.1 @@ -6293,7 +5371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765/user_data method: GET response: proto: HTTP/2.0 @@ -6301,84 +5379,68 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + 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-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"}}' + body: '{"user_data": []}' headers: Content-Length: - - "1750" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 36cbbfc9-6d7e-4b95-a1eb-70686bd3a49a + - 6150955e-e431-4398-881c-8388bccb5969 status: 200 OK code: 200 - duration: 221.067437ms + duration: 112.055612ms - id: 127 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/63dca55f-ad4e-432d-b25b-d733e80695e8/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 20 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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - de8ce0f8-3334-4923-8114-73b49db4dfaf - status: 202 Accepted - code: 202 - duration: 758.87227ms + - c302426d-2802-4c2b-9ab1-d6cd2b31f933 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 101.025395ms - id: 128 request: proto: HTTP/1.1 @@ -6395,7 +5457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765/private_nics method: GET response: proto: HTTP/2.0 @@ -6403,31 +5465,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1740 + 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-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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "1740" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a924a9c2-c8b1-489d-825c-f985e44067ba + - bbbd15d6-6268-420d-818c-fc64312b5276 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 147.2974ms + duration: 94.838365ms - id: 129 request: proto: HTTP/1.1 @@ -6444,7 +5502,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -6452,84 +5510,64 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1884 + content_length: 1784 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["conntrol"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:05.169061+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1884" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1784" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5fedf7a6-9f8b-4834-bf20-fe840a5d41d1 + - de047198-987a-4992-ab1e-180e7d000cb6 status: 200 OK code: 200 - duration: 188.523794ms + duration: 148.64088ms - id: 130 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/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 1770 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"}}' + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:31.088975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "353" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1770" 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e37d3d24-c3ad-4f11-821e-ff8f05156a13 - status: 202 Accepted - code: 202 - duration: 304.093175ms + - 7a97f396-a53f-4d90-b9cc-ffd42b00bebe + status: 200 OK + code: 200 + duration: 176.326195ms - id: 131 request: proto: HTTP/1.1 @@ -6546,7 +5584,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -6554,31 +5592,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1874 + content_length: 1738 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["conntrol"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:05.169061+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1874" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1738" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 451f5b6c-a32f-42af-af52-d371b8accaa0 + - 0b082a79-8b79-457c-9260-a5b998f1a0ee status: 200 OK code: 200 - duration: 142.527547ms + duration: 148.28764ms - id: 132 request: proto: HTTP/1.1 @@ -6595,7 +5625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 method: GET response: proto: HTTP/2.0 @@ -6603,84 +5633,64 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1847 + content_length: 1770 uncompressed: 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"}}' + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:31.088975+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1847" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1770" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1195c395-af52-4a42-8361-3b666deb5a9e + - 0b597d2a-3975-4614-bc32-a50094979b49 status: 200 OK code: 200 - duration: 147.210745ms + duration: 124.295533ms - id: 133 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/63dca55f-ad4e-432d-b25b-d733e80695e8/action - method: POST + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/02442d1b-ca87-4923-b82e-2184566848c9 + 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/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"}}' + body: '{"id":"02442d1b-ca87-4923-b82e-2184566848c9", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:31.220791Z", "updated_at":"2025-10-29T22:55:31.220791Z", "references":[{"id":"bbff43f1-8034-4b36-8608-1319f1b5db1e", "product_resource_type":"instance_server", "product_resource_id":"1a862eb0-b63b-4128-bd82-83151709b765", "created_at":"2025-10-29T22:55:31.220791Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "353" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 81730607-2c69-4212-b2f0-d13599554e3d - status: 202 Accepted - code: 202 - duration: 316.770436ms + - 0a201c63-92d8-48b9-a410-5b77ec133fbe + status: 200 OK + code: 200 + duration: 91.765369ms - id: 134 request: proto: HTTP/1.1 @@ -6697,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/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 method: GET response: proto: HTTP/2.0 @@ -6705,129 +5715,113 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1837 + content_length: 705 uncompressed: 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"}}' + body: '{"id":"4f696818-eb10-4822-9698-0b7e2469ca58", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.287790Z", "updated_at":"2025-10-29T22:55:01.287790Z", "references":[{"id":"2aa0885b-dbd7-4428-a206-d3acd6173266", "product_resource_type":"instance_server", "product_resource_id":"2bb452d6-9784-45ac-8627-ffff97dd2451", "created_at":"2025-10-29T22:55:01.287790Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "1837" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "705" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:34 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1f1689ca-0e60-49f7-9796-474988750735 + - b116b794-eb1c-41c4-93d3-fd9ab56e6352 status: 200 OK code: 200 - duration: 143.896263ms + duration: 95.745492ms - id: 135 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/57d06475-4195-4d4a-ad7b-c120eeb2a7ee - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765/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":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","type":"not_found"}' + body: '{"task": {"id": "11c636fe-c848-4977-8087-09110a283696", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/1a862eb0-b63b-4128-bd82-83151709b765/action", "href_result": "/servers/1a862eb0-b63b-4128-bd82-83151709b765", "started_at": "2025-10-29T22:55:34.612689+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "357" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:38 GMT + - Wed, 29 Oct 2025 22:55:34 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/11c636fe-c848-4977-8087-09110a283696 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 66c2e922-4257-4ae3-bafc-e624943f13f5 - status: 404 Not Found - code: 404 - duration: 48.066759ms + - 20d8690d-c4f6-4b5e-a558-983b778cead0 + status: 202 Accepted + code: 202 + duration: 271.806099ms - id: 136 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/db8bd0c7-9f6f-4063-8ddb-37972b309f89 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/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":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","type":"not_found"}' + body: '{"task": {"id": "a635629f-22f9-4fe8-9c51-ac0fea566a8a", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/action", "href_result": "/servers/2bb452d6-9784-45ac-8627-ffff97dd2451", "started_at": "2025-10-29T22:55:34.632888+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "357" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:38 GMT + - Wed, 29 Oct 2025 22:55:34 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a635629f-22f9-4fe8-9c51-ac0fea566a8a Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f35c4eb1-f9dc-4f0d-8cec-c91db6e0db6c - status: 404 Not Found - code: 404 - duration: 30.652921ms + - 67a46652-63c9-41ca-b144-437345787697 + status: 202 Accepted + code: 202 + duration: 296.305765ms - id: 137 request: proto: HTTP/1.1 @@ -6844,7 +5838,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 method: GET response: proto: HTTP/2.0 @@ -6852,31 +5846,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 498 + content_length: 1792 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"}' + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:34.393705+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "498" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1792" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:38 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 26450c88-aa02-476c-a023-fe133849765b + - aa5e8767-b9a2-4388-94a7-6319ca8209c1 status: 200 OK code: 200 - duration: 80.556533ms + duration: 165.695214ms - id: 138 request: proto: HTTP/1.1 @@ -6893,37 +5879,31 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1806 uncompressed: false - body: "" + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["conntrol"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:34.403166+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "1806" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:39 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8157b2cc-6288-4d84-bce1-700d678d03a9 - status: 204 No Content - code: 204 - duration: 163.557ms + - 32a9e855-abb3-48fa-8926-ff99485def3e + status: 200 OK + code: 200 + duration: 166.513994ms - id: 139 request: proto: HTTP/1.1 @@ -6940,7 +5920,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 method: GET response: proto: HTTP/2.0 @@ -6948,31 +5928,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1837 + content_length: 1880 uncompressed: 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"}}' + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:37.286939+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1837" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1880" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:39 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b4659b0e-a76d-4ed0-b91a-4977afa6365c + - 706bcb51-b02a-4490-94bb-301134130840 status: 200 OK code: 200 - duration: 139.513235ms + duration: 146.331233ms - id: 140 request: proto: HTTP/1.1 @@ -6989,7 +5961,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -6997,80 +5969,68 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1837 + content_length: 1893 uncompressed: 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"}}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["conntrol"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:37.525965+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "301", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1837" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1893" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 11969633-8053-45a9-a03a-cae875b7d030 + - 4d333a8a-2966-4c56-93ce-7e3f60152732 status: 200 OK code: 200 - duration: 139.020607ms + duration: 147.866414ms - id: 141 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/63dca55f-ad4e-432d-b25b-d733e80695e8 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/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_server","resource_id":"63dca55f-ad4e-432d-b25b-d733e80695e8","type":"not_found"}' + body: '{"task": {"id": "817039b7-4f6a-4e55-a7e9-01ba0e8ff658", "description": "server_terminate", "status": "pending", "href_from": "/servers/2bb452d6-9784-45ac-8627-ffff97dd2451/action", "href_result": "/servers/2bb452d6-9784-45ac-8627-ffff97dd2451", "started_at": "2025-10-29T22:55:40.233370+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "353" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:49 GMT + - Wed, 29 Oct 2025 22:55:40 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/817039b7-4f6a-4e55-a7e9-01ba0e8ff658 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0e1afad1-db99-4e2e-81ad-14a9598a6e59 - status: 404 Not Found - code: 404 - duration: 50.621973ms + - 754da3ac-217f-4feb-8b41-4459feb0295f + status: 202 Accepted + code: 202 + duration: 282.999987ms - id: 142 request: proto: HTTP/1.1 @@ -7087,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/instance/v1/zones/fr-par-1/volumes/6263783c-22b5-4fa4-8834-dcd9a0954991 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 method: GET response: proto: HTTP/2.0 @@ -7095,32 +6055,69 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1856 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6263783c-22b5-4fa4-8834-dcd9a0954991","type":"not_found"}' + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["conntrol"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:40.007259+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "301", "node_id": "8"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1856" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c571a99a-0f09-407e-bc21-2eb0ec7a869c - status: 404 Not Found - code: 404 - duration: 30.344857ms + - c9f18d15-6f84-49e5-a35e-57034c86c3ed + status: 200 OK + code: 200 + duration: 141.255913ms - id: 143 + 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/1a862eb0-b63b-4128-bd82-83151709b765/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task": {"id": "36dcf8e0-8c15-4041-9f26-1b4a7ea8ae60", "description": "server_terminate", "status": "pending", "href_from": "/servers/1a862eb0-b63b-4128-bd82-83151709b765/action", "href_result": "/servers/1a862eb0-b63b-4128-bd82-83151709b765", "started_at": "2025-10-29T22:55:40.384614+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:55:40 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/36dcf8e0-8c15-4041-9f26-1b4a7ea8ae60 + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 6129eba0-c60e-4faa-9c3d-3509c89d8fa9 + status: 202 Accepted + code: 202 + duration: 466.300488ms + - id: 144 request: proto: HTTP/1.1 proto_major: 1 @@ -7136,7 +6133,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 method: GET response: proto: HTTP/2.0 @@ -7144,32 +6141,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 494 + content_length: 1889 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"}' + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1889" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 532adc26-d161-4ca2-9fb8-b9346108e31c + - a89157ea-5a55-43c9-af5a-a0e79f34c48a status: 200 OK code: 200 - duration: 105.199722ms - - id: 144 + duration: 127.395643ms + - id: 145 request: proto: HTTP/1.1 proto_major: 1 @@ -7185,38 +6174,32 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1902 uncompressed: false - body: "" + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["conntrol"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:40.007259+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "301", "node_id": "8"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "1902" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5050389a-f1be-4521-837a-598efa941b58 - status: 204 No Content - code: 204 - duration: 176.330517ms - - id: 145 + - a9604f3d-d01f-4043-b52e-cdb093d5d48d + status: 200 OK + code: 200 + duration: 141.831129ms + - id: 146 request: proto: HTTP/1.1 proto_major: 1 @@ -7232,7 +6215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 method: GET response: proto: HTTP/2.0 @@ -7240,32 +6223,1086 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1889 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","type":"not_found"}' + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1889" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a06ac990-4bfa-43b1-ac02-4ecbaa55921c - status: 404 Not Found - code: 404 - duration: 61.301852ms - - id: 146 + - 11a3c3cb-e25b-41b9-8d26-3a388cb2fe15 + status: 200 OK + code: 200 + duration: 139.462931ms + - 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/2bb452d6-9784-45ac-8627-ffff97dd2451 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1902 + uncompressed: false + body: '{"server": {"id": "2bb452d6-9784-45ac-8627-ffff97dd2451", "name": "control-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "control-server", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4f696818-eb10-4822-9698-0b7e2469ca58", "state": "available", "zone": "fr-par-1"}}, "tags": ["conntrol"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:01.134529+00:00", "modification_date": "2025-10-29T22:55:40.007259+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "301", "node_id": "8"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1902" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:55:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 14f00de0-0a1c-4387-b6a7-6661078f8970 + status: 200 OK + code: 200 + duration: 165.086912ms + - 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/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1843 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "1843" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:55:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 5b9d1ded-fb27-4cf8-9e53-b505a7263bd6 + status: 200 OK + code: 200 + duration: 148.68502ms + - 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/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "2bb452d6-9784-45ac-8627-ffff97dd2451"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:55:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 4bed696e-c7d1-45ba-a52b-87edf9f06e3f + status: 404 Not Found + code: 404 + duration: 55.341627ms + - 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/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "4f696818-eb10-4822-9698-0b7e2469ca58"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:55:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 09424c4a-e2a9-420c-b62f-6483442acd05 + status: 404 Not Found + code: 404 + duration: 39.489561ms + - 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/block/v1alpha1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 498 + uncompressed: false + body: '{"id":"4f696818-eb10-4822-9698-0b7e2469ca58", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:01.287790Z", "updated_at":"2025-10-29T22:55:51.785748Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:51.785748Z", "zone":"fr-par-1"}' + headers: + Content-Length: + - "498" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:55:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 0cf9718e-16ed-42af-ab71-ea81c3e10362 + status: 200 OK + code: 200 + duration: 92.119836ms + - 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/servers/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1889 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1889" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:55:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 96e21ae4-3366-4b1c-b032-b8496dd82453 + status: 200 OK + code: 200 + duration: 149.985713ms + - 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/4f696818-eb10-4822-9698-0b7e2469ca58 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:55:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - db514365-f1a3-48e7-95a0-4bce769ac49d + status: 204 No Content + code: 204 + duration: 177.51674ms + - 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/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1843 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "1843" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 36acd91d-3c71-4ab3-9559-4dbc6f321879 + status: 200 OK + code: 200 + duration: 170.369416ms + - 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/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1889 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1889" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 64fc28df-92e1-47f9-818c-28132687520c + status: 200 OK + code: 200 + duration: 138.846415ms + - 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/servers/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1843 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "1843" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 8bd4881f-e607-42ed-85e7-6b5e72096229 + status: 200 OK + code: 200 + duration: 171.813981ms + - 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/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1889 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1889" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - f67447b5-0efd-4328-a3ab-74c217017dbd + status: 200 OK + code: 200 + duration: 132.421993ms + - 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/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1889 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1889" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - b5781c91-df90-4c20-b9e4-68f11e271aed + status: 200 OK + code: 200 + duration: 135.620026ms + - 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/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1843 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "1843" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 20eda184-6cbe-45c7-a164-153d2d159d6e + status: 200 OK + code: 200 + duration: 137.027729ms + - 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/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1889 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1889" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 222d52e6-41b5-4acf-8fa7-05799e63048f + status: 200 OK + code: 200 + duration: 136.897478ms + - 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/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1889 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1889" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 5b51412a-4023-4323-9b71-34591f5d0c1d + status: 200 OK + code: 200 + duration: 160.207384ms + - 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/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1843 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "1843" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 7ac689c5-38c9-4c3e-bcbd-8c6622ac1918 + status: 200 OK + code: 200 + duration: 144.399822ms + - 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/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1889 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1889" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 024821a6-f111-49df-84c1-c2e2b0bcd26c + status: 200 OK + code: 200 + duration: 151.315679ms + - 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/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1889 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1889" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 7ce2418d-9277-4fc1-97c4-6b93a69e1997 + status: 200 OK + code: 200 + duration: 133.636345ms + - 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/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1889 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1889" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 60a4d964-505d-43ac-8cc8-8d38e024821a + status: 200 OK + code: 200 + duration: 158.433834ms + - 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/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1889 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1889" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 98272387-1d22-4a97-a127-92cd0997123b + status: 200 OK + code: 200 + duration: 155.759433ms + - 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/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1843 + uncompressed: false + body: '{"server": {"id": "1a862eb0-b63b-4128-bd82-83151709b765", "name": "main-server", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "main-server", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "02442d1b-ca87-4923-b82e-2184566848c9", "state": "available", "zone": "fr-par-1"}}, "tags": ["main"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:31.088975+00:00", "modification_date": "2025-10-29T22:55:39.979534+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "902", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "1843" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 9e1f6be7-96aa-410c-95f2-b97439400980 + status: 200 OK + code: 200 + duration: 147.22285ms + - 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/1a862eb0-b63b-4128-bd82-83151709b765 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "1a862eb0-b63b-4128-bd82-83151709b765"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 24f512d5-7c47-4e0f-abe9-830533c0f9ae + status: 404 Not Found + code: 404 + duration: 52.165636ms + - 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/instance/v1/zones/fr-par-1/volumes/02442d1b-ca87-4923-b82e-2184566848c9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "02442d1b-ca87-4923-b82e-2184566848c9"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 08ec9ccc-85a6-4e44-9659-d099683c8cdd + status: 404 Not Found + code: 404 + duration: 32.554216ms + - 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/block/v1alpha1/zones/fr-par-1/volumes/02442d1b-ca87-4923-b82e-2184566848c9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 494 + uncompressed: false + body: '{"id":"02442d1b-ca87-4923-b82e-2184566848c9", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:31.220791Z", "updated_at":"2025-10-29T22:57:12.007358Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:57:12.007358Z", "zone":"fr-par-1"}' + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 180ea6e6-67ab-4958-abb7-c71568ba2300 + status: 200 OK + code: 200 + duration: 74.087877ms + - 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/block/v1alpha1/zones/fr-par-1/volumes/02442d1b-ca87-4923-b82e-2184566848c9 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 7fe2e209-0468-4c66-b0c2-6bef1d1ad3ad + status: 204 No Content + code: 204 + duration: 167.476482ms + - 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/2bb452d6-9784-45ac-8627-ffff97dd2451 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "2bb452d6-9784-45ac-8627-ffff97dd2451"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 2cc48d5e-0a0d-4993-9fcc-359f949db341 + status: 404 Not Found + code: 404 + duration: 46.487916ms + - id: 173 request: proto: HTTP/1.1 proto_major: 1 @@ -7281,7 +7318,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 method: GET response: proto: HTTP/2.0 @@ -7291,26 +7328,18 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "1a862eb0-b63b-4128-bd82-83151709b765"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 310eca30-9669-479d-b950-3c159f311006 + - 1690c304-8e11-426e-8b52-3726ac4e780c status: 404 Not Found code: 404 - duration: 68.981095ms + duration: 43.0945ms diff --git a/internal/services/instance/testdata/server-ip-removed.cassette.yaml b/internal/services/instance/testdata/server-ip-removed.cassette.yaml index 35c4428c5..4ac7774ca 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":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}' + body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.251.137","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","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": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:24 GMT + - Wed, 29 Oct 2025 22:54:48 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/305be072-7ba7-4e84-b71c-43e72908b092 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7d12bb0e-fa65-48c9-b230-ae4357d642a2 + - e899dc67-b966-4bf3-8d66-00cf5c760474 status: 201 Created code: 201 - duration: 464.024022ms + duration: 391.350931ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/305be072-7ba7-4e84-b71c-43e72908b092 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -80,29 +72,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.251.137","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","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": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:24 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 06924884-c038-438c-8976-b5b061a2f231 + - 5ca7576e-33c0-495f-aa6b-f1a6f87f43b3 status: 200 OK code: 200 - duration: 88.78884ms + duration: 124.651734ms - id: 2 request: proto: HTTP/1.1 @@ -115,7 +99,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -127,35 +113,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:24 GMT + - Wed, 29 Oct 2025 22:54:49 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c1c2f8ef-7360-4f93-8dfd-c2fa37f33b8e + - f3e89f15-f5a1-44fb-9eba-4e67086fc4a1 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 78.842185ms + duration: 50.066823ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +146,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -182,33 +162,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:25 GMT + - Wed, 29 Oct 2025 22:54:49 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8cd55926-85ac-43ce-8dfb-523123753f7f + - 3432c091-19ee-4834-b415-3a395a0377b7 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 53.37743ms + duration: 111.851388ms - id: 4 request: proto: HTTP/1.1 @@ -221,7 +193,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 06052a61-cfa7-4e99-b230-c8d57db3324b + - d13509b4-3cbc-4b52-af7c-5cd3994c5da3 status: 200 OK code: 200 - duration: 60.908146ms + duration: 59.4342ms - id: 5 request: proto: HTTP/1.1 @@ -269,7 +241,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_ips":["305be072-7ba7-4e84-b71c-43e72908b092"],"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}' + 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_ips":["65a60f6b-fa89-4e49-bc25-fced17fa3df3"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -286,31 +258,23 @@ interactions: trailer: {} content_length: 2298 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-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:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:25.307022+00:00","name":"tf-tests-instance-server-ip-removed","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","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":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:49.765069+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:26 GMT + - Wed, 29 Oct 2025 22:54:50 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 88f68aa8-50e3-4062-be87-f82b71eff3e0 + - 2d422764-4ad0-4f60-8ada-68f9e577a716 status: 201 Created code: 201 - duration: 954.27997ms + duration: 1.616029964s - id: 6 request: proto: HTTP/1.1 @@ -327,7 +291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -337,29 +301,21 @@ interactions: trailer: {} content_length: 2298 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-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:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:25.307022+00:00","name":"tf-tests-instance-server-ip-removed","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","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":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:49.765069+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d6851b8b-ba02-4150-b0f4-8687dabffdcf + - 2ff27ed1-9b43-4316-be8a-28cef0558276 status: 200 OK code: 200 - duration: 101.954913ms + duration: 173.323269ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -384,31 +340,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2298 + content_length: 2344 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-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:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:25.307022+00:00","name":"tf-tests-instance-server-ip-removed","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","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":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:49.765069+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7bf76586-5e65-4938-a237-76d5842fdfda + - b6a07dc4-f919-4773-8c64-3e7b36832128 status: 200 OK code: 200 - duration: 109.352008ms + duration: 133.633672ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2298 + content_length: 2344 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-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:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:25.307022+00:00","name":"tf-tests-instance-server-ip-removed","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","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":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:49.765069+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1697974a-379a-46bc-ac95-3f9737d3a6ee + - 1826311d-4636-45be-aa3f-0375a26d48fd status: 200 OK code: 200 - duration: 101.169879ms + duration: 139.443004ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/43b5db9f-c019-4c3f-a1f8-ce075b146bdd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 method: GET response: proto: HTTP/2.0 @@ -484,29 +424,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0420c427-cbb3-424f-842e-bc2c6a7e1034 + - 1942cb3b-3f48-46eb-aa28-0db34e3414b4 status: 404 Not Found code: 404 - duration: 43.612907ms + duration: 38.5994ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/43b5db9f-c019-4c3f-a1f8-ce075b146bdd + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 method: GET response: proto: HTTP/2.0 @@ -533,29 +465,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:25.426049Z","id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:25.426049Z","id":"ecd47f44-4805-4b47-b78b-2552835fae76","product_resource_id":"746c1433-21a8-4d1e-b05a-22725c2adaad","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:25.426049Z","zone":"fr-par-1"}' + body: '{"id":"ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:49.895745Z", "updated_at":"2025-10-29T22:54:49.895745Z", "references":[{"id":"c9cfdaf2-37de-4012-93b2-cda934215c3c", "product_resource_type":"instance_server", "product_resource_id":"fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "created_at":"2025-10-29T22:54:49.895745Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 745c60f1-e757-4c10-9e83-41717555a9de + - f145a2a6-f35d-431c-aa09-d04e088c8034 status: 200 OK code: 200 - duration: 41.524133ms + duration: 96.506114ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/user_data method: GET response: proto: HTTP/2.0 @@ -582,29 +506,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1eb39011-b76f-49ae-aa03-d46945d38911 + - 46689876-6179-41b9-b85d-2501288097b7 status: 200 OK code: 200 - duration: 59.15892ms + duration: 111.519789ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/private_nics method: GET response: proto: HTTP/2.0 @@ -631,33 +547,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:26 GMT + - Wed, 29 Oct 2025 22:54:51 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 779ad298-01fd-4bc0-9238-ac28a83e706e + - 77a63685-b425-43af-99f7-4ea24deae371 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 62.706665ms + duration: 90.92133ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/private_nics method: GET response: proto: HTTP/2.0 @@ -684,33 +592,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:26 GMT + - Wed, 29 Oct 2025 22:54:51 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ee5c434f-512b-495e-ba52-47ca5112f653 + - b12330ec-bbcf-49c7-9140-25b40a566fb3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 61.784984ms + duration: 129.672755ms - id: 14 request: proto: HTTP/1.1 @@ -727,7 +627,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/305be072-7ba7-4e84-b71c-43e72908b092 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -737,29 +637,21 @@ interactions: trailer: {} content_length: 454 uncompressed: false - body: '{"ip":{"address":"51.15.251.137","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"746c1433-21a8-4d1e-b05a-22725c2adaad","name":"tf-tests-instance-server-ip-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}}' headers: Content-Length: - "454" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a8ea1494-0894-48d1-84af-0a4222d665ba + - 72638637-d473-45c9-84db-e6e59cf66f1c status: 200 OK code: 200 - duration: 86.474744ms + duration: 128.28013ms - id: 15 request: proto: HTTP/1.1 @@ -776,7 +668,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -784,31 +676,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2298 + content_length: 2344 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-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:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:25.307022+00:00","name":"tf-tests-instance-server-ip-removed","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","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":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:49.765069+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e3b4e547-44e4-4865-9d4e-363314967641 + - 08ba20d1-52fd-43bb-a5a8-f0dcdff8e10e status: 200 OK code: 200 - duration: 117.492421ms + duration: 130.313904ms - id: 16 request: proto: HTTP/1.1 @@ -825,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/instance/v1/zones/fr-par-1/volumes/43b5db9f-c019-4c3f-a1f8-ce075b146bdd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 method: GET response: proto: HTTP/2.0 @@ -835,29 +719,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e2bef8f2-50e8-4622-b0cb-8174e1c7d25d + - 7a8b243e-e51e-4a92-9973-1a8f3a6f4ed2 status: 404 Not Found code: 404 - duration: 32.098598ms + duration: 31.761493ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +750,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/43b5db9f-c019-4c3f-a1f8-ce075b146bdd + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 method: GET response: proto: HTTP/2.0 @@ -884,29 +760,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:25.426049Z","id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:25.426049Z","id":"ecd47f44-4805-4b47-b78b-2552835fae76","product_resource_id":"746c1433-21a8-4d1e-b05a-22725c2adaad","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:25.426049Z","zone":"fr-par-1"}' + body: '{"id":"ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:49.895745Z", "updated_at":"2025-10-29T22:54:49.895745Z", "references":[{"id":"c9cfdaf2-37de-4012-93b2-cda934215c3c", "product_resource_type":"instance_server", "product_resource_id":"fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "created_at":"2025-10-29T22:54:49.895745Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a7054ccc-d85b-47c5-a8f8-71b2260948dc + - 9263ea85-daef-4a5a-8c0d-b528e2074541 status: 200 OK code: 200 - duration: 50.106215ms + duration: 80.360181ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +791,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/user_data method: GET response: proto: HTTP/2.0 @@ -933,29 +801,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:27 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8dad57ed-9215-450c-b6f1-a16671d3d90b + - 522b90d6-6294-4ee1-ad71-84fb2837e65d status: 200 OK code: 200 - duration: 57.09323ms + duration: 102.520109ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/private_nics method: GET response: proto: HTTP/2.0 @@ -982,33 +842,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:27 GMT + - Wed, 29 Oct 2025 22:54:52 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2b7f52bf-ecd8-4e17-8c96-cd6106e83b36 + - 00f478a6-d8bf-465e-9110-a28d4f50fb39 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.221958ms + duration: 99.445791ms - id: 20 request: proto: HTTP/1.1 @@ -1025,7 +877,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/305be072-7ba7-4e84-b71c-43e72908b092 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -1035,29 +887,21 @@ interactions: trailer: {} content_length: 454 uncompressed: false - body: '{"ip":{"address":"51.15.251.137","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"746c1433-21a8-4d1e-b05a-22725c2adaad","name":"tf-tests-instance-server-ip-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}}' headers: Content-Length: - "454" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:27 GMT + - Wed, 29 Oct 2025 22:54:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 69a28b94-8137-4a38-a10f-81d0f9c13f63 + - 3a175604-500b-41fc-8b3a-a9fcdf1bcd7d status: 200 OK code: 200 - duration: 77.302132ms + duration: 108.954142ms - id: 21 request: proto: HTTP/1.1 @@ -1074,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/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -1082,31 +926,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2298 + content_length: 2344 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-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:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:25.307022+00:00","name":"tf-tests-instance-server-ip-removed","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","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":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:49.765069+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:27 GMT + - Wed, 29 Oct 2025 22:54:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 56e9b0eb-c5b4-477b-8244-cc73b5e243f9 + - 05981def-7b3c-427d-b202-6f3879cc2228 status: 200 OK code: 200 - duration: 98.508649ms + duration: 190.958518ms - id: 22 request: proto: HTTP/1.1 @@ -1123,7 +959,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/43b5db9f-c019-4c3f-a1f8-ce075b146bdd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 method: GET response: proto: HTTP/2.0 @@ -1133,29 +969,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:27 GMT + - Wed, 29 Oct 2025 22:54:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3516b1b7-f0a2-46a6-a2b1-8ea34a2950be + - 8830fd6b-768f-4d05-a349-33ac7aee7cfe status: 404 Not Found code: 404 - duration: 29.804749ms + duration: 34.633725ms - id: 23 request: proto: HTTP/1.1 @@ -1172,7 +1000,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/43b5db9f-c019-4c3f-a1f8-ce075b146bdd + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 method: GET response: proto: HTTP/2.0 @@ -1182,29 +1010,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:25.426049Z","id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:25.426049Z","id":"ecd47f44-4805-4b47-b78b-2552835fae76","product_resource_id":"746c1433-21a8-4d1e-b05a-22725c2adaad","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:25.426049Z","zone":"fr-par-1"}' + body: '{"id":"ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:49.895745Z", "updated_at":"2025-10-29T22:54:49.895745Z", "references":[{"id":"c9cfdaf2-37de-4012-93b2-cda934215c3c", "product_resource_type":"instance_server", "product_resource_id":"fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "created_at":"2025-10-29T22:54:49.895745Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:27 GMT + - Wed, 29 Oct 2025 22:54:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 988b00dc-2bc9-4394-b75c-3ba02075ded8 + - f7a93854-743a-40dd-ba88-2cd9f7679979 status: 200 OK code: 200 - duration: 47.48493ms + duration: 98.025265ms - id: 24 request: proto: HTTP/1.1 @@ -1221,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/746c1433-21a8-4d1e-b05a-22725c2adaad/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/user_data method: GET response: proto: HTTP/2.0 @@ -1231,29 +1051,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:27 GMT + - Wed, 29 Oct 2025 22:54:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab1ce3a3-8ef0-42ff-b202-4ac97a145d29 + - 8ded26ac-59c3-447a-aa3b-2d0fbe41eceb status: 200 OK code: 200 - duration: 50.629729ms + duration: 103.553031ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1082,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/private_nics method: GET response: proto: HTTP/2.0 @@ -1280,33 +1092,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:27 GMT + - Wed, 29 Oct 2025 22:54:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5ff7e3bb-2ea1-41c5-a490-4b9368705d1d + - ec88eb23-a13a-429d-91ba-b79fb624839f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.146869ms + duration: 102.8087ms - id: 26 request: proto: HTTP/1.1 @@ -1323,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/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -1331,31 +1135,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2298 + content_length: 2344 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-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:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:25.307022+00:00","name":"tf-tests-instance-server-ip-removed","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","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":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:49.765069+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:28 GMT + - Wed, 29 Oct 2025 22:54:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 79349f6c-6441-40da-825d-0c02d61048c3 + - 991b7134-c44c-472c-a5d6-53f2d64670c3 status: 200 OK code: 200 - duration: 106.450147ms + duration: 144.918244ms - id: 27 request: proto: HTTP/1.1 @@ -1374,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/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: PATCH response: proto: HTTP/2.0 @@ -1384,29 +1180,21 @@ 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-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-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:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:25.307022+00:00","name":"tf-tests-instance-server-ip-removed","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:49.765069+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a105c489-0e82-4f7b-b380-b139f48ebcef + - c593b176-5ade-41ea-b5d6-f15a27778945 status: 200 OK code: 200 - duration: 453.673899ms + duration: 581.38093ms - id: 28 request: proto: HTTP/1.1 @@ -1423,7 +1211,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -1433,29 +1221,21 @@ 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-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-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:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:25.307022+00:00","name":"tf-tests-instance-server-ip-removed","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:49.765069+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b0d7f863-560a-44b7-b1b9-86d552ab6d9a + - f081c585-311e-4fc2-9687-3ff7032eec02 status: 200 OK code: 200 - duration: 100.327846ms + duration: 140.00706ms - id: 29 request: proto: HTTP/1.1 @@ -1472,7 +1252,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -1482,29 +1262,21 @@ 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-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-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:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:25.307022+00:00","name":"tf-tests-instance-server-ip-removed","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:49.765069+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f7df4d46-71d0-49e4-936d-7918791b4b17 + - acfedaa0-94e2-42cd-bd67-d12e2d406794 status: 200 OK code: 200 - duration: 92.911104ms + duration: 123.554845ms - id: 30 request: proto: HTTP/1.1 @@ -1521,7 +1293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/43b5db9f-c019-4c3f-a1f8-ce075b146bdd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 method: GET response: proto: HTTP/2.0 @@ -1531,29 +1303,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0ce5bd82-2780-4d98-ae6d-ac6d60057b0c + - dd004bde-f223-4d02-b00e-12ea603418f0 status: 404 Not Found code: 404 - duration: 29.589164ms + duration: 27.370643ms - id: 31 request: proto: HTTP/1.1 @@ -1570,7 +1334,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/43b5db9f-c019-4c3f-a1f8-ce075b146bdd + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 method: GET response: proto: HTTP/2.0 @@ -1580,29 +1344,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:25.426049Z","id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:25.426049Z","id":"ecd47f44-4805-4b47-b78b-2552835fae76","product_resource_id":"746c1433-21a8-4d1e-b05a-22725c2adaad","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:25.426049Z","zone":"fr-par-1"}' + body: '{"id":"ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:49.895745Z", "updated_at":"2025-10-29T22:54:49.895745Z", "references":[{"id":"c9cfdaf2-37de-4012-93b2-cda934215c3c", "product_resource_type":"instance_server", "product_resource_id":"fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "created_at":"2025-10-29T22:54:49.895745Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 98266efb-b190-4e0a-a04b-9f8114fd859a + - 77377e48-8397-475d-84f6-94d47076fac8 status: 200 OK code: 200 - duration: 56.396481ms + duration: 91.550858ms - id: 32 request: proto: HTTP/1.1 @@ -1619,7 +1375,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/user_data method: GET response: proto: HTTP/2.0 @@ -1629,29 +1385,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ba4c6d68-a1aa-4ae0-af06-4d64745e5c26 + - d7c6d737-8d61-4ff1-9658-c0e397ac5719 status: 200 OK code: 200 - duration: 67.696719ms + duration: 85.061664ms - id: 33 request: proto: HTTP/1.1 @@ -1668,7 +1416,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/private_nics method: GET response: proto: HTTP/2.0 @@ -1678,33 +1426,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:28 GMT + - Wed, 29 Oct 2025 22:54:54 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 500209f6-d227-4ea4-8c65-9c9c99010cd1 + - 9294a3c5-866d-4b6c-a82c-8b579cf1a1d0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 60.112421ms + duration: 99.597676ms - id: 34 request: proto: HTTP/1.1 @@ -1721,7 +1461,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/private_nics method: GET response: proto: HTTP/2.0 @@ -1731,33 +1471,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:29 GMT + - Wed, 29 Oct 2025 22:54:55 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 175ccced-6efd-46f1-b688-2aab1a426873 + - 7d84ec15-68a1-45e7-9fc6-b1c98c6a0c7e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.292663ms + duration: 97.753868ms - id: 35 request: proto: HTTP/1.1 @@ -1774,7 +1506,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -1782,31 +1514,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 1818 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-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:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:25.307022+00:00","name":"tf-tests-instance-server-ip-removed","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:49.765069+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1818" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:29 GMT + - Wed, 29 Oct 2025 22:54:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 92b8f9ca-3dd1-4048-bc57-cda9350e0888 + - 256f9e91-ca68-498a-ad10-49eb0cf9aecf status: 200 OK code: 200 - duration: 90.575998ms + duration: 140.0547ms - id: 36 request: proto: HTTP/1.1 @@ -1823,7 +1547,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/305be072-7ba7-4e84-b71c-43e72908b092 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -1833,29 +1557,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.251.137","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"46145a1a-79e4-4593-9dc2-d73710c31b2f","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": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "ab84fde3-0c2f-4470-afc6-82a3bb8e7a61"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:29 GMT + - Wed, 29 Oct 2025 22:54:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b56a8824-33d5-4e4b-91ef-1aa85297b5e3 + - 3ac3954c-5e03-4df7-90df-273af6ecd018 status: 200 OK code: 200 - duration: 86.260972ms + duration: 105.523847ms - id: 37 request: proto: HTTP/1.1 @@ -1872,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/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -1880,31 +1596,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 1818 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-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:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:25.307022+00:00","name":"tf-tests-instance-server-ip-removed","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:49.765069+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1818" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:29 GMT + - Wed, 29 Oct 2025 22:54:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c9bc5333-726e-461f-8ddd-982f3751cef9 + - b9ec5eb2-1773-4f7d-aadc-53ba1b599fcc status: 200 OK code: 200 - duration: 96.120373ms + duration: 139.553933ms - id: 38 request: proto: HTTP/1.1 @@ -1921,7 +1629,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/43b5db9f-c019-4c3f-a1f8-ce075b146bdd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 method: GET response: proto: HTTP/2.0 @@ -1931,29 +1639,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:29 GMT + - Wed, 29 Oct 2025 22:54:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 21f4ba24-8b83-4181-8bd3-02d7ee596f04 + - 5b5050c1-2990-4b01-9069-714e76c5c02d status: 404 Not Found code: 404 - duration: 33.800624ms + duration: 26.965986ms - id: 39 request: proto: HTTP/1.1 @@ -1970,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/block/v1alpha1/zones/fr-par-1/volumes/43b5db9f-c019-4c3f-a1f8-ce075b146bdd + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 method: GET response: proto: HTTP/2.0 @@ -1980,29 +1680,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:25.426049Z","id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:25.426049Z","id":"ecd47f44-4805-4b47-b78b-2552835fae76","product_resource_id":"746c1433-21a8-4d1e-b05a-22725c2adaad","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:25.426049Z","zone":"fr-par-1"}' + body: '{"id":"ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:49.895745Z", "updated_at":"2025-10-29T22:54:49.895745Z", "references":[{"id":"c9cfdaf2-37de-4012-93b2-cda934215c3c", "product_resource_type":"instance_server", "product_resource_id":"fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "created_at":"2025-10-29T22:54:49.895745Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:29 GMT + - Wed, 29 Oct 2025 22:54:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9532588-accb-4ae0-9c39-8ce7c62450cb + - b9df7be2-6edd-418a-9e1b-469d0490effb status: 200 OK code: 200 - duration: 48.046937ms + duration: 77.648231ms - id: 40 request: proto: HTTP/1.1 @@ -2019,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/746c1433-21a8-4d1e-b05a-22725c2adaad/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/user_data method: GET response: proto: HTTP/2.0 @@ -2029,29 +1721,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:29 GMT + - Wed, 29 Oct 2025 22:54:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4a296783-53f2-4ae8-8aab-ec4bd87cd7bf + - d8993fcc-b128-4b33-a5e5-696226793959 status: 200 OK code: 200 - duration: 70.504564ms + duration: 110.51431ms - id: 41 request: proto: HTTP/1.1 @@ -2068,7 +1752,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/private_nics method: GET response: proto: HTTP/2.0 @@ -2078,33 +1762,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:29 GMT + - Wed, 29 Oct 2025 22:54:55 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6f18fed4-bdea-43ae-9851-93722267d60f + - eeac7618-e30e-4134-9fda-563280ba9d4d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 61.269696ms + duration: 133.570395ms - id: 42 request: proto: HTTP/1.1 @@ -2121,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/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -2131,29 +1807,21 @@ 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-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-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:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:25.307022+00:00","name":"tf-tests-instance-server-ip-removed","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:49.765069+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:30 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ee4ce900-0366-4175-ac26-c27501bc570b + - b3f22492-41a8-40b3-960d-9827c3436175 status: 200 OK code: 200 - duration: 111.000034ms + duration: 160.888357ms - id: 43 request: proto: HTTP/1.1 @@ -2170,7 +1838,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -2178,31 +1846,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 1818 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-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:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:25.307022+00:00","name":"tf-tests-instance-server-ip-removed","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:49.765069+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1818" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:30 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 65a7460d-5f23-4d2b-ad28-dd2ae292e51b + - d2ac9aa4-0fc0-4885-9d7b-220e8c86c17b status: 200 OK code: 200 - duration: 79.304704ms + duration: 128.540309ms - id: 44 request: proto: HTTP/1.1 @@ -2219,39 +1879,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/43b5db9f-c019-4c3f-a1f8-ce075b146bdd - method: GET + 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: 705 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:25.426049Z","id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:25.426049Z","id":"ecd47f44-4805-4b47-b78b-2552835fae76","product_resource_id":"746c1433-21a8-4d1e-b05a-22725c2adaad","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:25.426049Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:30 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f68439e2-8f7c-40e0-96cc-532ce2e07dec - status: 200 OK - code: 200 - duration: 49.435034ms + - 1240653a-1188-41bf-b0de-990f57dd07bf + status: 204 No Content + code: 204 + duration: 331.839705ms - id: 45 request: proto: HTTP/1.1 @@ -2268,37 +1918,31 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/305be072-7ba7-4e84-b71c-43e72908b092 - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 + 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: '{"id":"ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:49.895745Z", "updated_at":"2025-10-29T22:54:49.895745Z", "references":[{"id":"c9cfdaf2-37de-4012-93b2-cda934215c3c", "product_resource_type":"instance_server", "product_resource_id":"fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "created_at":"2025-10-29T22:54:49.895745Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "705" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:30 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 61e41d88-1c9f-421f-a22a-00a1cd714949 - status: 204 No Content - code: 204 - duration: 355.709492ms + - 73f3fc4a-d233-419f-bead-0b84e29a538a + status: 200 OK + code: 200 + duration: 89.121637ms - id: 46 request: proto: HTTP/1.1 @@ -2317,7 +1961,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/746c1433-21a8-4d1e-b05a-22725c2adaad/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/action method: POST response: proto: HTTP/2.0 @@ -2327,31 +1971,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/746c1433-21a8-4d1e-b05a-22725c2adaad/action","href_result":"/servers/746c1433-21a8-4d1e-b05a-22725c2adaad","id":"640a405b-6bda-4ae9-aa8b-80fbbce55d8a","progress":0,"started_at":"2025-10-15T16:37:30.582648+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task": {"id": "f383f9fa-f47c-4f8a-81b7-2625cd781579", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/action", "href_result": "/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "started_at": "2025-10-29T22:54:56.821071+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:30 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/640a405b-6bda-4ae9-aa8b-80fbbce55d8a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f383f9fa-f47c-4f8a-81b7-2625cd781579 Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7ed55546-fa4e-405f-ad6e-f78bfea84157 + - d91a9ccc-e60d-48c4-8673-1a7c0bda709e status: 202 Accepted code: 202 - duration: 260.815143ms + duration: 252.330014ms - id: 47 request: proto: HTTP/1.1 @@ -2368,7 +2004,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -2378,29 +2014,21 @@ 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-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-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:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:30.406418+00:00","name":"tf-tests-instance-server-ip-removed","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:56.629112+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1794" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:30 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5ad48381-509d-4f4d-8acb-812644559e56 + - 8536ff43-6cb4-4708-9ec7-03e45cf07894 status: 200 OK code: 200 - duration: 160.749799ms + duration: 143.503519ms - id: 48 request: proto: HTTP/1.1 @@ -2417,7 +2045,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -2425,31 +2053,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1928 + content_length: 1973 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-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"12","hypervisor_id":"1001","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:32.642566+00:00","name":"tf-tests-instance-server-ip-removed","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:54:58.964232+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "801", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1928" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1973" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d13ad3dc-85cf-400d-91c2-d7615b0882b9 + - 58c882d7-cd30-4edb-96e2-8cbfe74cbd68 status: 200 OK code: 200 - duration: 82.095537ms + duration: 193.01134ms - id: 49 request: proto: HTTP/1.1 @@ -2468,7 +2088,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/746c1433-21a8-4d1e-b05a-22725c2adaad/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/action method: POST response: proto: HTTP/2.0 @@ -2478,31 +2098,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/746c1433-21a8-4d1e-b05a-22725c2adaad/action","href_result":"/servers/746c1433-21a8-4d1e-b05a-22725c2adaad","id":"e0fc837b-2cf7-4836-8112-28936affe4a5","progress":0,"started_at":"2025-10-15T16:37:36.079315+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task": {"id": "4cb62397-17cd-4c51-a7a9-cadee78f5289", "description": "server_terminate", "status": "pending", "href_from": "/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/action", "href_result": "/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "started_at": "2025-10-29T22:55:02.452297+00:00", "terminated_at": null, "progress": 0, "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 16:37:36 GMT + - Wed, 29 Oct 2025 22:55:02 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e0fc837b-2cf7-4836-8112-28936affe4a5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4cb62397-17cd-4c51-a7a9-cadee78f5289 Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 710d8dda-7021-4993-b971-686be7e6c9a1 + - 7cbb4cb1-f6f8-4d69-9651-f039398f7aa3 status: 202 Accepted code: 202 - duration: 228.922582ms + duration: 295.925781ms - id: 50 request: proto: HTTP/1.1 @@ -2519,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/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -2527,31 +2139,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1936 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-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"12","hypervisor_id":"1001","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:35.922994+00:00","name":"tf-tests-instance-server-ip-removed","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:55:02.217904+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "801", "node_id": "8"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1891" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1936" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:36 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45894400-3e8c-422b-9c5c-b07bd2caa43c + - fa4615f6-330a-4f0e-b117-4168fa74aa08 status: 200 OK code: 200 - duration: 94.516881ms + duration: 160.747448ms - id: 51 request: proto: HTTP/1.1 @@ -2568,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/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -2576,31 +2180,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1936 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-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"12","hypervisor_id":"1001","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:35.922994+00:00","name":"tf-tests-instance-server-ip-removed","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:55:02.217904+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "801", "node_id": "8"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1891" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1936" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 22915c2c-75e0-4602-9ddd-d9257f2fcd50 + - 4aef311b-4bc0-4b9f-a2fc-bbd437b561af status: 200 OK code: 200 - duration: 92.698083ms + duration: 135.027373ms - id: 52 request: proto: HTTP/1.1 @@ -2617,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/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -2625,31 +2221,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1936 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-15T16:37:25.307022+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"746c1433-21a8-4d1e-b05a-22725c2adaad","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"12","hypervisor_id":"1001","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a1","maintenances":[],"modification_date":"2025-10-15T16:37:35.922994+00:00","name":"tf-tests-instance-server-ip-removed","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8", "name": "tf-tests-instance-server-ip-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ip-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:99", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:49.765069+00:00", "modification_date": "2025-10-29T22:55:02.217904+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "801", "node_id": "8"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1891" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1936" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:46 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6b975a88-8cd3-403a-8a73-c38df4944431 + - 6a42ac67-72f4-4d5b-939a-d2a84a953eaa status: 200 OK code: 200 - duration: 103.541653ms + duration: 134.570491ms - id: 53 request: proto: HTTP/1.1 @@ -2666,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/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -2676,29 +2264,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"746c1433-21a8-4d1e-b05a-22725c2adaad","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:51 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d2fb305e-c080-4d6d-ada4-2337e1917ebf + - d187da6c-a288-4862-93a3-c6ff2e003564 status: 404 Not Found code: 404 - duration: 60.436991ms + duration: 51.812592ms - id: 54 request: proto: HTTP/1.1 @@ -2715,7 +2295,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/43b5db9f-c019-4c3f-a1f8-ce075b146bdd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 method: GET response: proto: HTTP/2.0 @@ -2725,29 +2305,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:51 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa70bf5b-8d71-46aa-8683-46e2692e02e1 + - 75a1a5c0-a12a-4866-82e8-da1f6ffcfa15 status: 404 Not Found code: 404 - duration: 36.045421ms + duration: 31.040778ms - id: 55 request: proto: HTTP/1.1 @@ -2764,7 +2336,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/43b5db9f-c019-4c3f-a1f8-ce075b146bdd + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 method: GET response: proto: HTTP/2.0 @@ -2774,29 +2346,21 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:25.426049Z","id":"43b5db9f-c019-4c3f-a1f8-ce075b146bdd","last_detached_at":"2025-10-15T16:37:47.274494Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","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-10-15T16:37:47.274494Z","zone":"fr-par-1"}' + body: '{"id":"ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:49.895745Z", "updated_at":"2025-10-29T22:55:13.923588Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:13.923588Z", "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 16:37:51 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 17d57d84-b258-489d-b2d1-227dbdccaa6b + - 811d55a8-affe-4703-abe9-8fc26cdf3896 status: 200 OK code: 200 - duration: 44.982259ms + duration: 91.508755ms - id: 56 request: proto: HTTP/1.1 @@ -2813,7 +2377,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/43b5db9f-c019-4c3f-a1f8-ce075b146bdd + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 method: DELETE response: proto: HTTP/2.0 @@ -2825,25 +2389,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:51 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b2de74bd-2b57-46aa-904c-539ee04f55d6 + - 3b2c0017-af9c-43b6-a458-4310bb6bca8b status: 204 No Content code: 204 - duration: 75.599474ms + duration: 163.581535ms - id: 57 request: proto: HTTP/1.1 @@ -2860,7 +2416,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/746c1433-21a8-4d1e-b05a-22725c2adaad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 method: GET response: proto: HTTP/2.0 @@ -2870,26 +2426,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"746c1433-21a8-4d1e-b05a-22725c2adaad","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:51 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ecff3e4d-31e8-45fe-953f-fcafb72fe4b9 + - 70e7d5e9-2b03-4702-9f39-63a47687bb34 status: 404 Not Found code: 404 - duration: 44.73202ms + duration: 40.194676ms diff --git a/internal/services/instance/testdata/server-ips-removed.cassette.yaml b/internal/services/instance/testdata/server-ips-removed.cassette.yaml index 6587b84e4..70ae278c3 100644 --- a/internal/services/instance/testdata/server-ips-removed.cassette.yaml +++ b/internal/services/instance/testdata/server-ips-removed.cassette.yaml @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:54:38 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/01cdc811-7feb-416f-9933-c74defd40b17 + - 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: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 290cfa9f-f550-4925-a606-12c17dc135a9 + - 01a79e88-2ae1-4250-b763-ac623dd83f01 status: 201 Created code: 201 - duration: 1.370340116s + duration: 447.564755ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/01cdc811-7feb-416f-9933-c74defd40b17 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -80,29 +72,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 10c5ef11-f4d7-4f1f-beaf-84fc7c5eb7a4 + - 7e5387bb-c9a1-4fb0-907e-1ede75b2de96 status: 200 OK code: 200 - duration: 146.706484ms + duration: 111.847989ms - id: 2 request: proto: HTTP/1.1 @@ -115,7 +99,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -127,35 +113,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:54:38 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa38eff5-c204-450f-bc51-7cf5e264d36f + - 2617545b-fade-4911-b188-a46643b1d25b X-Total-Count: - "68" status: 200 OK code: 200 - duration: 34.860455ms + duration: 74.55903ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +146,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -182,33 +162,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:54:39 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 88ab892a-e452-4c3d-b0f0-c42802da4dc1 + - d00f12ad-e4d4-47a8-83f7-98711728b94d X-Total-Count: - "68" status: 200 OK code: 200 - duration: 75.890522ms + duration: 96.596149ms - id: 4 request: proto: HTTP/1.1 @@ -221,7 +193,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f2e72305-77a8-4b24-93e2-8741c1d0b06a + - 0cf38b67-0141-43ab-b17e-bdedf7a08353 status: 200 OK code: 200 - duration: 60.019831ms + duration: 99.025382ms - id: 5 request: proto: HTTP/1.1 @@ -269,7 +241,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":["01cdc811-7feb-416f-9933-c74defd40b17"],"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":["65a60f6b-fa89-4e49-bc25-fced17fa3df3"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -284,33 +256,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2300 + content_length: 2346 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: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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:39.670400+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2300" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2346" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54:40 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b504cfb7-48f6-4f24-a64a-8d8f5eb323a3 + - a3c1b616-d04f-4807-82d7-ab679dd33acd status: 201 Created code: 201 - duration: 1.566431228s + duration: 1.353520791s - id: 6 request: proto: HTTP/1.1 @@ -327,7 +291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -335,31 +299,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2300 + content_length: 2346 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: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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:39.670400+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2300" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2346" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d7a2a83f-2a5f-49d8-bdf2-c05870303ab0 + - 0688a567-0cbc-4cc7-b50e-04c9756dbd5d status: 200 OK code: 200 - duration: 167.467051ms + duration: 193.459047ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -386,29 +342,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:39.670400+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2300" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b0925415-bbe3-4a62-b871-dec99ad8007a + - f06fa236-4967-4a4c-b280-74ad45d2cdb5 status: 200 OK code: 200 - duration: 173.084467ms + duration: 190.432668ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2300 + content_length: 2346 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: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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:39.670400+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2300" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2346" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 03552c61-ce5a-42b7-a3f9-9be5a4bf9936 + - 3391695e-e96b-4b38-9afd-5249fb1bc068 status: 200 OK code: 200 - duration: 155.308787ms + duration: 146.885998ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 method: GET response: proto: HTTP/2.0 @@ -484,29 +424,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2658d97b-bda4-4e57-8606-f62431f35d24 + - 28caf04a-0d07-480c-b326-f9128d89e843 status: 404 Not Found code: 404 - duration: 27.42924ms + duration: 30.585123ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 method: GET response: proto: HTTP/2.0 @@ -533,29 +465,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f4dbcb76-3bf4-4690-a6a6-47323680fc74", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:39.814651Z", "updated_at":"2025-10-29T22:54:39.814651Z", "references":[{"id":"47d97405-6839-4db5-9f02-285d5acba2f9", "product_resource_type":"instance_server", "product_resource_id":"9d7516de-f869-4fe1-addf-66bb2bd31c6a", "created_at":"2025-10-29T22:54:39.814651Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0a780452-998b-4752-8e39-10787f00f211 + - d2badceb-ea8d-42a3-906b-ed19483e9e27 status: 200 OK code: 200 - duration: 91.870829ms + duration: 128.182814ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/user_data method: GET response: proto: HTTP/2.0 @@ -582,29 +506,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - edb26e53-ba16-4612-9278-57a54775fde3 + - f7b4f9fc-44ed-4aa2-9843-7db3c094cbc3 status: 200 OK code: 200 - duration: 94.887583ms + duration: 114.915896ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/private_nics method: GET response: proto: HTTP/2.0 @@ -631,33 +547,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:03 GMT + - Wed, 29 Oct 2025 22:54:41 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 030d35c9-e1e2-4175-ba30-27013132d9ac + - 776a08ef-7fdc-4f29-8c14-96d3fb7d3e64 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 119.095978ms + duration: 100.418286ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/private_nics method: GET response: proto: HTTP/2.0 @@ -684,33 +592,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:03 GMT + - Wed, 29 Oct 2025 22:54:41 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 204d22a9-2aa8-4149-ac50-f5e1a5e2104e + - 510de440-15f7-4647-a57d-908e18c0a044 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.670153ms + duration: 108.61798ms - id: 14 request: proto: HTTP/1.1 @@ -727,7 +627,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/01cdc811-7feb-416f-9933-c74defd40b17 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -737,29 +637,21 @@ interactions: trailer: {} content_length: 455 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}}' headers: Content-Length: - "455" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ff41f115-fa27-4df0-ab55-d4860440bbef + - c1122253-8c04-464f-9f20-4a7a800bc067 status: 200 OK code: 200 - duration: 128.648308ms + duration: 245.305218ms - id: 15 request: proto: HTTP/1.1 @@ -776,7 +668,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -784,31 +676,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2300 + content_length: 2346 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: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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:39.670400+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2300" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2346" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 627bfad8-737e-4e06-aa94-b35e93b2c982 + - 300f046e-bfd6-4adc-bc1b-a70f7bfa4da2 status: 200 OK code: 200 - duration: 166.428606ms + duration: 147.229481ms - id: 16 request: proto: HTTP/1.1 @@ -825,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/instance/v1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 method: GET response: proto: HTTP/2.0 @@ -835,29 +719,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d7617d6e-4534-4698-b197-88c337d2220c + - e2396257-df81-4b0f-9411-91b48637d643 status: 404 Not Found code: 404 - duration: 29.417747ms + duration: 28.141934ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +750,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 method: GET response: proto: HTTP/2.0 @@ -884,29 +760,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f4dbcb76-3bf4-4690-a6a6-47323680fc74", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:39.814651Z", "updated_at":"2025-10-29T22:54:39.814651Z", "references":[{"id":"47d97405-6839-4db5-9f02-285d5acba2f9", "product_resource_type":"instance_server", "product_resource_id":"9d7516de-f869-4fe1-addf-66bb2bd31c6a", "created_at":"2025-10-29T22:54:39.814651Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 54e7bd43-5f97-4e31-8b7c-2cee38bfbcf3 + - 48b288ec-f5dc-4ca6-b693-96544b7c866e status: 200 OK code: 200 - duration: 100.964461ms + duration: 117.150736ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +791,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/user_data method: GET response: proto: HTTP/2.0 @@ -933,29 +801,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ebb0036b-f9ef-4741-812a-c89b0978574a + - 8314cc86-1652-4845-9cc1-77447037b749 status: 200 OK code: 200 - duration: 89.374192ms + duration: 115.13166ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/private_nics method: GET response: proto: HTTP/2.0 @@ -982,33 +842,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:04 GMT + - Wed, 29 Oct 2025 22:54:42 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 303a7c17-f4d7-4dc1-add4-2f4d13b659aa + - d24ae3f6-77eb-44b6-bd79-c1f0c0de7ca7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 114.345748ms + duration: 102.608332ms - id: 20 request: proto: HTTP/1.1 @@ -1025,7 +877,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/01cdc811-7feb-416f-9933-c74defd40b17 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -1035,29 +887,21 @@ interactions: trailer: {} content_length: 455 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}}' headers: Content-Length: - "455" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 529d0722-3bb6-4d60-b7d8-d55862643465 + - 7a11ac93-2a73-4034-bc8e-c7568dee2aeb status: 200 OK code: 200 - duration: 113.286011ms + duration: 219.677384ms - id: 21 request: proto: HTTP/1.1 @@ -1074,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/6ef62972-c0e3-43f0-b518-abb0457a52a3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -1084,29 +928,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:39.670400+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2300" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3317236b-bcbc-4c3e-a22a-b790f337d599 + - 1666b0c1-13fe-4226-bdcd-2fa3f1e02427 status: 200 OK code: 200 - duration: 154.468565ms + duration: 218.466821ms - id: 22 request: proto: HTTP/1.1 @@ -1123,7 +959,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 method: GET response: proto: HTTP/2.0 @@ -1133,29 +969,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ba6ad808-2adc-4777-8559-37b27ca152e3 + - 1a9a4250-0f43-4476-a9bb-c8f1658e1325 status: 404 Not Found code: 404 - duration: 28.220473ms + duration: 112.961732ms - id: 23 request: proto: HTTP/1.1 @@ -1172,7 +1000,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 method: GET response: proto: HTTP/2.0 @@ -1182,29 +1010,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f4dbcb76-3bf4-4690-a6a6-47323680fc74", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:39.814651Z", "updated_at":"2025-10-29T22:54:39.814651Z", "references":[{"id":"47d97405-6839-4db5-9f02-285d5acba2f9", "product_resource_type":"instance_server", "product_resource_id":"9d7516de-f869-4fe1-addf-66bb2bd31c6a", "created_at":"2025-10-29T22:54:39.814651Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 70bc142a-3c2a-4f43-b343-ea6dee0bdbbf + - 490816db-7fb3-4a01-96e3-61efd27d011f status: 200 OK code: 200 - duration: 109.361707ms + duration: 73.872368ms - id: 24 request: proto: HTTP/1.1 @@ -1221,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/6ef62972-c0e3-43f0-b518-abb0457a52a3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/user_data method: GET response: proto: HTTP/2.0 @@ -1231,29 +1051,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0c7660a9-472b-4424-806a-09f40b3d1d1f + - 70e14526-6cd4-4320-82f6-db04b93fc336 status: 200 OK code: 200 - duration: 126.450872ms + duration: 115.790482ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1082,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/private_nics method: GET response: proto: HTTP/2.0 @@ -1280,33 +1092,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:04 GMT + - Wed, 29 Oct 2025 22:54:43 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fccc9d9c-1c39-4adc-a0fe-aa52ac298823 + - 6c91a65a-1d7c-4e72-b254-c1eeb8f20326 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.962261ms + duration: 121.42055ms - id: 26 request: proto: HTTP/1.1 @@ -1323,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/6ef62972-c0e3-43f0-b518-abb0457a52a3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -1331,31 +1135,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2300 + content_length: 2346 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: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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:39.670400+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2300" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2346" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a21fce89-131e-40c9-afd5-7c32bf46269f + - d04c2399-c583-4b32-956f-b2ce06f803ba status: 200 OK code: 200 - duration: 151.96798ms + duration: 155.306245ms - id: 27 request: proto: HTTP/1.1 @@ -1372,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/6ef62972-c0e3-43f0-b518-abb0457a52a3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -1380,31 +1176,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2300 + content_length: 2346 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: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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:39.670400+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2300" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2346" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3c207f37-9517-4403-8aee-fc960f9dc1c6 + - c2dc8142-992d-4356-8e36-be66757e0090 status: 200 OK code: 200 - duration: 149.002643ms + duration: 170.451306ms - id: 28 request: proto: HTTP/1.1 @@ -1423,7 +1211,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/01cdc811-7feb-416f-9933-c74defd40b17 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: PATCH response: proto: HTTP/2.0 @@ -1433,29 +1221,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3f979dd8-0870-44da-a1ed-8eb8e2332819 + - 420b6b7c-2c95-42a5-81e2-6b106e25326b status: 200 OK code: 200 - duration: 471.38376ms + duration: 616.006652ms - id: 29 request: proto: HTTP/1.1 @@ -1472,7 +1252,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -1480,31 +1260,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1774 + content_length: 1820 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: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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:39.670400+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1820" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2fc56a43-cb40-4268-b4af-2862faa77f3f + - 19cb4f63-1599-49bd-8907-97405aac68e9 status: 200 OK code: 200 - duration: 137.452419ms + duration: 149.316424ms - id: 30 request: proto: HTTP/1.1 @@ -1521,7 +1293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -1529,31 +1301,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1774 + content_length: 1820 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: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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:39.670400+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1820" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 16b0756b-91a7-42b4-a80d-3f936f4795e0 + - 8b363f4d-522e-41ca-aa81-15c2a0b2c751 status: 200 OK code: 200 - duration: 177.391995ms + duration: 154.930702ms - id: 31 request: proto: HTTP/1.1 @@ -1570,7 +1334,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 method: GET response: proto: HTTP/2.0 @@ -1580,29 +1344,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 15e55507-d5ed-4e2c-b04a-949af2676581 + - 38efc127-6ffb-47ad-8af9-6c8a7d5b9664 status: 404 Not Found code: 404 - duration: 25.069339ms + duration: 114.240384ms - id: 32 request: proto: HTTP/1.1 @@ -1619,7 +1375,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 method: GET response: proto: HTTP/2.0 @@ -1629,29 +1385,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f4dbcb76-3bf4-4690-a6a6-47323680fc74", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:39.814651Z", "updated_at":"2025-10-29T22:54:39.814651Z", "references":[{"id":"47d97405-6839-4db5-9f02-285d5acba2f9", "product_resource_type":"instance_server", "product_resource_id":"9d7516de-f869-4fe1-addf-66bb2bd31c6a", "created_at":"2025-10-29T22:54:39.814651Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d27dd486-45bf-4a11-9b5e-2f32741cf918 + - ffe849fa-7b0b-4b69-8565-40dfb4d09680 status: 200 OK code: 200 - duration: 108.951521ms + duration: 82.674808ms - id: 33 request: proto: HTTP/1.1 @@ -1668,7 +1416,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/user_data method: GET response: proto: HTTP/2.0 @@ -1678,29 +1426,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0af30072-27a9-4d57-84f8-e7a94131c6a4 + - def2e01a-4455-4cf9-97b1-2e290003adc9 status: 200 OK code: 200 - duration: 131.141003ms + duration: 105.862057ms - id: 34 request: proto: HTTP/1.1 @@ -1717,7 +1457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/private_nics method: GET response: proto: HTTP/2.0 @@ -1727,33 +1467,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:06 GMT + - Wed, 29 Oct 2025 22:54:45 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 084f2a41-ebe6-4eae-87b2-29181ec8821c + - 67ea3afa-8fcb-41f7-9dbe-6747442f9a52 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 105.929187ms + duration: 118.456999ms - id: 35 request: proto: HTTP/1.1 @@ -1770,7 +1502,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/private_nics method: GET response: proto: HTTP/2.0 @@ -1780,33 +1512,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:06 GMT + - Wed, 29 Oct 2025 22:54:45 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f8c118f-c615-490a-b4ec-b07a56a63bdc + - f1fd2ce2-37ab-4d5b-994d-6097af9f2b05 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 137.650301ms + duration: 98.713119ms - id: 36 request: proto: HTTP/1.1 @@ -1823,7 +1547,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -1831,31 +1555,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1774 + content_length: 1820 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: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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:39.670400+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1820" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ca29bd1d-c705-4bb7-8ddf-503f09f95847 + - 6b023869-3c99-4567-b183-afa3db908215 status: 200 OK code: 200 - duration: 125.159274ms + duration: 123.076627ms - id: 37 request: proto: HTTP/1.1 @@ -1872,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/ips/01cdc811-7feb-416f-9933-c74defd40b17 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -1882,29 +1598,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "32c38994-7520-4e70-9987-821d89cd3042"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e0ba57fc-a11f-4788-b3e8-5a67a458f74f + - e86b4f9d-ae3c-4fd2-974a-f624c7aadb1c status: 200 OK code: 200 - duration: 139.674315ms + duration: 240.704236ms - id: 38 request: proto: HTTP/1.1 @@ -1921,7 +1629,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -1929,31 +1637,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1774 + content_length: 1820 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: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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:39.670400+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1820" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 15718c5a-b27c-481e-a93b-6664d5f381b9 + - ebf981f0-9e24-4e78-a7b9-18602248ecdf status: 200 OK code: 200 - duration: 180.229244ms + duration: 239.924608ms - id: 39 request: proto: HTTP/1.1 @@ -1970,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/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 method: GET response: proto: HTTP/2.0 @@ -1980,29 +1680,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 629fe2ee-158c-49a4-b476-b046fadc11bc + - 9afb6e15-d8ce-4ab3-bea5-5dc89d9ad07e status: 404 Not Found code: 404 - duration: 30.766556ms + duration: 25.959323ms - id: 40 request: proto: HTTP/1.1 @@ -2019,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/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 method: GET response: proto: HTTP/2.0 @@ -2029,29 +1721,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f4dbcb76-3bf4-4690-a6a6-47323680fc74", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:39.814651Z", "updated_at":"2025-10-29T22:54:39.814651Z", "references":[{"id":"47d97405-6839-4db5-9f02-285d5acba2f9", "product_resource_type":"instance_server", "product_resource_id":"9d7516de-f869-4fe1-addf-66bb2bd31c6a", "created_at":"2025-10-29T22:54:39.814651Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:07 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6ac2be8d-52f1-4b51-9748-5256e7710552 + - 4cd89ea2-4507-43f3-8368-f2b19ec82b8c status: 200 OK code: 200 - duration: 110.256357ms + duration: 170.579666ms - id: 41 request: proto: HTTP/1.1 @@ -2068,7 +1752,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/user_data method: GET response: proto: HTTP/2.0 @@ -2078,29 +1762,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:07 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6eaf0438-0c56-49f2-8741-5a739e942bb4 + - 7bce17c3-597e-486f-9d95-29435aecdc78 status: 200 OK code: 200 - duration: 92.977547ms + duration: 92.505831ms - id: 42 request: proto: HTTP/1.1 @@ -2117,7 +1793,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/private_nics method: GET response: proto: HTTP/2.0 @@ -2127,33 +1803,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:07 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45b1f2ad-b6cb-4e01-b4e7-ffa70cbad0c6 + - 2b103f05-520b-406e-ad82-eb944750712c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 125.025765ms + duration: 101.352184ms - id: 43 request: proto: HTTP/1.1 @@ -2170,7 +1838,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -2180,29 +1848,21 @@ 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-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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:39.670400+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 03c9abb5-12f4-4d37-b81d-73683ea437ce + - 79278f19-3a41-489f-be79-72a80d81e446 status: 200 OK code: 200 - duration: 178.686302ms + duration: 145.141708ms - id: 44 request: proto: HTTP/1.1 @@ -2219,37 +1879,31 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/01cdc811-7feb-416f-9933-c74defd40b17 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1820 uncompressed: false - body: "" + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:39.670400+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "1820" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f2b24085-1029-4a07-9f22-abbecb16aa72 - status: 204 No Content - code: 204 - duration: 334.392462ms + - 23d62b39-795b-4ab1-bd55-9978d9c1e658 + status: 200 OK + code: 200 + duration: 148.351521ms - id: 45 request: proto: HTTP/1.1 @@ -2266,39 +1920,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + 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: 1774 + content_length: 0 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: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"}}' + body: "" headers: - Content-Length: - - "1774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c645d53e-cd7e-466e-9f99-29ea32f95d0f - status: 200 OK - code: 200 - duration: 158.378036ms + - 1e257d5c-2df5-454d-9066-170ebe7fbd99 + status: 204 No Content + code: 204 + duration: 338.910919ms - id: 46 request: proto: HTTP/1.1 @@ -2315,7 +1959,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 method: GET response: proto: HTTP/2.0 @@ -2325,29 +1969,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f4dbcb76-3bf4-4690-a6a6-47323680fc74", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:39.814651Z", "updated_at":"2025-10-29T22:54:39.814651Z", "references":[{"id":"47d97405-6839-4db5-9f02-285d5acba2f9", "product_resource_type":"instance_server", "product_resource_id":"9d7516de-f869-4fe1-addf-66bb2bd31c6a", "created_at":"2025-10-29T22:54:39.814651Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ff8da119-8ddf-49f4-bd95-98c34576d25f + - 39448bfa-9a61-42ac-b653-21cef974ce98 status: 200 OK code: 200 - duration: 533.915567ms + duration: 88.778002ms - id: 47 request: proto: HTTP/1.1 @@ -2366,7 +2002,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/6ef62972-c0e3-43f0-b518-abb0457a52a3/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/action method: POST response: proto: HTTP/2.0 @@ -2376,31 +2012,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "5e6e8ef1-e6da-48c2-904f-b502e5dd7384", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/action", "href_result": "/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a", "started_at": "2025-10-29T22:54:47.414500+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:54:47 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ecd50e2b-a1a6-4da5-af83-270ea9a76d75 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5e6e8ef1-e6da-48c2-904f-b502e5dd7384 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 28a65367-fbe5-46af-a9db-488e1a9f2f98 + - 3c73c660-f35b-4c34-9f8d-c120e6052857 status: 202 Accepted code: 202 - duration: 247.997282ms + duration: 253.302916ms - id: 48 request: proto: HTTP/1.1 @@ -2417,7 +2045,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -2427,29 +2055,21 @@ 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-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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:47.212948+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1796" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 90657296-fddf-49b4-bf20-62c3c400a8e4 + - f707a2f7-e175-4252-ae6f-d979e499ec42 status: 200 OK code: 200 - duration: 143.635099ms + duration: 137.931597ms - id: 49 request: proto: HTTP/1.1 @@ -2466,7 +2086,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -2474,31 +2094,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1930 + content_length: 1929 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: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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:49.511948+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "11", "hypervisor_id": "701", "node_id": "7"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1929" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b4411706-8000-4e79-b65e-5cf1c635357e + - 680681cd-ba1c-46d8-91e4-4dcce10df8cd status: 200 OK code: 200 - duration: 145.961958ms + duration: 144.085916ms - id: 50 request: proto: HTTP/1.1 @@ -2517,7 +2129,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/6ef62972-c0e3-43f0-b518-abb0457a52a3/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/action method: POST response: proto: HTTP/2.0 @@ -2527,31 +2139,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "a3bc7d9e-559f-406f-96af-47d599c46c05", "description": "server_terminate", "status": "pending", "href_from": "/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/action", "href_result": "/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a", "started_at": "2025-10-29T22:54:52.992976+00:00", "terminated_at": null, "progress": 0, "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:14 GMT + - Wed, 29 Oct 2025 22:54:53 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5d8e08d6-c8f3-4518-a4bb-362b701432b2 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a3bc7d9e-559f-406f-96af-47d599c46c05 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 281e6550-1e62-4262-8225-a82ab274df6d + - 6d752076-7382-4191-bb8e-85b9c74e2a71 status: 202 Accepted code: 202 - duration: 280.162796ms + duration: 370.305091ms - id: 51 request: proto: HTTP/1.1 @@ -2568,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/6ef62972-c0e3-43f0-b518-abb0457a52a3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -2576,31 +2180,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1893 + content_length: 1938 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-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"}}' + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:52.752704+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "11", "hypervisor_id": "701", "node_id": "7"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1893" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1938" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6293e564-ca30-4b25-bfb7-e73e624b89c2 + - db152b65-09c0-4fe5-81bd-549b8456a330 status: 200 OK code: 200 - duration: 158.649034ms + duration: 137.411687ms - id: 52 request: proto: HTTP/1.1 @@ -2617,7 +2213,89 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1938 + uncompressed: false + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:52.752704+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "11", "hypervisor_id": "701", "node_id": "7"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1938" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:54:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 564905f6-a4b5-477c-b96a-aa1bc43b2b24 + status: 200 OK + code: 200 + duration: 131.590182ms + - 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/9d7516de-f869-4fe1-addf-66bb2bd31c6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1938 + uncompressed: false + body: '{"server": {"id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a", "name": "tf-tests-instance-server-ips-removed", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips-removed", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:39.670400+00:00", "modification_date": "2025-10-29T22:54:52.752704+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "11", "hypervisor_id": "701", "node_id": "7"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1938" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:55:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 4e553e65-a1e7-4e26-8b80-c23b4b965018 + status: 200 OK + code: 200 + duration: 137.172583ms + - 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/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -2627,30 +2305,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f5b7832-ca69-4ead-9723-c51a4dff5d2d + - bc32fc3b-b57c-4aa0-983f-5733270c4830 status: 404 Not Found code: 404 - duration: 52.8681ms - - id: 53 + duration: 47.221916ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2666,7 +2336,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 method: GET response: proto: HTTP/2.0 @@ -2676,30 +2346,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f4dbcb76-3bf4-4690-a6a6-47323680fc74"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 95fcf3d0-90e9-4e12-9e34-e25aa8ea7dc0 + - 078b6fd2-2155-44d6-bd5c-377a8de2da23 status: 404 Not Found code: 404 - duration: 28.471026ms - - id: 54 + duration: 30.467915ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2715,7 +2377,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 method: GET response: proto: HTTP/2.0 @@ -2725,30 +2387,22 @@ interactions: trailer: {} content_length: 498 uncompressed: false - 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"}' + body: '{"id":"f4dbcb76-3bf4-4690-a6a6-47323680fc74", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:39.814651Z", "updated_at":"2025-10-29T22:55:04.434046Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:04.434046Z", "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:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 392e4b3e-4329-47c1-8491-ba301cf3df27 + - fd438fb3-1678-44ca-bf42-d9ef7f1ce3d7 status: 200 OK code: 200 - duration: 85.383967ms - - id: 55 + duration: 69.098315ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2764,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/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 method: DELETE response: proto: HTTP/2.0 @@ -2776,26 +2430,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d0ad0836-5c1b-4494-8ea3-cfadd1f86182 + - 8db4ad87-4b54-4d0b-9154-6fd11d2e6569 status: 204 No Content code: 204 - duration: 173.774769ms - - id: 56 + duration: 159.868566ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2811,7 +2457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a method: GET response: proto: HTTP/2.0 @@ -2821,26 +2467,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "9d7516de-f869-4fe1-addf-66bb2bd31c6a"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9bf7408b-a4df-4e29-9ba1-0c27aa36d967 + - 1a18f082-f262-4f6c-a0ef-dab1926f772e status: 404 Not Found code: 404 - duration: 44.493244ms + duration: 49.64669ms diff --git a/internal/services/instance/testdata/server-ips.cassette.yaml b/internal/services/instance/testdata/server-ips.cassette.yaml index 8fd74628e..b4f98113b 100644 --- a/internal/services/instance/testdata/server-ips.cassette.yaml +++ b/internal/services/instance/testdata/server-ips.cassette.yaml @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54:50 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1b918cc6-b0ce-422d-b314-e91012f9782d + - 81e3aabf-b082-4734-8589-b3d56d217106 status: 201 Created code: 201 - duration: 442.937357ms + duration: 454.967413ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -80,29 +72,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 21414ac6-0b3f-4df6-bd2a-248c12dbe520 + - b93b0298-510a-42f8-9695-6a3c9019bcb9 status: 200 OK code: 200 - duration: 164.211109ms + duration: 109.226241ms - id: 2 request: proto: HTTP/1.1 @@ -115,7 +99,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -127,35 +113,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54:50 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 00d946c5-4932-451f-8cb6-fe8a06c44cd2 + - 9b09359f-e7e8-4dac-985b-c38dcfdfc4d4 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 132.230961ms + duration: 40.491779ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +146,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -182,33 +162,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54:50 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f2d499c-1872-4d74-8cab-1402becb1cf6 + - c7eb5256-09ec-42ff-8872-bb22e92ba0e7 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 86.42836ms + duration: 42.789044ms - id: 4 request: proto: HTTP/1.1 @@ -221,7 +193,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:02 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7e034bbd-f51a-4ab3-9d8d-3a9632eb249e + - d6f2acaf-84f0-43ed-8929-29d22f71f990 status: 200 OK code: 200 - duration: 63.61489ms + duration: 47.013433ms - id: 5 request: proto: HTTP/1.1 @@ -269,7 +241,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":["c8c01bd8-acd8-411c-a396-7c3d71f6f0d1"],"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":["8f457b60-852b-44a2-9bba-c98d7f41b8c3"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -284,33 +256,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2284 + content_length: 2330 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.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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2284" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2330" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:54:51 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d9ec7105-e77e-4bdb-9a07-ccc6f3dd1b37 + - 46a6ff76-fd25-4a75-9486-ac716e0692d4 status: 201 Created code: 201 - duration: 1.500992373s + duration: 1.350275124s - id: 6 request: proto: HTTP/1.1 @@ -327,7 +291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -335,31 +299,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2284 + content_length: 2330 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.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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2284" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2330" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f60706a-617f-4cc6-bdf3-6f849d2956ed + - 6dfb5a0c-c9fc-4d65-b2d7-76306fae19ec status: 200 OK code: 200 - duration: 153.508195ms + duration: 140.28542ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -386,29 +342,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2284" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 986b9ce5-f451-4a3f-8388-1b37d4cd7fd8 + - c476e488-80c1-44dd-802a-021c9454698e status: 200 OK code: 200 - duration: 151.082319ms + duration: 140.113148ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2284 + content_length: 2330 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.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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2284" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2330" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8637139b-6859-4f29-aed4-ec4db576c3aa + - f64a919d-b60f-43fd-8a7b-f7621c470336 status: 200 OK code: 200 - duration: 170.188444ms + duration: 168.972394ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -484,29 +424,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "712b455d-8658-4799-a503-0529707a39b1"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3ccb8de1-9ab1-4b9b-8f7e-51d8171bb2ed + - 87fe52a2-0789-45dd-a89c-6aafa6e7edf1 status: 404 Not Found code: 404 - duration: 35.850562ms + duration: 28.842114ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -533,29 +465,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"712b455d-8658-4799-a503-0529707a39b1", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:51.186160Z", "updated_at":"2025-10-29T22:54:51.186160Z", "references":[{"id":"52fb1139-b0e1-46d5-a6cc-5657efd6bab3", "product_resource_type":"instance_server", "product_resource_id":"9f79c57c-85c0-4145-aa58-f42579cc9861", "created_at":"2025-10-29T22:54:51.186160Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e47c305b-cf2d-4029-b2a2-01150adc3d4c + - 7830b688-fc66-4f26-abed-4b7851156b51 status: 200 OK code: 200 - duration: 99.159329ms + duration: 84.95808ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/user_data method: GET response: proto: HTTP/2.0 @@ -582,29 +506,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:04 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0cac0e78-687e-461e-b52e-0cc1ecc563e9 + - 754cbd15-57f1-4e15-b964-2ff6a01208d6 status: 200 OK code: 200 - duration: 122.911089ms + duration: 87.941919ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/private_nics method: GET response: proto: HTTP/2.0 @@ -631,33 +547,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:04 GMT + - Wed, 29 Oct 2025 22:54:52 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f978ccdb-0418-4835-a209-9974eb7b573f + - 224ea1d5-531e-4c28-b24c-9d815e35c7e3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.956471ms + duration: 113.01726ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/private_nics method: GET response: proto: HTTP/2.0 @@ -684,33 +592,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:05 GMT + - Wed, 29 Oct 2025 22:54:52 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a4400637-acf5-4018-a5a8-931dddbb718c + - 6072e890-a999-4d8e-9981-32f6f038b52f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.530032ms + duration: 88.552571ms - id: 14 request: proto: HTTP/1.1 @@ -727,7 +627,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -737,29 +637,21 @@ interactions: trailer: {} content_length: 447 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}}' headers: Content-Length: - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c04f4850-bcee-4ee1-9d84-fb57983d51bb + - aa72106d-f70b-46f3-9e42-acec6a5c5c74 status: 200 OK code: 200 - duration: 132.356589ms + duration: 144.531841ms - id: 15 request: proto: HTTP/1.1 @@ -776,7 +668,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -786,29 +678,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2284" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e73de53e-87a7-4791-9780-21fd48d47bf7 + - 31cf390c-382c-4b0e-b23d-c885e8945ec6 status: 200 OK code: 200 - duration: 374.119432ms + duration: 137.230918ms - id: 16 request: proto: HTTP/1.1 @@ -825,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/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -835,29 +719,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "712b455d-8658-4799-a503-0529707a39b1"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 681b4938-b125-48d3-bfe5-65cf6234b711 + - ccd95e50-a9bd-46bd-a0fe-256fe4c2b5c7 status: 404 Not Found code: 404 - duration: 28.614753ms + duration: 28.300301ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +750,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -884,29 +760,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"712b455d-8658-4799-a503-0529707a39b1", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:51.186160Z", "updated_at":"2025-10-29T22:54:51.186160Z", "references":[{"id":"52fb1139-b0e1-46d5-a6cc-5657efd6bab3", "product_resource_type":"instance_server", "product_resource_id":"9f79c57c-85c0-4145-aa58-f42579cc9861", "created_at":"2025-10-29T22:54:51.186160Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1c44fbea-68b0-491a-8578-9ac85df4e829 + - 8911163c-63dd-4687-8101-8a34bae92d02 status: 200 OK code: 200 - duration: 115.765248ms + duration: 75.282446ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +791,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/user_data method: GET response: proto: HTTP/2.0 @@ -933,29 +801,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dcc6eff7-fd1d-4e22-b074-ceac881d177a + - ee89d3dd-7523-46ac-be48-cde3cf92b923 status: 200 OK code: 200 - duration: 118.312322ms + duration: 96.552531ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/private_nics method: GET response: proto: HTTP/2.0 @@ -982,33 +842,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:06 GMT + - Wed, 29 Oct 2025 22:54:53 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d9c15240-3266-4b19-9317-5d25ce1e5c62 + - f5f7fbef-cfda-4cb7-a280-8240aa81a181 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 111.461244ms + duration: 109.651125ms - id: 20 request: proto: HTTP/1.1 @@ -1025,7 +877,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -1035,29 +887,21 @@ interactions: trailer: {} content_length: 447 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}}' headers: Content-Length: - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c6729cd3-0d4c-461d-8170-de6bec35cfe8 + - b57f4e2f-2e53-4135-bed5-184b03e18d36 status: 200 OK code: 200 - duration: 120.249582ms + duration: 118.592786ms - id: 21 request: proto: HTTP/1.1 @@ -1074,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/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -1084,29 +928,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2284" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1539c958-b349-41f1-abc3-db23e03b6eaa + - 99c17ceb-1977-4e90-a552-9f012a48b375 status: 200 OK code: 200 - duration: 381.031808ms + duration: 144.37073ms - id: 22 request: proto: HTTP/1.1 @@ -1123,7 +959,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -1133,29 +969,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "712b455d-8658-4799-a503-0529707a39b1"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b0ff50f4-a68b-4169-8874-ef89017187cd + - e90d3a6d-9539-4b34-ba37-a93f276ea8e7 status: 404 Not Found code: 404 - duration: 29.209548ms + duration: 28.255076ms - id: 23 request: proto: HTTP/1.1 @@ -1172,7 +1000,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -1182,29 +1010,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"712b455d-8658-4799-a503-0529707a39b1", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:51.186160Z", "updated_at":"2025-10-29T22:54:51.186160Z", "references":[{"id":"52fb1139-b0e1-46d5-a6cc-5657efd6bab3", "product_resource_type":"instance_server", "product_resource_id":"9f79c57c-85c0-4145-aa58-f42579cc9861", "created_at":"2025-10-29T22:54:51.186160Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0c9e0486-e449-47c8-b9f9-bec42d29020e + - baca0b3f-9601-43e5-bbd6-6e1a8c5f7f77 status: 200 OK code: 200 - duration: 74.598264ms + duration: 93.263792ms - id: 24 request: proto: HTTP/1.1 @@ -1221,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/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/user_data method: GET response: proto: HTTP/2.0 @@ -1231,29 +1051,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a188805c-6b44-4af6-acfa-73fccd003fb0 + - 6feb979d-36ba-4f0e-82d6-f97e9bfa1b0c status: 200 OK code: 200 - duration: 101.756648ms + duration: 104.592005ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1082,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/private_nics method: GET response: proto: HTTP/2.0 @@ -1280,33 +1092,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:07 GMT + - Wed, 29 Oct 2025 22:54:54 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bf049a47-731b-46d7-a273-d9e1a4bb88a3 + - 9c63db3a-bd3e-4293-a386-d0486d55379c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 161.570838ms + duration: 93.955836ms - id: 26 request: proto: HTTP/1.1 @@ -1333,33 +1137,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - 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"}}' + body: '{"ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}}' headers: Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "367" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:54:55 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8570c9f0-e3cd-4254-8d70-11816988fcbe + - a85e640d-e641-4f46-b0cc-373d7632a4a5 status: 201 Created code: 201 - duration: 372.692885ms + duration: 604.592296ms - id: 27 request: proto: HTTP/1.1 @@ -1376,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/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -1384,31 +1180,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - 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"}}' + body: '{"ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}}' headers: Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "367" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a88a90ec-7540-4926-87e9-f4acfb1bb47a + - 85a716c1-21fe-44e7-9048-8f6ff5e5e5d9 status: 200 OK code: 200 - duration: 119.112783ms + duration: 113.808831ms - id: 28 request: proto: HTTP/1.1 @@ -1425,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/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -1435,29 +1223,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2284" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cc7654b1-1172-43db-8748-8ae08ea15afa + - a6879d94-5458-40bb-9308-bd3b4f15da9c status: 200 OK code: 200 - duration: 131.312266ms + duration: 136.313944ms - id: 29 request: proto: HTTP/1.1 @@ -1474,7 +1254,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -1482,31 +1262,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2284 + content_length: 2330 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.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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2284" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2330" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b48cc195-b91a-4ac2-ac85-27271ffdc956 + - ed34f26d-8362-4d17-ad0d-83901eb7b9c6 status: 200 OK code: 200 - duration: 163.44397ms + duration: 126.745492ms - id: 30 request: proto: HTTP/1.1 @@ -1518,14 +1290,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"server":"76cb4b23-c7c1-481a-a70f-393135bcb980"}' + body: '{"server":"9f79c57c-85c0-4145-aa58-f42579cc9861"}' 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/1fb6bb11-11ed-4057-9b61-b940c46f8e81 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: PATCH response: proto: HTTP/2.0 @@ -1533,31 +1305,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 449 uncompressed: false - 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"}}' + body: '{"ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}}' headers: Content-Length: - - "446" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "449" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bde8fb2b-24e0-468a-945a-0395e264ba77 + - c75f05cd-0274-4edc-a4e9-a1f72b679529 status: 200 OK code: 200 - duration: 528.663034ms + duration: 473.731299ms - id: 31 request: proto: HTTP/1.1 @@ -1574,7 +1338,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -1582,31 +1346,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2552 + content_length: 2555 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.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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "manual", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2555" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 93393e37-6a69-4e08-ae2d-3b1c8074bbbd + - 355982f2-750b-4df4-9bb5-46485f72577d status: 200 OK code: 200 - duration: 152.138765ms + duration: 147.782981ms - id: 32 request: proto: HTTP/1.1 @@ -1623,7 +1379,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -1631,31 +1387,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2552 + content_length: 2555 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.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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "manual", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2555" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ed7b1393-f48e-4d2a-830c-6e91e44cbfc7 + - e0c468e5-7227-44bb-8338-89e280384955 status: 200 OK code: 200 - duration: 143.334687ms + duration: 134.250745ms - id: 33 request: proto: HTTP/1.1 @@ -1672,7 +1420,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -1682,29 +1430,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "712b455d-8658-4799-a503-0529707a39b1"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dc3fbf7c-4bcd-415e-9ef5-432440d5c4b1 + - 76eba48d-1ccb-47d5-a3f8-0b139759e4e0 status: 404 Not Found code: 404 - duration: 29.224736ms + duration: 29.867862ms - id: 34 request: proto: HTTP/1.1 @@ -1721,7 +1461,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -1731,29 +1471,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"712b455d-8658-4799-a503-0529707a39b1", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:51.186160Z", "updated_at":"2025-10-29T22:54:51.186160Z", "references":[{"id":"52fb1139-b0e1-46d5-a6cc-5657efd6bab3", "product_resource_type":"instance_server", "product_resource_id":"9f79c57c-85c0-4145-aa58-f42579cc9861", "created_at":"2025-10-29T22:54:51.186160Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8ff860bd-8960-4079-9f3d-072d4599c765 + - 0ced05f8-f107-42c9-b023-0ecf863f4697 status: 200 OK code: 200 - duration: 75.340476ms + duration: 76.084307ms - id: 35 request: proto: HTTP/1.1 @@ -1770,7 +1502,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/user_data method: GET response: proto: HTTP/2.0 @@ -1780,29 +1512,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:09 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 79dadee0-321a-4894-a51f-edfd77ab3fa6 + - 17c56022-7b62-4fdb-aab5-7f3f0f206689 status: 200 OK code: 200 - duration: 119.63761ms + duration: 101.483152ms - id: 36 request: proto: HTTP/1.1 @@ -1819,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/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/private_nics method: GET response: proto: HTTP/2.0 @@ -1829,33 +1553,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:09 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e9576d90-11a5-41a3-bce0-05d520ad5515 + - f4bdc601-a0a6-4666-955e-da739226dac7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 108.26108ms + duration: 101.414775ms - id: 37 request: proto: HTTP/1.1 @@ -1872,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/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/private_nics method: GET response: proto: HTTP/2.0 @@ -1882,33 +1598,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:09 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fefe4cc0-649c-4864-a624-9dbeefb5f449 + - 06898406-88ce-4111-b100-976091381f3a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 89.727539ms + duration: 105.202828ms - id: 38 request: proto: HTTP/1.1 @@ -1925,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/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -1933,31 +1641,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 449 uncompressed: false - 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"}}' + body: '{"ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}}' headers: Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "449" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 70eb01e5-eaef-4683-a582-82e477f4dd8f + - 48807e72-f7a5-41b5-bdea-68805aeaa106 status: 200 OK code: 200 - duration: 129.583569ms + duration: 115.165758ms - id: 39 request: proto: HTTP/1.1 @@ -1974,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/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -1982,31 +1682,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 447 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}}' headers: Content-Length: - - "446" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "447" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6b786f33-c44c-4b9f-af1a-e278eec6d28f + - 47fc5d90-3c62-41af-9867-fc588cd3a932 status: 200 OK code: 200 - duration: 132.46085ms + duration: 123.473584ms - id: 40 request: proto: HTTP/1.1 @@ -2023,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/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -2031,31 +1723,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2552 + content_length: 2601 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.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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "manual", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2601" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a4b61964-8508-4a16-ba50-0088b4b0df77 + - d510f0bf-36d6-4411-a6ce-ec8ef87e3c0f status: 200 OK code: 200 - duration: 125.460241ms + duration: 142.187348ms - id: 41 request: proto: HTTP/1.1 @@ -2072,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/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -2082,29 +1766,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "712b455d-8658-4799-a503-0529707a39b1"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa347fa5-15b4-479f-9b0f-a21e85573d97 + - 437a1a18-ab6a-4043-a109-5ef7c0d23047 status: 404 Not Found code: 404 - duration: 28.084931ms + duration: 24.48654ms - id: 42 request: proto: HTTP/1.1 @@ -2121,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/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -2131,29 +1807,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"712b455d-8658-4799-a503-0529707a39b1", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:51.186160Z", "updated_at":"2025-10-29T22:54:51.186160Z", "references":[{"id":"52fb1139-b0e1-46d5-a6cc-5657efd6bab3", "product_resource_type":"instance_server", "product_resource_id":"9f79c57c-85c0-4145-aa58-f42579cc9861", "created_at":"2025-10-29T22:54:51.186160Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5a469d13-1a90-4c6d-83be-5b79b6fa21ae + - bd8ba458-def3-4e93-a402-3414f245387a status: 200 OK code: 200 - duration: 75.228477ms + duration: 78.373488ms - id: 43 request: proto: HTTP/1.1 @@ -2170,7 +1838,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/user_data method: GET response: proto: HTTP/2.0 @@ -2180,29 +1848,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1f503a95-20c8-49a0-a61e-96c36b4c8ba3 + - 47683ac7-b4f9-4548-a8be-89a1811adfc8 status: 200 OK code: 200 - duration: 123.915717ms + duration: 87.659381ms - id: 44 request: proto: HTTP/1.1 @@ -2219,7 +1879,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/private_nics method: GET response: proto: HTTP/2.0 @@ -2229,33 +1889,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:10 GMT + - Wed, 29 Oct 2025 22:54:57 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 79ff4e5f-8cba-48e8-97f7-44cc94be0786 + - deb001b1-8176-4978-987a-bbc78090c383 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 93.923913ms + duration: 84.412561ms - id: 45 request: proto: HTTP/1.1 @@ -2272,7 +1924,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/1fb6bb11-11ed-4057-9b61-b940c46f8e81 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -2280,31 +1932,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 447 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}}' headers: Content-Length: - - "446" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "447" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45f03432-96db-4b0b-b12d-77a9b61edcea + - 6566178e-0bf1-4ae5-9471-277033903eed status: 200 OK code: 200 - duration: 139.950868ms + duration: 121.974751ms - id: 46 request: proto: HTTP/1.1 @@ -2321,7 +1965,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -2329,31 +1973,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 449 uncompressed: false - 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"}}' + body: '{"ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}}' headers: Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "449" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c3baeb90-939b-4cb6-8027-b083281bd3f4 + - 67ea2581-2121-42ad-aa27-be84961d1bdf status: 200 OK code: 200 - duration: 147.613628ms + duration: 124.006892ms - id: 47 request: proto: HTTP/1.1 @@ -2370,7 +2006,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -2378,31 +2014,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2552 + content_length: 2555 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.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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "manual", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2555" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 892c2674-a50a-490d-83b1-42176238c277 + - 79731bcc-9dcf-48b0-b88b-9d9add4d9d8b status: 200 OK code: 200 - duration: 142.731038ms + duration: 129.515903ms - id: 48 request: proto: HTTP/1.1 @@ -2419,7 +2047,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -2429,29 +2057,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "712b455d-8658-4799-a503-0529707a39b1"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8f13875c-c11b-47fb-b96d-9470baf79b1f + - 4d07af75-7415-4f4b-8d4e-f8d300baa61b status: 404 Not Found code: 404 - duration: 29.777333ms + duration: 28.64178ms - id: 49 request: proto: HTTP/1.1 @@ -2468,7 +2088,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -2478,29 +2098,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"712b455d-8658-4799-a503-0529707a39b1", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:51.186160Z", "updated_at":"2025-10-29T22:54:51.186160Z", "references":[{"id":"52fb1139-b0e1-46d5-a6cc-5657efd6bab3", "product_resource_type":"instance_server", "product_resource_id":"9f79c57c-85c0-4145-aa58-f42579cc9861", "created_at":"2025-10-29T22:54:51.186160Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b2bb286e-8838-4fc7-9e87-01d3ad70a228 + - e7e21b0a-52b7-43c4-b9a5-b523b03502ee status: 200 OK code: 200 - duration: 83.540444ms + duration: 78.455781ms - id: 50 request: proto: HTTP/1.1 @@ -2517,7 +2129,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/user_data method: GET response: proto: HTTP/2.0 @@ -2527,29 +2139,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 50ecaf15-a6f0-444b-a8ef-dc06433e96c8 + - 4e0a715a-fb7e-4feb-a8ed-0860426c650f status: 200 OK code: 200 - duration: 108.15927ms + duration: 118.421377ms - id: 51 request: proto: HTTP/1.1 @@ -2566,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/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/private_nics method: GET response: proto: HTTP/2.0 @@ -2576,33 +2180,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:10 GMT + - Wed, 29 Oct 2025 22:54:58 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 953b0a1b-949b-4479-a95d-44960a2911e1 + - e3952dce-050b-430e-9d6b-b12ae90e5b23 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.808058ms + duration: 106.118841ms - id: 52 request: proto: HTTP/1.1 @@ -2619,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/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -2627,31 +2223,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2552 + content_length: 2555 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.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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "manual", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2555" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a6aefcc1-2b77-4a2f-9cb9-1e12818fb89f + - 4a87097d-4b29-4763-8486-2093fb3b438d status: 200 OK code: 200 - duration: 147.701374ms + duration: 148.385348ms - id: 53 request: proto: HTTP/1.1 @@ -2668,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-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -2676,31 +2264,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2552 + content_length: 2555 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.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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}, {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "manual", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2555" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c2920df8-e975-49ab-9b5a-d3901bc60e8d + - 5c790f3d-c784-4365-b0c9-715078855f31 status: 200 OK code: 200 - duration: 170.362391ms + duration: 174.435673ms - id: 54 request: proto: HTTP/1.1 @@ -2719,7 +2299,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/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: PATCH response: proto: HTTP/2.0 @@ -2729,29 +2309,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8cf1595c-aafe-4212-979d-c7add0e4b27c + - 787176db-42c7-463d-a5cf-1b749b0c0cc0 status: 200 OK code: 200 - duration: 420.811674ms + duration: 507.542751ms - id: 55 request: proto: HTTP/1.1 @@ -2768,7 +2340,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -2776,31 +2348,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2282 + content_length: 2334 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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}, "public_ips": [{"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2282" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2334" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a11c406e-8212-4f88-9271-d7fdf23fe65f + - 65b6365d-ccd8-485a-bca9-3d210645cab0 status: 200 OK code: 200 - duration: 162.579435ms + duration: 149.663149ms - id: 56 request: proto: HTTP/1.1 @@ -2817,7 +2381,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -2825,31 +2389,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2282 + content_length: 2334 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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}, "public_ips": [{"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2282" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2334" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 31d04ad0-5094-45fa-968a-d233dd7160f8 + - 355c4b62-9734-480a-b42a-de507bc7d243 status: 200 OK code: 200 - duration: 142.319889ms + duration: 150.190586ms - id: 57 request: proto: HTTP/1.1 @@ -2866,7 +2422,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -2876,29 +2432,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "712b455d-8658-4799-a503-0529707a39b1"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9d62af50-cad0-452b-a6b5-fe05ebf53e9b + - 2cd97487-6d4b-4c13-83b6-f0d3cd6b7d69 status: 404 Not Found code: 404 - duration: 41.806275ms + duration: 27.506267ms - id: 58 request: proto: HTTP/1.1 @@ -2915,7 +2463,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -2925,29 +2473,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"712b455d-8658-4799-a503-0529707a39b1", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:51.186160Z", "updated_at":"2025-10-29T22:54:51.186160Z", "references":[{"id":"52fb1139-b0e1-46d5-a6cc-5657efd6bab3", "product_resource_type":"instance_server", "product_resource_id":"9f79c57c-85c0-4145-aa58-f42579cc9861", "created_at":"2025-10-29T22:54:51.186160Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c1fc0e03-60e2-4b45-9dc9-f7a0a06340ec + - c6716167-deff-4368-89bb-7b32c96d4fee status: 200 OK code: 200 - duration: 78.365759ms + duration: 82.395158ms - id: 59 request: proto: HTTP/1.1 @@ -2964,7 +2504,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/user_data method: GET response: proto: HTTP/2.0 @@ -2974,29 +2514,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:12 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7a196706-8f55-4771-950a-3ee1e228c025 + - a3ba7f9b-b80f-4be1-a531-40accb04625f status: 200 OK code: 200 - duration: 92.364894ms + duration: 108.575956ms - id: 60 request: proto: HTTP/1.1 @@ -3013,7 +2545,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/private_nics method: GET response: proto: HTTP/2.0 @@ -3023,33 +2555,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:12 GMT + - Wed, 29 Oct 2025 22:55:00 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9e6b00fa-0124-4181-8510-ddfe7da82cbe + - 6543e2b0-5f4e-4c9b-8175-d209ac54d540 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 90.253006ms + duration: 84.622203ms - id: 61 request: proto: HTTP/1.1 @@ -3066,7 +2590,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/private_nics method: GET response: proto: HTTP/2.0 @@ -3076,33 +2600,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:12 GMT + - Wed, 29 Oct 2025 22:55:00 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fa360d34-5874-4ef6-8f99-d1728f2a5650 + - 28a3d722-9394-459d-89f6-0e81f1518794 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 105.202982ms + duration: 115.956488ms - id: 62 request: proto: HTTP/1.1 @@ -3119,7 +2635,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -3129,29 +2645,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - 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"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "8bf3f722-0701-4ef8-9a4b-8c498385dfbe"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:55:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e82ca257-621e-4251-bf2e-a5b62cb8e2e8 + - 03d0a270-29b8-4dd2-9a4c-5f40c343b026 status: 200 OK code: 200 - duration: 118.535738ms + duration: 113.607686ms - id: 63 request: proto: HTTP/1.1 @@ -3168,7 +2676,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/1fb6bb11-11ed-4057-9b61-b940c46f8e81 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -3176,31 +2684,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 449 uncompressed: false - 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"}}' + body: '{"ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}}' headers: Content-Length: - - "446" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "449" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:55:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b8ead584-55b5-478e-a460-88753722b2c8 + - 5d5b579b-deda-48ae-9a82-e8107969c856 status: 200 OK code: 200 - duration: 126.80259ms + duration: 119.06977ms - id: 64 request: proto: HTTP/1.1 @@ -3217,7 +2717,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -3225,31 +2725,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2282 + 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-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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}, "public_ips": [{"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2282" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2288" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:55:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 377260d9-0e5c-4615-a237-aec2e59d8923 + - fd8dcf35-1339-4efb-9862-e9d84fa337c2 status: 200 OK code: 200 - duration: 177.000172ms + duration: 162.735556ms - id: 65 request: proto: HTTP/1.1 @@ -3266,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/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -3276,29 +2768,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "712b455d-8658-4799-a503-0529707a39b1"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:55:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - abfe5040-2e54-4870-a41c-43c23a5d8e3a + - a5bbf741-a769-44a2-9693-8d2c4c7fa219 status: 404 Not Found code: 404 - duration: 28.853042ms + duration: 41.945187ms - id: 66 request: proto: HTTP/1.1 @@ -3315,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/block/v1alpha1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -3325,29 +2809,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"712b455d-8658-4799-a503-0529707a39b1", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:51.186160Z", "updated_at":"2025-10-29T22:54:51.186160Z", "references":[{"id":"52fb1139-b0e1-46d5-a6cc-5657efd6bab3", "product_resource_type":"instance_server", "product_resource_id":"9f79c57c-85c0-4145-aa58-f42579cc9861", "created_at":"2025-10-29T22:54:51.186160Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:13 GMT + - Wed, 29 Oct 2025 22:55:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8779979e-e807-464e-be83-08bf48277a9b + - f591fc8a-67e4-4c52-8014-2474da554623 status: 200 OK code: 200 - duration: 88.406146ms + duration: 105.202627ms - id: 67 request: proto: HTTP/1.1 @@ -3364,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/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/user_data method: GET response: proto: HTTP/2.0 @@ -3374,29 +2850,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 20eaf5c9-8c35-47ea-a464-afd41f889d95 + - dc15dd87-96c2-48db-982e-464e8484e959 status: 200 OK code: 200 - duration: 106.968832ms + duration: 121.226373ms - id: 68 request: proto: HTTP/1.1 @@ -3413,7 +2881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/private_nics method: GET response: proto: HTTP/2.0 @@ -3423,33 +2891,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:13 GMT + - Wed, 29 Oct 2025 22:55:01 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9c0baaa3-4a18-48c7-877c-f1eebcd80dcc + - a86fd137-73af-4fa5-aa99-eab89546aa12 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 98.208465ms + duration: 146.532484ms - id: 69 request: proto: HTTP/1.1 @@ -3466,7 +2926,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -3474,31 +2934,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2282 + content_length: 2334 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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}, "public_ips": [{"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2282" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2334" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 252266dd-7053-4c73-b17e-28cf4f059f11 + - 7bb534c3-1038-4cec-8985-278ef768abdb status: 200 OK code: 200 - duration: 166.647392ms + duration: 152.067085ms - id: 70 request: proto: HTTP/1.1 @@ -3515,7 +2967,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -3523,31 +2975,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2282 + content_length: 2334 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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}, "public_ips": [{"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:54:51.053177+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2282" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2334" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 39f12d3e-c132-403e-ba25-adfb18f49abc + - fe6773b8-2d90-4891-b8a6-d8cbf791ad7f status: 200 OK code: 200 - duration: 149.089247ms + duration: 144.488763ms - id: 71 request: proto: HTTP/1.1 @@ -3564,39 +3008,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 0 uncompressed: false - 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"}' + body: "" headers: - Content-Length: - - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2f110c44-5511-4615-a58e-ca356d82f036 - status: 200 OK - code: 200 - duration: 89.065451ms + - bbc67a96-58ca-49b6-8d6d-1528ce501a77 + status: 204 No Content + code: 204 + duration: 377.189523ms - id: 72 request: proto: HTTP/1.1 @@ -3613,37 +3047,31 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 + 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: '{"id":"712b455d-8658-4799-a503-0529707a39b1", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:51.186160Z", "updated_at":"2025-10-29T22:54:51.186160Z", "references":[{"id":"52fb1139-b0e1-46d5-a6cc-5657efd6bab3", "product_resource_type":"instance_server", "product_resource_id":"9f79c57c-85c0-4145-aa58-f42579cc9861", "created_at":"2025-10-29T22:54:51.186160Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "705" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 34053a79-ccc9-46fa-9f64-7b2686931ba0 - status: 204 No Content - code: 204 - duration: 454.650387ms + - d3573286-a056-4b98-a343-5f94376653f2 + status: 200 OK + code: 200 + duration: 85.013475ms - id: 73 request: proto: HTTP/1.1 @@ -3662,7 +3090,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/76cb4b23-c7c1-481a-a70f-393135bcb980/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/action method: POST response: proto: HTTP/2.0 @@ -3672,31 +3100,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "fc856498-d0f7-4117-a4c7-44e8f05b149b", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/action", "href_result": "/servers/9f79c57c-85c0-4145-aa58-f42579cc9861", "started_at": "2025-10-29T22:55:02.113839+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:55:02 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cdc4bdbe-4664-4a40-a4eb-79960b77600d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fc856498-d0f7-4117-a4c7-44e8f05b149b Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7b13d4e7-e261-4e7d-8d9b-c1aa9adb96ab + - 01d0b76f-6d1d-41e7-acba-f79d765018bb status: 202 Accepted code: 202 - duration: 271.514988ms + duration: 368.57769ms - id: 74 request: proto: HTTP/1.1 @@ -3713,7 +3133,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -3721,31 +3141,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2304 + 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-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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}, "public_ips": [{"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:55:01.823091+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2310" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ddabd991-80b3-43df-b73f-2bd373c29035 + - c8eaf130-c792-4d91-a733-b862a8604639 status: 200 OK code: 200 - duration: 149.949792ms + duration: 144.570326ms - id: 75 request: proto: HTTP/1.1 @@ -3762,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/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -3770,31 +3182,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2439 + content_length: 2444 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: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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}, "public_ips": [{"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:55:03.882453+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "901", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2439" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2444" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c33bb3cb-b038-40a8-abbd-b62b54797c41 + - 0581cff5-6d01-462f-96cc-a08a91d4219f status: 200 OK code: 200 - duration: 158.44487ms + duration: 133.112772ms - id: 76 request: proto: HTTP/1.1 @@ -3813,7 +3217,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/76cb4b23-c7c1-481a-a70f-393135bcb980/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/action method: POST response: proto: HTTP/2.0 @@ -3823,31 +3227,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "1e7c6b19-df9b-4e1f-93e6-e3b68e7c1571", "description": "server_terminate", "status": "pending", "href_from": "/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/action", "href_result": "/servers/9f79c57c-85c0-4145-aa58-f42579cc9861", "started_at": "2025-10-29T22:55:07.693612+00:00", "terminated_at": null, "progress": 0, "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:19 GMT + - Wed, 29 Oct 2025 22:55:07 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/84b1d3de-a213-4b39-bf2f-5990ec96ec8a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1e7c6b19-df9b-4e1f-93e6-e3b68e7c1571 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5d9aa2f6-7cab-45e1-8ae1-e4b1c741c666 + - 86e603a0-f7f5-4e4e-9d61-8c61f869458a status: 202 Accepted code: 202 - duration: 259.153546ms + duration: 275.898885ms - id: 77 request: proto: HTTP/1.1 @@ -3864,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/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -3872,31 +3268,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2402 + content_length: 2453 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-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"}}' + body: '{"server": {"id": "9f79c57c-85c0-4145-aa58-f42579cc9861", "name": "tf-tests-instance-server-ips", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-server-ips", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "712b455d-8658-4799-a503-0529707a39b1", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}, "public_ips": [{"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "d44dabab-68c9-4e96-bd7f-bd74c209609a"}], "mac_address": "de:00:00:d0:41:9b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:51.053177+00:00", "modification_date": "2025-10-29T22:55:07.467034+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "901", "node_id": "18"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2402" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2453" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 53a31d2f-21ae-42b5-b684-ba403a406d35 + - 84c6a533-db32-4e95-ab7d-ccdc1b9ac089 status: 200 OK code: 200 - duration: 164.548788ms + duration: 132.217498ms - id: 78 request: proto: HTTP/1.1 @@ -3913,7 +3301,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -3923,29 +3311,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"76cb4b23-c7c1-481a-a70f-393135bcb980","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "9f79c57c-85c0-4145-aa58-f42579cc9861"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f3a3678-06b1-42f5-8af5-c805c090cab6 + - 633bbe30-6803-4f8f-a0c9-e10285fa5081 status: 404 Not Found code: 404 - duration: 46.799058ms + duration: 53.687206ms - id: 79 request: proto: HTTP/1.1 @@ -3962,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/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -3972,29 +3352,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "712b455d-8658-4799-a503-0529707a39b1"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 48f41f1e-2eab-4be3-a67f-74b94b79de4c + - 5ea9433d-f370-417b-8ac6-c599470adb2f status: 404 Not Found code: 404 - duration: 28.291111ms + duration: 24.749281ms - id: 80 request: proto: HTTP/1.1 @@ -4011,7 +3383,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: GET response: proto: HTTP/2.0 @@ -4021,29 +3393,21 @@ interactions: trailer: {} content_length: 498 uncompressed: false - 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"}' + body: '{"id":"712b455d-8658-4799-a503-0529707a39b1", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:51.186160Z", "updated_at":"2025-10-29T22:55:09.398506Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:09.398506Z", "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:25 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 30cd8d66-9d72-400d-a43f-85e37060dae6 + - ca0fb298-2411-409e-8576-ab6662baa57a status: 200 OK code: 200 - duration: 76.5049ms + duration: 77.59761ms - id: 81 request: proto: HTTP/1.1 @@ -4060,7 +3424,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 method: DELETE response: proto: HTTP/2.0 @@ -4072,25 +3436,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bfd9bca0-c4b8-4ff6-9c2e-0db8b3104401 + - 408c1f84-bcc2-4bd3-8290-0359cec133cd status: 204 No Content code: 204 - duration: 171.848779ms + duration: 154.330633ms - id: 82 request: proto: HTTP/1.1 @@ -4107,7 +3463,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/1fb6bb11-11ed-4057-9b61-b940c46f8e81 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: DELETE response: proto: HTTP/2.0 @@ -4119,25 +3475,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3b5b4825-f5dc-437b-ac08-faca88c84138 + - d1327346-161a-48b5-b8c9-3c806e71389a status: 204 No Content code: 204 - duration: 316.297315ms + duration: 360.227184ms - id: 83 request: proto: HTTP/1.1 @@ -4154,7 +3502,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 method: GET response: proto: HTTP/2.0 @@ -4164,26 +3512,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"76cb4b23-c7c1-481a-a70f-393135bcb980","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "9f79c57c-85c0-4145-aa58-f42579cc9861"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:25 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a2a98c9a-3cd8-437d-9a44-db2db5bf9c9d + - bb8b6d98-4211-4155-9805-4ceef5bd30a4 status: 404 Not Found code: 404 - duration: 72.445462ms + duration: 54.471022ms diff --git a/internal/services/instance/testdata/server-ipv6.cassette.yaml b/internal/services/instance/testdata/server-ipv6.cassette.yaml index 0d534d824..fc10b42d5 100644 --- a/internal/services/instance/testdata/server-ipv6.cassette.yaml +++ b/internal/services/instance/testdata/server-ipv6.cassette.yaml @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 374 uncompressed: false - 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"}}' + body: '{"ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": null, "prefix": "2001:bc8:710:4201::/64", "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv6", "state": "detached", "tags": [], "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}}' headers: Content-Length: - "374" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:30 GMT + - Wed, 29 Oct 2025 22:55:17 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + - 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: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f59a32ee-3893-4e62-b7c1-66ca6f84cd80 + - d91b4944-a55e-4ae2-8f8c-2001e971a699 status: 201 Created code: 201 - duration: 610.897464ms + duration: 743.347618ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + 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,29 +72,21 @@ interactions: trailer: {} content_length: 374 uncompressed: false - 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"}}' + body: '{"ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": null, "prefix": "2001:bc8:710:4201::/64", "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv6", "state": "detached", "tags": [], "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}}' headers: Content-Length: - "374" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:30 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 325953b4-2036-4f73-9b3a-4125e85a4a4d + - 1934912b-d1d2-4a4e-93b1-e88000b72d66 status: 200 OK code: 200 - duration: 114.32703ms + duration: 120.711916ms - id: 2 request: proto: HTTP/1.1 @@ -115,7 +99,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -127,35 +113,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:30 GMT + - Wed, 29 Oct 2025 22:55:18 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b65bc2a5-b1eb-4ac6-8401-1de00e36dea9 + - 72a3374e-e0a3-4883-92c5-a1303b1d0f7e X-Total-Count: - "68" status: 200 OK code: 200 - duration: 37.198938ms + duration: 48.080603ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +146,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -182,33 +162,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:30 GMT + - Wed, 29 Oct 2025 22:55:18 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dff14c82-ba25-4664-b591-7f4ec7e6f14f + - 859abbfa-e011-4f62-9cdd-5d534ad3b9bb X-Total-Count: - "68" status: 200 OK code: 200 - duration: 55.185508ms + duration: 37.569146ms - id: 4 request: proto: HTTP/1.1 @@ -221,7 +193,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:30 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 43bd59bc-2563-4279-941e-1b10df47c288 + - 8ee98806-17e6-4542-b03a-6a22bc73c752 status: 200 OK code: 200 - duration: 48.941876ms + duration: 47.218932ms - id: 5 request: proto: HTTP/1.1 @@ -269,7 +241,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-beautiful-allen","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"public_ips":["2a2afa1d-f9d6-4e74-b39b-6c001dfdb154"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -286,31 +258,23 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:18.810461+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:32 GMT + - Wed, 29 Oct 2025 22:55:19 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ccf995c0-18c8-4df3-a8f1-e31644f4d6fa + - 2a8756db-eaec-44e1-999e-8cc621fc787e status: 201 Created code: 201 - duration: 1.688914605s + duration: 1.598267479s - id: 6 request: proto: HTTP/1.1 @@ -327,7 +291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -337,29 +301,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:18.810461+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 94253327-45b8-4765-89a3-ea708461649b + - de393e26-7f69-4cd1-8af1-21d7988e972d status: 200 OK code: 200 - duration: 164.594514ms + duration: 130.979317ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -386,29 +342,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:18.810461+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 027e7b63-79ac-4a8a-bda2-d1cfb36111c0 + - 28723a25-5e2e-4699-8d1b-e4f37eaa3815 status: 200 OK code: 200 - duration: 141.224524ms + duration: 176.528446ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 method: GET response: proto: HTTP/2.0 @@ -435,29 +383,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"6abc06b0-2146-491f-9219-8e3c68fe3f66", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.928285Z", "updated_at":"2025-10-29T22:55:18.928285Z", "references":[{"id":"384d6e3b-115e-4599-98db-161e4241e961", "product_resource_type":"instance_server", "product_resource_id":"51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "created_at":"2025-10-29T22:55:18.928285Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - febd384d-2468-4daa-95c2-a50a4a1a2cc3 + - 67da4fec-bab9-42d5-99f9-924a16f0d49d status: 200 OK code: 200 - duration: 88.723987ms + duration: 76.402136ms - id: 9 request: proto: HTTP/1.1 @@ -476,7 +416,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/ed235d1e-32e6-4ccf-86bd-2517060152bb/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/action method: POST response: proto: HTTP/2.0 @@ -486,31 +426,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "bad57b20-a235-45b9-9a78-cd6b163ce8de", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/action", "href_result": "/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "started_at": "2025-10-29T22:55:20.443428+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:33 GMT + - Wed, 29 Oct 2025 22:55:20 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fa0698a5-40f4-4668-86c6-158676942092 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bad57b20-a235-45b9-9a78-cd6b163ce8de Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6aa313f9-9829-40c4-96c7-9c46182f5f7c + - d60fe699-8b31-4c89-aba7-b805b0adffb9 status: 202 Accepted code: 202 - duration: 263.811427ms + duration: 288.363093ms - id: 10 request: proto: HTTP/1.1 @@ -527,7 +459,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -537,29 +469,21 @@ interactions: trailer: {} 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-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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:20.225144+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2366" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eea90c46-cea5-4f1c-8180-cb226bb0cfa6 + - ff9a32b2-7159-4d53-a27f-3a54fbebffb0 status: 200 OK code: 200 - duration: 170.164114ms + duration: 145.657437ms - id: 11 request: proto: HTTP/1.1 @@ -576,7 +500,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -584,31 +508,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2499 + content_length: 2544 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":{"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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:22.735346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2499" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2544" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:38 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 05b5ccf7-4ea2-41b0-8890-660cd5882d52 + - 3e8bdff6-a647-4809-bf81-51294b96fae6 status: 200 OK code: 200 - duration: 144.614615ms + duration: 143.659662ms - id: 12 request: proto: HTTP/1.1 @@ -625,7 +541,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -633,31 +549,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2499 + content_length: 2498 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":{"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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:22.735346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2499" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2498" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:38 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 58b428a1-ae31-4879-aedb-2abc523ec9fa + - e130ceb9-f3b4-4e30-b5e1-abe72ce8db71 status: 200 OK code: 200 - duration: 139.013137ms + duration: 153.110405ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 method: GET response: proto: HTTP/2.0 @@ -684,29 +592,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6abc06b0-2146-491f-9219-8e3c68fe3f66"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e62ebe8a-bc71-4b12-8869-0ff126ca67ab + - 97c182ae-f138-484b-8103-eb1326d60e1e status: 404 Not Found code: 404 - duration: 30.537375ms + duration: 27.646049ms - id: 14 request: proto: HTTP/1.1 @@ -723,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/52f1a3ba-dc8f-4840-81dd-37c87fa341ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 method: GET response: proto: HTTP/2.0 @@ -733,29 +633,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"6abc06b0-2146-491f-9219-8e3c68fe3f66", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.928285Z", "updated_at":"2025-10-29T22:55:18.928285Z", "references":[{"id":"384d6e3b-115e-4599-98db-161e4241e961", "product_resource_type":"instance_server", "product_resource_id":"51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "created_at":"2025-10-29T22:55:18.928285Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:38 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d4c99ab8-af84-4e96-bf9d-7a78a3d201c0 + - b29f1aa1-ecc3-4fc3-a957-48d5d595ad47 status: 200 OK code: 200 - duration: 68.327333ms + duration: 93.160947ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/user_data method: GET response: proto: HTTP/2.0 @@ -782,29 +674,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:38 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 04297a63-6fd1-4250-8610-8c789146abee + - f4d8ee8e-c93d-4e21-be65-5fc4484d867c status: 200 OK code: 200 - duration: 88.006908ms + duration: 93.704212ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/private_nics method: GET response: proto: HTTP/2.0 @@ -831,33 +715,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:38 GMT + - Wed, 29 Oct 2025 22:55:26 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 18ec693a-19f7-4916-b1a5-670e5a57d6fd + - ed828b94-401a-4866-a59b-9233d908913f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 81.92545ms + duration: 90.283506ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +750,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -882,31 +758,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2499 + content_length: 2544 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":{"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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:22.735346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2499" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2544" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:39 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a53cfe4e-9435-4af7-befc-f3c9f331e970 + - 52129b72-d7aa-407d-a255-5edab2cc4274 status: 200 OK code: 200 - duration: 165.061097ms + duration: 130.063737ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +791,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 method: GET response: proto: HTTP/2.0 @@ -933,29 +801,21 @@ interactions: trailer: {} content_length: 450 uncompressed: false - 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"}}' + body: '{"ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": null, "prefix": "2001:bc8:710:4201::/64", "reverse": null, "server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv6", "state": "attached", "tags": [], "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}}' headers: Content-Length: - "450" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:39 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 038b769a-eb7a-4978-b322-0d0749b19fae + - e2f64dd7-ea59-4d06-a725-e2847cae4a0d status: 200 OK code: 200 - duration: 120.309782ms + duration: 109.532252ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -980,31 +840,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2499 + content_length: 2498 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":{"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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:22.735346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2499" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2498" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:39 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9b72f19e-0013-4667-9cd5-3a5f5b7587f5 + - 5722626d-3568-4f27-920f-1b64df846d65 status: 200 OK code: 200 - duration: 136.537497ms + duration: 144.033582ms - id: 20 request: proto: HTTP/1.1 @@ -1021,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/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 method: GET response: proto: HTTP/2.0 @@ -1031,29 +883,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6abc06b0-2146-491f-9219-8e3c68fe3f66"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:39 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 10b5c7e3-f651-40e3-bd88-e39da47b1e4f + - d1a097f0-8c36-4088-8808-26a755fe130b status: 404 Not Found code: 404 - duration: 23.312324ms + duration: 34.236534ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 method: GET response: proto: HTTP/2.0 @@ -1080,29 +924,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"6abc06b0-2146-491f-9219-8e3c68fe3f66", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.928285Z", "updated_at":"2025-10-29T22:55:18.928285Z", "references":[{"id":"384d6e3b-115e-4599-98db-161e4241e961", "product_resource_type":"instance_server", "product_resource_id":"51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "created_at":"2025-10-29T22:55:18.928285Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2ffef413-eded-4f9d-9a0b-7e5d1bc7a72c + - 478a393e-cdff-43af-a676-b79530cefd56 status: 200 OK code: 200 - duration: 82.699151ms + duration: 92.562738ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/user_data method: GET response: proto: HTTP/2.0 @@ -1129,29 +965,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:39 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3e3b5ffc-2ef8-4a29-a0b3-b1cf35394872 + - 17a90251-922b-4922-a504-cb3e066e22a4 status: 200 OK code: 200 - duration: 103.7683ms + duration: 102.262788ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +996,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/private_nics method: GET response: proto: HTTP/2.0 @@ -1178,33 +1006,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:39 GMT + - Wed, 29 Oct 2025 22:55:27 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 63d02fbd-f677-4c5a-8fb6-82a452b65eaf + - d5c709ed-4945-408c-ae09-9e0faadd4a98 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.570619ms + duration: 86.731374ms - id: 24 request: proto: HTTP/1.1 @@ -1221,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/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 method: GET response: proto: HTTP/2.0 @@ -1231,29 +1051,21 @@ interactions: trailer: {} content_length: 450 uncompressed: false - 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"}}' + body: '{"ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": null, "prefix": "2001:bc8:710:4201::/64", "reverse": null, "server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv6", "state": "attached", "tags": [], "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}}' headers: Content-Length: - "450" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b38da6b0-330b-4995-a94d-1857f1d4296b + - ebfafaa7-afea-499a-b807-4c54efe96270 status: 200 OK code: 200 - duration: 124.154719ms + duration: 120.309697ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1082,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -1278,31 +1090,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2499 + content_length: 2544 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":{"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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}, "public_ips": [{"id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154", "address": "2001:bc8:710:4201:dc00:ff:fed0:41b7", "dynamic": false, "gateway": "fe80::dc00:ff:fed0:41b8", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": "d36b284e-2ba0-471c-be1a-de90b61b6897"}], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:22.735346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2499" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2544" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e9220082-3cf3-4506-a8c0-1fec32e06ab2 + - ba17efa8-10a0-4776-b1f3-e34cb05d2d94 status: 200 OK code: 200 - duration: 144.831614ms + duration: 142.108422ms - id: 26 request: proto: HTTP/1.1 @@ -1319,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/52f1a3ba-dc8f-4840-81dd-37c87fa341ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 method: GET response: proto: HTTP/2.0 @@ -1329,29 +1133,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6abc06b0-2146-491f-9219-8e3c68fe3f66"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0c4894f6-adc7-48e4-bf78-5554843e519f + - 24fc3288-3636-401f-bdcb-74fc71fa98fa status: 404 Not Found code: 404 - duration: 28.53401ms + duration: 30.761577ms - id: 27 request: proto: HTTP/1.1 @@ -1368,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/block/v1alpha1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 method: GET response: proto: HTTP/2.0 @@ -1378,29 +1174,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"6abc06b0-2146-491f-9219-8e3c68fe3f66", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.928285Z", "updated_at":"2025-10-29T22:55:18.928285Z", "references":[{"id":"384d6e3b-115e-4599-98db-161e4241e961", "product_resource_type":"instance_server", "product_resource_id":"51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "created_at":"2025-10-29T22:55:18.928285Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bbe84bfd-3568-44f2-9b5b-2e99b9e84879 + - bd338061-3a63-4acb-8978-f3e70fea6cbc status: 200 OK code: 200 - duration: 85.395836ms + duration: 83.513496ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/user_data method: GET response: proto: HTTP/2.0 @@ -1427,29 +1215,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 20e12bb2-bdfb-4cc8-aba9-3142c704c50d + - df0cfb0b-a106-4bc8-9aee-fa08e34ba498 status: 200 OK code: 200 - duration: 98.324688ms + duration: 99.249753ms - id: 29 request: proto: HTTP/1.1 @@ -1466,7 +1246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/private_nics method: GET response: proto: HTTP/2.0 @@ -1476,33 +1256,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:40 GMT + - Wed, 29 Oct 2025 22:55:27 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ff9c892f-5ffc-4ccd-a45d-ba332f43e54a + - f7eace57-64ad-4211-8b8f-77a11c19d6ed X-Total-Count: - "0" status: 200 OK code: 200 - duration: 106.056619ms + duration: 94.698422ms - id: 30 request: proto: HTTP/1.1 @@ -1519,7 +1291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 method: DELETE response: proto: HTTP/2.0 @@ -1531,25 +1303,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b0d0d3d0-847d-46b6-8a02-006f03df87ea + - 30ced8ec-47ea-4b1d-bac0-07677af5ccbb status: 204 No Content code: 204 - duration: 610.282729ms + duration: 604.57145ms - id: 31 request: proto: HTTP/1.1 @@ -1566,7 +1330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -1574,31 +1338,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1944 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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:22.735346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1944" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4da570d6-7bb1-46ce-a7fb-abdd05b655f0 + - ab11622b-dfa9-4d44-8a03-4ff5480f7ac9 status: 200 OK code: 200 - duration: 162.505341ms + duration: 130.130653ms - id: 32 request: proto: HTTP/1.1 @@ -1615,7 +1371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -1623,31 +1379,23 @@ 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-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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:22.735346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 25fa27cf-d4c9-43c4-95b3-e7ea299ca3b2 + - 901f839f-57d6-495f-a717-2464a3cb9d67 status: 200 OK code: 200 - duration: 152.782478ms + duration: 142.429413ms - id: 33 request: proto: HTTP/1.1 @@ -1664,7 +1412,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -1672,31 +1420,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1944 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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:22.735346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1944" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5c9b2828-5a3e-4a56-b00a-f22e8e95afa6 + - a23d9d04-f716-4ca6-afd1-4c3b6736d081 status: 200 OK code: 200 - duration: 149.794357ms + duration: 136.551061ms - id: 34 request: proto: HTTP/1.1 @@ -1713,7 +1453,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -1721,31 +1461,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1944 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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:22.735346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1944" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f89be135-578f-4a9d-b868-5c374582e34b + - fc358cd1-e726-496c-a4cb-81b1d734b52a status: 200 OK code: 200 - duration: 152.248958ms + duration: 138.950198ms - id: 35 request: proto: HTTP/1.1 @@ -1762,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/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 method: GET response: proto: HTTP/2.0 @@ -1772,29 +1504,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6abc06b0-2146-491f-9219-8e3c68fe3f66"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 73718c56-7ddf-4059-a03c-b3850b51f4a3 + - 6cc43374-8bcf-4ff9-b00e-9422b3583fce status: 404 Not Found code: 404 - duration: 27.287314ms + duration: 30.697396ms - id: 36 request: proto: HTTP/1.1 @@ -1811,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/block/v1alpha1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 method: GET response: proto: HTTP/2.0 @@ -1821,29 +1545,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"6abc06b0-2146-491f-9219-8e3c68fe3f66", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.928285Z", "updated_at":"2025-10-29T22:55:18.928285Z", "references":[{"id":"384d6e3b-115e-4599-98db-161e4241e961", "product_resource_type":"instance_server", "product_resource_id":"51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "created_at":"2025-10-29T22:55:18.928285Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 50426a05-0b9b-4f89-9efb-2fceb8145299 + - 497dd372-de6b-4767-a970-66f7b784279f status: 200 OK code: 200 - duration: 87.037563ms + duration: 83.6175ms - id: 37 request: proto: HTTP/1.1 @@ -1860,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/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/user_data method: GET response: proto: HTTP/2.0 @@ -1870,29 +1586,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f05fdc18-c3ec-4dc6-9b67-187120c743ba + - 6ef099f4-3c15-4b3e-860a-031b4a825c48 status: 200 OK code: 200 - duration: 95.681153ms + duration: 111.404655ms - id: 38 request: proto: HTTP/1.1 @@ -1909,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/ed235d1e-32e6-4ccf-86bd-2517060152bb/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/private_nics method: GET response: proto: HTTP/2.0 @@ -1919,33 +1627,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:42 GMT + - Wed, 29 Oct 2025 22:55:29 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cc886497-982a-4475-829f-8fe7bf9b59e5 + - a4378c11-1bef-4a6f-acf4-841168295e45 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 102.851103ms + duration: 101.165867ms - id: 39 request: proto: HTTP/1.1 @@ -1962,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/ed235d1e-32e6-4ccf-86bd-2517060152bb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -1970,31 +1670,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1944 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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:22.735346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1944" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b47bdcc7-4491-4b8a-bcc1-978f127d8fbe + - c2025636-6dba-4000-add6-66bfea1814aa status: 200 OK code: 200 - duration: 146.594021ms + duration: 156.019227ms - id: 40 request: proto: HTTP/1.1 @@ -2011,7 +1703,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -2019,31 +1711,23 @@ 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-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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:22.735346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 46921ca0-fc1d-48f2-b56b-a074d2cd3d06 + - de2c7a21-ad99-4d88-94e5-b13f0d45b6ee status: 200 OK code: 200 - duration: 156.946834ms + duration: 150.921345ms - id: 41 request: proto: HTTP/1.1 @@ -2060,7 +1744,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 method: GET response: proto: HTTP/2.0 @@ -2070,29 +1754,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6abc06b0-2146-491f-9219-8e3c68fe3f66"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a2831dc3-d483-464d-bd05-bf5c4ab64be3 + - cc159f15-5a91-4cf7-8b25-bfdff9541ddb status: 404 Not Found code: 404 - duration: 25.656929ms + duration: 27.15918ms - id: 42 request: proto: HTTP/1.1 @@ -2109,7 +1785,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 method: GET response: proto: HTTP/2.0 @@ -2119,29 +1795,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"6abc06b0-2146-491f-9219-8e3c68fe3f66", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.928285Z", "updated_at":"2025-10-29T22:55:18.928285Z", "references":[{"id":"384d6e3b-115e-4599-98db-161e4241e961", "product_resource_type":"instance_server", "product_resource_id":"51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "created_at":"2025-10-29T22:55:18.928285Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2683fac5-c1c3-471c-8e2e-3a81bdf3c729 + - 1fbe678f-ff50-463d-ad2c-0d0437f8939f status: 200 OK code: 200 - duration: 78.411216ms + duration: 98.084335ms - id: 43 request: proto: HTTP/1.1 @@ -2158,7 +1826,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/user_data method: GET response: proto: HTTP/2.0 @@ -2168,29 +1836,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 29e63e57-c3ea-4a70-9527-cb471170764e + - 9f9e7e49-4718-41bc-b586-f4c0e9f108ef status: 200 OK code: 200 - duration: 97.011167ms + duration: 91.597194ms - id: 44 request: proto: HTTP/1.1 @@ -2207,7 +1867,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/private_nics method: GET response: proto: HTTP/2.0 @@ -2217,33 +1877,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:42 GMT + - Wed, 29 Oct 2025 22:55:30 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0138d8a2-09a6-4ff9-bb4a-1d979786b5ba + - 6ba775b0-bf95-43ae-80a0-7a30ee554380 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 100.9023ms + duration: 89.252979ms - id: 45 request: proto: HTTP/1.1 @@ -2260,7 +1912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -2268,31 +1920,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1944 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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:22.735346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1944" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 19cc46ea-06a0-492f-a74f-909c258aa9f5 + - 4dcf9fb0-4cd1-4517-b623-ed59caea34ba status: 200 OK code: 200 - duration: 146.248804ms + duration: 119.38524ms - id: 46 request: proto: HTTP/1.1 @@ -2309,7 +1953,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -2317,31 +1961,23 @@ 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-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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:22.735346+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1899" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8840ba71-6697-4831-a7eb-68a9191fcb8a + - 09c42a18-92e6-4f6e-be19-b96cc817f50b status: 200 OK code: 200 - duration: 128.201368ms + duration: 119.467874ms - id: 47 request: proto: HTTP/1.1 @@ -2360,7 +1996,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/ed235d1e-32e6-4ccf-86bd-2517060152bb/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/action method: POST response: proto: HTTP/2.0 @@ -2370,31 +2006,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "755659fb-fb17-4231-8dae-ef8eeffad1b8", "description": "server_terminate", "status": "pending", "href_from": "/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/action", "href_result": "/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "started_at": "2025-10-29T22:55:31.296544+00:00", "terminated_at": null, "progress": 0, "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:43 GMT + - Wed, 29 Oct 2025 22:55:31 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/89495860-8816-4e43-96e1-cc43829050a9 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/755659fb-fb17-4231-8dae-ef8eeffad1b8 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 00e031af-19f8-49e5-9478-4d502822f18a + - bd6d2ebc-eb85-482f-8840-dfe580437a0d status: 202 Accepted code: 202 - duration: 277.571693ms + duration: 301.714577ms - id: 48 request: proto: HTTP/1.1 @@ -2411,7 +2039,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -2419,31 +2047,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1862 + content_length: 1907 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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:31.047945+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1862" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1907" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ebed0da6-e0d1-4621-b606-ffe8b8c2caec + - 82273e6e-f64e-4aaa-bf77-7d28643641dc status: 200 OK code: 200 - duration: 167.776364ms + duration: 134.614539ms - id: 49 request: proto: HTTP/1.1 @@ -2460,7 +2080,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -2468,31 +2088,23 @@ 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-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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:31.047945+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1862" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1861" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:48 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 271cf6c4-98ba-4013-92bb-f27ecfd69396 + - 66b4f162-4534-4696-a9ce-992c3733b214 status: 200 OK code: 200 - duration: 173.999806ms + duration: 151.461566ms - id: 50 request: proto: HTTP/1.1 @@ -2509,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/ed235d1e-32e6-4ccf-86bd-2517060152bb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -2517,31 +2129,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1862 + content_length: 1907 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"}}' + body: '{"server": {"id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd", "name": "tf-srv-beautiful-allen", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-beautiful-allen", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "6abc06b0-2146-491f-9219-8e3c68fe3f66", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b7", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.810461+00:00", "modification_date": "2025-10-29T22:55:31.047945+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "201", "node_id": "4"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1862" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1907" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a5ab5a62-e35e-46a9-a144-dd8e681dfda4 + - e2b50d13-412b-459c-ad03-e4e0efd4eef4 status: 200 OK code: 200 - duration: 166.692779ms + duration: 132.099388ms - id: 51 request: proto: HTTP/1.1 @@ -2558,56 +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/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 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -2617,30 +2172,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:55:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dcd3a93e-0528-4858-9078-99d54f1fd7ad + - 29bb8039-08d3-42d6-b1d8-04f4f8807a2b status: 404 Not Found code: 404 - duration: 54.828175ms - - id: 53 + duration: 52.086458ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2656,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/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 method: GET response: proto: HTTP/2.0 @@ -2666,30 +2213,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "6abc06b0-2146-491f-9219-8e3c68fe3f66"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:55:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0cee87c7-7cfc-42a1-bcef-f57b933d4710 + - 4d9f5347-a39a-4f8f-beaf-4443d815512b status: 404 Not Found code: 404 - duration: 29.765935ms - - id: 54 + duration: 27.160243ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2705,7 +2244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 method: GET response: proto: HTTP/2.0 @@ -2715,30 +2254,22 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"6abc06b0-2146-491f-9219-8e3c68fe3f66", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.928285Z", "updated_at":"2025-10-29T22:55:43.483691Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:43.483691Z", "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:04:04 GMT + - Wed, 29 Oct 2025 22:55:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 220fc152-a971-4c7c-b536-0c5eb964ba2e + - 27a0fa8f-c681-457c-b114-fc229f80b187 status: 200 OK code: 200 - duration: 96.349426ms - - id: 55 + duration: 92.220883ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2754,7 +2285,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 method: DELETE response: proto: HTTP/2.0 @@ -2766,26 +2297,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9b2efd78-b31a-4c62-bc09-03dee9e2e555 + - c3964a96-6cc7-48b3-8fbd-c87b46016c68 status: 204 No Content code: 204 - duration: 180.619578ms - - id: 56 + duration: 148.115171ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2801,7 +2324,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd method: GET response: proto: HTTP/2.0 @@ -2811,26 +2334,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:04 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b770fae5-8bbc-4d76-8c5c-8456071b14e7 + - 8949787b-47e5-4a91-9d66-cdf9795e325b status: 404 Not Found code: 404 - duration: 48.041484ms + duration: 46.851968ms 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 c53c91a8c..0276e2a42 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 @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:55:12 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d3dbb43a-4cc8-48e9-b1a4-02bb2ab9d67b + - cbf3a5e9-caab-431f-a4ca-52a96dafe54b X-Total-Count: - "68" status: 200 OK code: 200 - duration: 34.64345ms + duration: 42.702675ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:55:12 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d990a666-f848-489c-a8de-fa52697f4650 + - 28940637-fd9c-40d2-8e87-781645024893 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 39.876596ms + duration: 41.786342ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -133,41 +129,33 @@ interactions: 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":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"id":"ec31d73d-ca36-4536-adf4-0feb76d30379", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_jammy", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 42991443-1338-46a9-bae3-333aaf068433 + - b842fb4e-229f-4110-8606-f4ef4e54d135 status: 200 OK code: 200 - duration: 55.57291ms + duration: 60.345247ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 280 + content_length: 277 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-vibrant-margulis","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,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2184 + content_length: 2221 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: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"}}' + body: '{"server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-vibrant-margulis", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2184" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2221" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:55:13 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 93d82061-3562-453e-aa8b-6eb1ca8e6043 + - 96ce1e97-ecb3-4ed3-b892-eaa91d14a44a status: 201 Created code: 201 - duration: 861.941507ms + duration: 784.894374ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2184 + content_length: 2221 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: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"}}' + body: '{"server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-vibrant-margulis", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2184" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2221" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1f35f615-3a27-47a3-bee1-184211e0b5a7 + - 255f83f2-1875-4994-b271-2050821dd31b status: 200 OK code: 200 - duration: 130.91082ms + duration: 117.0627ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b method: GET response: proto: HTTP/2.0 @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2184 + content_length: 2221 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: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"}}' + body: '{"server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-vibrant-margulis", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2184" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2221" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8565975e-8ed6-4064-b73c-6408cf2348bd + - c59fd6a9-2933-427f-8936-60cd1ff64a98 status: 200 OK code: 200 - duration: 146.784567ms + duration: 123.711024ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +289,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/a394742a-d4d8-4172-a84d-702023a121bd/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b/action method: POST response: proto: HTTP/2.0 @@ -335,31 +299,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "990f6a5b-895d-45b9-b94b-c58c9570af40", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/f625eab1-df5d-4545-82ec-6901b002323b/action", "href_result": "/servers/f625eab1-df5d-4545-82ec-6901b002323b", "started_at": "2025-10-29T22:55:13.906509+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:55:13 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6a20fa11-e86e-412e-bef4-a1975b3ca717 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/990f6a5b-895d-45b9-b94b-c58c9570af40 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d1ded273-35ec-4426-ba5d-3a460ec4cf46 + - 7bb14180-fa0b-4452-a3a4-ec843efa8409 status: 202 Accepted code: 202 - duration: 262.121342ms + duration: 257.276314ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b method: GET response: proto: HTTP/2.0 @@ -384,31 +340,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2206 + content_length: 2197 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":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"}}' + body: '{"server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-vibrant-margulis", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.727145+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2206" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2197" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5eeea1a8-57bf-4ab8-a61f-2b489974e615 + - 0f43a96c-a57a-4f3d-b466-c27c8cf6a8f0 status: 200 OK code: 200 - duration: 142.547226ms + duration: 125.347303ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2310 + content_length: 2301 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: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"}}' + body: '{"server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-vibrant-margulis", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.727145+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1101", "node_id": "47"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2301" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 03746614-23f4-41c6-aa6a-f3e6d95de562 + - 3736783b-6cb2-4a4f-9059-a8e0e0fab5d6 status: 200 OK code: 200 - duration: 144.341355ms + duration: 143.498198ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b method: GET response: proto: HTTP/2.0 @@ -482,31 +422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2310 + content_length: 2301 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: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"}}' + body: '{"server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-vibrant-margulis", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.727145+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1101", "node_id": "47"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2301" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 06a552a0-b5c0-4aea-8fa8-b7f793d56d07 + - f44877c5-0e68-4e16-b936-8cc3e8fa3be8 status: 200 OK code: 200 - duration: 112.203104ms + duration: 140.858935ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b method: GET response: proto: HTTP/2.0 @@ -531,31 +463,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2310 + content_length: 2301 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: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"}}' + body: '{"server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-vibrant-margulis", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.727145+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1101", "node_id": "47"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2301" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:21 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3cb52e11-4c12-47a1-98ac-54885594f1e9 + - 03e6daa5-9b23-4348-87c9-4d413d0a99db status: 200 OK code: 200 - duration: 117.63562ms + duration: 136.356315ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b method: GET response: proto: HTTP/2.0 @@ -580,31 +504,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + 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-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"}}' + body: '{"server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-vibrant-margulis", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:30.705456+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1101", "node_id": "47"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2378" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1c1258f9-5e52-4874-ba4c-f13100a037e2 + - 31a8c92d-0899-4311-b51f-de2d81518c70 status: 200 OK code: 200 - duration: 141.842584ms + duration: 122.290123ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b method: GET response: proto: HTTP/2.0 @@ -629,31 +545,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + content_length: 2332 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"}}' + body: '{"server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-vibrant-margulis", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:30.705456+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1101", "node_id": "47"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2332" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ed64887a-4ca9-48db-b2e4-361c5f8164d8 + - 010aa8f4-6be8-4e5c-af01-cf48ce7e5d80 status: 200 OK code: 200 - duration: 170.413159ms + duration: 155.337985ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fcdf807d-f73b-4961-845e-fefc8006d34f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/116f9ef3-5067-4e61-bc5b-f0767f6b5725 method: GET response: proto: HTTP/2.0 @@ -678,31 +586,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 527 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"}}' + body: '{"volume": {"id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "530" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "527" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3fb0fb40-99a8-4028-8951-3e385d5d7792 + - 793e5737-5be4-43f2-9bc3-f8e9c4d1a836 status: 200 OK code: 200 - duration: 108.894704ms + duration: 112.707192ms - id: 14 request: proto: HTTP/1.1 @@ -719,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/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b/user_data method: GET response: proto: HTTP/2.0 @@ -729,29 +629,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 603f6fce-fb9a-4d6b-b9be-1142044413d6 + - d13ac559-9d76-4f83-bdf4-0408bc3e66b3 status: 200 OK code: 200 - duration: 93.277496ms + duration: 90.138947ms - id: 15 request: proto: HTTP/1.1 @@ -768,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/servers/a394742a-d4d8-4172-a84d-702023a121bd/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b/private_nics method: GET response: proto: HTTP/2.0 @@ -778,33 +670,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:26 GMT + - Wed, 29 Oct 2025 22:55:35 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6b8554f7-9121-4a1b-afc5-af546622691b + - a89b7798-e9b4-4219-822a-a1fa9826724b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 92.087506ms + duration: 92.750842ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b/private_nics method: GET response: proto: HTTP/2.0 @@ -831,33 +715,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:26 GMT + - Wed, 29 Oct 2025 22:55:35 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f24e67b4-49ba-4029-8005-09a9bf3e1328 + - 61978827-5731-4809-abe5-ea4254257b59 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 87.996809ms + duration: 84.03343ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +750,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b method: GET response: proto: HTTP/2.0 @@ -882,31 +758,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + 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-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"}}' + body: '{"server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-vibrant-margulis", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:30.705456+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1101", "node_id": "47"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2378" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 43c3267c-55c9-4d7a-bc4c-b3a69b34e546 + - 87f1a7c9-81ca-4b41-bf09-92e1b84abe64 status: 200 OK code: 200 - duration: 121.138452ms + duration: 126.723214ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +791,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fcdf807d-f73b-4961-845e-fefc8006d34f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/116f9ef3-5067-4e61-bc5b-f0767f6b5725 method: GET response: proto: HTTP/2.0 @@ -931,31 +799,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 527 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"}}' + body: '{"volume": {"id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "530" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "527" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b0a58033-7c9b-4cbf-91b0-818db172e602 + - 135429c6-a063-4bfe-8a2d-c01f2ba17c20 status: 200 OK code: 200 - duration: 124.974131ms + duration: 88.817256ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b/user_data method: GET response: proto: HTTP/2.0 @@ -982,29 +842,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eaa65635-dcbf-40d1-8ab2-8647e4e4d846 + - f3a9223b-24d9-4985-83f4-fd2c18af2039 status: 200 OK code: 200 - duration: 108.114784ms + duration: 110.186197ms - id: 20 request: proto: HTTP/1.1 @@ -1021,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/a394742a-d4d8-4172-a84d-702023a121bd/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b/private_nics method: GET response: proto: HTTP/2.0 @@ -1031,33 +883,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 + - Wed, 29 Oct 2025 22:55:35 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0b103f47-b30b-42e6-9d59-8d2511fdd950 + - bb0c2c74-d5fc-4ac8-b758-8fa736b293a5 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 89.650298ms + duration: 115.132177ms - id: 21 request: proto: HTTP/1.1 @@ -1074,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/a394742a-d4d8-4172-a84d-702023a121bd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b method: GET response: proto: HTTP/2.0 @@ -1082,31 +926,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + content_length: 2332 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"}}' + body: '{"server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-vibrant-margulis", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:30.705456+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1101", "node_id": "47"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2332" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3afebee5-84ef-4de6-9869-43c0ecac94c3 + - 54957775-82b4-4700-aaf9-42a54073a882 status: 200 OK code: 200 - duration: 143.502326ms + duration: 127.043663ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +955,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1131,35 +969,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55:36 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 235257f3-a97e-4529-8fb6-f4d6df53483b + - 355adce2-12ac-4873-98bc-43392d289f7d X-Total-Count: - "68" status: 200 OK code: 200 - duration: 42.763155ms + duration: 70.578849ms - id: 23 request: proto: HTTP/1.1 @@ -1172,7 +1002,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1186,33 +1018,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:27 GMT + - Wed, 29 Oct 2025 22:55:36 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2d2e7df7-f324-4311-945d-e21f67b99ad3 + - 32fe0283-6735-4591-bc35-ae8881085602 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 48.370444ms + duration: 94.95279ms - id: 24 request: proto: HTTP/1.1 @@ -1229,7 +1053,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b method: GET response: proto: HTTP/2.0 @@ -1237,31 +1061,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + content_length: 2332 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"}}' + body: '{"server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-vibrant-margulis", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:30.705456+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1101", "node_id": "47"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2332" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 780c2da5-f9c3-4978-b429-176925a2b65a + - 340cbb0d-a7a8-44ea-8563-6bf306ab3b9f status: 200 OK code: 200 - duration: 122.084967ms + duration: 105.122748ms - id: 25 request: proto: HTTP/1.1 @@ -1278,7 +1094,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b method: GET response: proto: HTTP/2.0 @@ -1286,31 +1102,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + 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-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"}}' + body: '{"server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-vibrant-margulis", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:30.705456+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1101", "node_id": "47"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2378" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d160b66d-e2e2-4afe-b64c-3f7aaa339004 + - 62c0a49b-ed5e-47fe-a990-fe24d5dc1bef status: 200 OK code: 200 - duration: 143.379657ms + duration: 147.031451ms - id: 26 request: proto: HTTP/1.1 @@ -1329,7 +1137,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/a394742a-d4d8-4172-a84d-702023a121bd/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b/action method: POST response: proto: HTTP/2.0 @@ -1339,31 +1147,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "0428b7cc-61a2-48b3-a4b5-ae7d41fcee17", "description": "server_terminate", "status": "pending", "href_from": "/servers/f625eab1-df5d-4545-82ec-6901b002323b/action", "href_result": "/servers/f625eab1-df5d-4545-82ec-6901b002323b", "started_at": "2025-10-29T22:55:37.324334+00:00", "terminated_at": null, "progress": 0, "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:28 GMT + - Wed, 29 Oct 2025 22:55:37 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/10bb0ebe-71b4-497d-bc05-9ae60e1f4d56 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0428b7cc-61a2-48b3-a4b5-ae7d41fcee17 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5cc04f54-33d0-4352-8fd3-f0b64225f6c8 + - 45baa30d-f183-4745-b70c-efe24b994684 status: 202 Accepted code: 202 - duration: 296.253188ms + duration: 479.455304ms - id: 27 request: proto: HTTP/1.1 @@ -1380,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/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b method: GET response: proto: HTTP/2.0 @@ -1388,31 +1188,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2304 + content_length: 2341 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"}}' + body: '{"server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis", "arch": "x86_64", "commercial_type": "DEV1-L", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-vibrant-margulis", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "f625eab1-df5d-4545-82ec-6901b002323b", "name": "tf-srv-vibrant-margulis"}, "size": 80000000000, "state": "available", "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:13.272655+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:13.272655+00:00", "modification_date": "2025-10-29T22:55:36.904551+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1101", "node_id": "47"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2341" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a80a4ff1-8948-44d9-8a37-2e66067bb78e + - 26bbbf13-5959-42f4-81e8-52b5e05f7640 status: 200 OK code: 200 - duration: 122.659455ms + duration: 124.112712ms - id: 28 request: proto: HTTP/1.1 @@ -1429,105 +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/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 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b method: GET response: proto: HTTP/2.0 @@ -1537,30 +1231,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a394742a-d4d8-4172-a84d-702023a121bd","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "f625eab1-df5d-4545-82ec-6901b002323b"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b6f5c198-129a-45a5-812e-b91b00423f4b + - d7966de6-ea6f-4cef-ad0f-e9d49e2f2d43 status: 404 Not Found code: 404 - duration: 53.435535ms - - id: 31 + duration: 45.095453ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1576,7 +1262,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fcdf807d-f73b-4961-845e-fefc8006d34f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/116f9ef3-5067-4e61-bc5b-f0767f6b5725 method: GET response: proto: HTTP/2.0 @@ -1586,30 +1272,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fcdf807d-f73b-4961-845e-fefc8006d34f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "116f9ef3-5067-4e61-bc5b-f0767f6b5725"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f90e644d-7f10-4f44-b186-f541bcc0a88b + - f963ac53-dcd9-4ac6-ac12-58d2ae7eb2af status: 404 Not Found code: 404 - duration: 30.381674ms - - id: 32 + duration: 24.545423ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1625,7 +1303,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fcdf807d-f73b-4961-845e-fefc8006d34f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/116f9ef3-5067-4e61-bc5b-f0767f6b5725 method: GET response: proto: HTTP/2.0 @@ -1635,30 +1313,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"fcdf807d-f73b-4961-845e-fefc8006d34f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"116f9ef3-5067-4e61-bc5b-f0767f6b5725","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:03:44 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7e9c792b-8167-4126-957a-5dc599ef7f87 + - 1f1ecb3b-847a-42b5-b240-2f9e4911f285 status: 404 Not Found code: 404 - duration: 20.10888ms - - id: 33 + duration: 19.489427ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1674,7 +1344,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b method: GET response: proto: HTTP/2.0 @@ -1684,26 +1354,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a394742a-d4d8-4172-a84d-702023a121bd","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "f625eab1-df5d-4545-82ec-6901b002323b"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5a2c5d30-648d-43b5-b456-da6289b10487 + - 93579a9f-fa64-40e2-b56c-bfb3edffc34b status: 404 Not Found code: 404 - duration: 48.913008ms + duration: 51.678494ms diff --git a/internal/services/instance/testdata/server-migrate.cassette.yaml b/internal/services/instance/testdata/server-migrate.cassette.yaml index be053510e..c637ba026 100644 --- a/internal/services/instance/testdata/server-migrate.cassette.yaml +++ b/internal/services/instance/testdata/server-migrate.cassette.yaml @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:55:18 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a52516d7-fe3b-4acb-abd1-2ac1e40239d1 + - 0e973a5d-6e41-4fc6-9128-a7dc09502039 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 35.704448ms + duration: 54.346841ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:55:18 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ad94e6f7-e76a-4d0c-b57a-13e25c0f52ae + - 704be146-2722-4442-9643-5b28749446f7 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 40.313835ms + duration: 52.643416ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,43 +127,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45b014ee-c726-44a3-98fd-5ca15ed988fd + - 4807828e-3c9a-4008-bd0c-4404e385fab4 status: 200 OK code: 200 - duration: 48.713927ms + duration: 52.208973ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 242 + content_length: 233 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-angry-rubin","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,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1756 + content_length: 1784 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: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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:18.836794+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1756" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1784" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55:19 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9c9faf03-992b-4847-a2ce-4784c1d390d1 + - 2971eb54-9edf-4ec8-96cb-af6b4a248369 status: 201 Created code: 201 - duration: 2.678185328s + duration: 1.431416469s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1756 + content_length: 1784 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: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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:18.836794+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1756" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1784" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9be51cad-ebaf-4aa1-9208-3a6fa0457063 + - 8394dce0-7a3e-451a-ae61-4dff5dd59423 status: 200 OK code: 200 - duration: 138.749261ms + duration: 148.443576ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1756 + content_length: 1784 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: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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:18.836794+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1756" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1784" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6e59676e-f774-4db1-b789-9a694e1a1431 + - a2e789df-9218-45d2-9190-ab02214d96aa status: 200 OK code: 200 - duration: 165.542632ms + duration: 145.337417ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -333,29 +297,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.969131Z", "updated_at":"2025-10-29T22:55:18.969131Z", "references":[{"id":"3418d756-adb5-470a-a9c1-173286defa7d", "product_resource_type":"instance_server", "product_resource_id":"3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "created_at":"2025-10-29T22:55:18.969131Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ecc53b4d-979e-4a2b-9f0e-7a09a9f64ecf + - 22ba5a74-4d15-4e64-a633-5503d32cbd4e status: 200 OK code: 200 - duration: 1.31377485s + duration: 94.604064ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +330,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/703abb35-966f-46cf-ad17-6665000c9e42/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/action method: POST response: proto: HTTP/2.0 @@ -384,31 +340,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "cc15b98c-b379-4a00-9f19-5ce663dd78a3", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/action", "href_result": "/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "started_at": "2025-10-29T22:55:20.211214+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:55:20 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/aab4edd0-2083-4501-a194-eaf105197f83 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cc15b98c-b379-4a00-9f19-5ce663dd78a3 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 06c33f06-c0e2-44e9-bf59-3b65861e2738 + - dba876f1-b37f-4f2d-985a-3ae242578db6 status: 202 Accepted code: 202 - duration: 229.02103ms + duration: 221.557492ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1778 + content_length: 1760 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:20.041355+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1778" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1760" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 10372b55-6537-4ec2-a503-d639c78b0f90 + - 045c9bb6-4330-4ed0-9ed7-82621eaf375a status: 200 OK code: 200 - duration: 172.434509ms + duration: 147.432566ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -482,31 +422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + content_length: 1894 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":"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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:22.586669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1894" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b43fa98d-9338-4f5d-b99a-fcd5210a5ef3 + - 714eb398-0371-48d5-9e8d-f510a8a4bfab status: 200 OK code: 200 - duration: 157.703321ms + duration: 130.029803ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -531,31 +463,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + content_length: 1940 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":"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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:22.586669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c3aacddb-a699-409d-a632-04ead971fcbe + - 99052c5a-d9bb-405b-ada7-70dcbb84d9a2 status: 200 OK code: 200 - duration: 154.056477ms + duration: 147.216123ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -582,29 +506,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8af59901-d049-4403-ba46-a95a6fb81679 + - 7b1ecb05-e97a-4e28-bc3b-68bc96cbf3a6 status: 404 Not Found code: 404 - duration: 27.152175ms + duration: 25.175079ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -631,29 +547,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.969131Z", "updated_at":"2025-10-29T22:55:18.969131Z", "references":[{"id":"3418d756-adb5-470a-a9c1-173286defa7d", "product_resource_type":"instance_server", "product_resource_id":"3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "created_at":"2025-10-29T22:55:18.969131Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 373caeb5-d91e-4973-850c-e18571c0b9c4 + - a72ee8ce-1935-4f5b-aa98-e7845b9226c8 status: 200 OK code: 200 - duration: 92.333957ms + duration: 74.492044ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/user_data method: GET response: proto: HTTP/2.0 @@ -680,29 +588,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 564f8aa1-6236-42ca-abb4-ae9bc5adf722 + - f3d8872d-2f70-4187-bfdc-856a799dc1a2 status: 200 OK code: 200 - duration: 105.834898ms + duration: 93.540316ms - id: 14 request: proto: HTTP/1.1 @@ -719,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/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/private_nics method: GET response: proto: HTTP/2.0 @@ -729,33 +629,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:14 GMT + - Wed, 29 Oct 2025 22:55:25 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a705b19a-2dca-40ad-bb37-e5ccc996490b + - 43c0eeb5-e373-4b4f-828b-a0ab58f9b299 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 111.506919ms + duration: 96.22147ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/private_nics method: GET response: proto: HTTP/2.0 @@ -782,33 +674,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:14 GMT + - Wed, 29 Oct 2025 22:55:26 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9c85bc7-e4a9-43ad-9a75-1f3f328b5072 + - 3b4b376d-b311-433c-bc36-1a53e289c00d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 88.262898ms + duration: 103.690717ms - id: 16 request: proto: HTTP/1.1 @@ -825,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/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -833,31 +717,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + content_length: 1894 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":"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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:22.586669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1894" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8f65d600-a02c-45ab-8dfb-f93c36c643eb + - 6b2075a0-5e23-48b7-ae17-3d4a2aca54fd status: 200 OK code: 200 - duration: 176.916308ms + duration: 149.013735ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +750,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -884,29 +760,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7ff705b9-9de9-43a0-9e9b-3037c164b580 + - dfc2e112-bcf2-450a-934d-e456e8927a52 status: 404 Not Found code: 404 - duration: 25.662743ms + duration: 33.353793ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +791,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -933,29 +801,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.969131Z", "updated_at":"2025-10-29T22:55:18.969131Z", "references":[{"id":"3418d756-adb5-470a-a9c1-173286defa7d", "product_resource_type":"instance_server", "product_resource_id":"3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "created_at":"2025-10-29T22:55:18.969131Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a243d7d4-2e55-472f-a2a8-cd887ef20ed2 + - b057b908-61d9-4489-9765-023f7e991ecd status: 200 OK code: 200 - duration: 89.380753ms + duration: 97.05023ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/user_data method: GET response: proto: HTTP/2.0 @@ -982,29 +842,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b5d9207c-130f-453d-80c8-a1de60296e98 + - 1f247bcd-1b51-4130-9e68-3820fb2dbf1a status: 200 OK code: 200 - duration: 105.554825ms + duration: 97.919796ms - id: 20 request: proto: HTTP/1.1 @@ -1021,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/703abb35-966f-46cf-ad17-6665000c9e42/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/private_nics method: GET response: proto: HTTP/2.0 @@ -1031,33 +883,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:15 GMT + - Wed, 29 Oct 2025 22:55:26 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9d476bd1-b81d-4d88-8ee7-144eee295da9 + - 71217b04-8362-45b9-bf55-5f5156571d61 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 120.030332ms + duration: 95.670139ms - id: 21 request: proto: HTTP/1.1 @@ -1074,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/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -1082,31 +926,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + content_length: 1894 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":"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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:22.586669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1894" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3dedd920-4184-4409-b757-ede3ce4a0f61 + - 0e7c848c-9478-474e-8a4f-e0056e62bb91 status: 200 OK code: 200 - duration: 150.978982ms + duration: 130.748468ms - id: 22 request: proto: HTTP/1.1 @@ -1123,7 +959,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -1133,29 +969,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 493a3137-c9e1-4369-a18f-d67e23fa1819 + - 44d5e299-d98f-498b-ad26-d55a316b4de1 status: 404 Not Found code: 404 - duration: 25.150363ms + duration: 23.663903ms - id: 23 request: proto: HTTP/1.1 @@ -1172,7 +1000,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -1182,29 +1010,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.969131Z", "updated_at":"2025-10-29T22:55:18.969131Z", "references":[{"id":"3418d756-adb5-470a-a9c1-173286defa7d", "product_resource_type":"instance_server", "product_resource_id":"3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "created_at":"2025-10-29T22:55:18.969131Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 81514dc3-ff31-467e-bfee-6502206eb809 + - 2d7237d7-c357-48fe-89ca-d1b236a02851 status: 200 OK code: 200 - duration: 83.202115ms + duration: 84.859873ms - id: 24 request: proto: HTTP/1.1 @@ -1221,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/703abb35-966f-46cf-ad17-6665000c9e42/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/user_data method: GET response: proto: HTTP/2.0 @@ -1231,29 +1051,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e5d90f21-5a7e-4f5b-bfd7-2c9f4b21c2a0 + - dcc3f529-36bf-4cad-8465-8d20706bfb76 status: 200 OK code: 200 - duration: 96.220923ms + duration: 79.04009ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1082,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/private_nics method: GET response: proto: HTTP/2.0 @@ -1280,33 +1092,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:15 GMT + - Wed, 29 Oct 2025 22:55:27 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 44990fb9-6d1f-4de3-a7a3-d2c72c73c3b3 + - 348093fe-c11a-4fca-b57b-332cbaad448e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 102.573738ms + duration: 111.405716ms - id: 26 request: proto: HTTP/1.1 @@ -1323,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/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -1331,31 +1135,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + content_length: 1894 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":"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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:22.586669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1894" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4ca7bb90-5b96-468d-a073-f5eea04b94ba + - f7bfbdc1-2fb7-4b4c-8a37-cbc310013d1c status: 200 OK code: 200 - duration: 161.915488ms + duration: 125.484765ms - id: 27 request: proto: HTTP/1.1 @@ -1368,7 +1164,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1380,35 +1178,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:55:27 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 665ec3cc-ea52-490c-b4de-237beed1e592 + - 09fb57bb-01ae-4bf3-9f2c-ad5e722af44e X-Total-Count: - "68" status: 200 OK code: 200 - duration: 133.340998ms + duration: 51.098407ms - id: 28 request: proto: HTTP/1.1 @@ -1421,7 +1211,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1435,33 +1227,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:55:27 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 49089980-ddb4-4f67-83de-75fb03670c0e + - 053d00ce-231e-43d5-bd0c-2d5e2860ac93 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 42.665468ms + duration: 47.111501ms - id: 29 request: proto: HTTP/1.1 @@ -1478,7 +1262,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -1486,31 +1270,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + content_length: 1894 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":"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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:22.586669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1894" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5df1e7db-53ee-4620-98b7-266cef63456a + - 2643b76a-0df7-45de-8652-e32bb2dff15b status: 200 OK code: 200 - duration: 137.132244ms + duration: 172.324308ms - id: 30 request: proto: HTTP/1.1 @@ -1523,7 +1299,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1535,35 +1313,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:55:28 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b6ac2f85-70ce-48ff-910d-245e457bfd36 + - 91591337-6657-437a-b60a-8ae3921cf40f X-Total-Count: - "68" status: 200 OK code: 200 - duration: 154.188818ms + duration: 45.813594ms - id: 31 request: proto: HTTP/1.1 @@ -1576,7 +1346,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1590,33 +1362,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:55:28 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 83876779-06d0-426e-a4d0-cf1f163b7f5b + - c4724145-4105-4160-98ad-0014194d4240 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 47.342573ms + duration: 42.338366ms - id: 32 request: proto: HTTP/1.1 @@ -1633,7 +1397,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -1641,31 +1405,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + content_length: 1940 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":"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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:22.586669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a327a078-f054-49d0-b3f9-d157fd6692ff + - beef515e-0987-474f-883e-7b9fabe132e0 status: 200 OK code: 200 - duration: 139.626808ms + duration: 142.955697ms - id: 33 request: proto: HTTP/1.1 @@ -1682,7 +1438,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -1690,31 +1446,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + content_length: 1940 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":"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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:22.586669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 99ca8ddc-9af4-45d0-adfb-a408bf0ba4f1 + - 843e3938-dd67-4ca0-84f0-787f69156c63 status: 200 OK code: 200 - duration: 134.346944ms + duration: 127.589361ms - id: 34 request: proto: HTTP/1.1 @@ -1731,7 +1479,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -1739,31 +1487,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + content_length: 1894 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":"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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:22.586669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1894" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 032a7af1-3fb6-46f5-807c-b91020982398 + - 0be2f223-16aa-496d-863f-f383b451dd17 status: 200 OK code: 200 - duration: 145.79526ms + duration: 144.226363ms - id: 35 request: proto: HTTP/1.1 @@ -1780,7 +1520,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -1788,31 +1528,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + content_length: 1894 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":"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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:22.586669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1894" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c18d9def-b92e-4c1f-96bb-95945e79ff12 + - 08405f75-5b5f-4b70-be40-ec12630ac0ba status: 200 OK code: 200 - duration: 168.945975ms + duration: 137.823559ms - id: 36 request: proto: HTTP/1.1 @@ -1829,7 +1561,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -1839,29 +1571,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.969131Z", "updated_at":"2025-10-29T22:55:18.969131Z", "references":[{"id":"3418d756-adb5-470a-a9c1-173286defa7d", "product_resource_type":"instance_server", "product_resource_id":"3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "created_at":"2025-10-29T22:55:18.969131Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:17 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 09d95289-9e6c-4448-8cc8-215bf27c464d + - 82306d32-5a20-47d8-b45c-5b90014a4b61 status: 200 OK code: 200 - duration: 79.694502ms + duration: 78.002119ms - id: 37 request: proto: HTTP/1.1 @@ -1880,7 +1604,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/703abb35-966f-46cf-ad17-6665000c9e42/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/action method: POST response: proto: HTTP/2.0 @@ -1890,31 +1614,23 @@ interactions: trailer: {} content_length: 352 uncompressed: false - 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"}}' + body: '{"task": {"id": "9557f74b-2ba4-49be-aac5-1179e435efe9", "description": "server_poweroff", "status": "pending", "href_from": "/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/action", "href_result": "/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "started_at": "2025-10-29T22:55:28.963148+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:55:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1113d751-8b07-4e61-bee8-253cc76af5d8 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9557f74b-2ba4-49be-aac5-1179e435efe9 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5662dc70-6d07-4615-93db-622da80d1342 + - 3716da2e-bb32-402d-b86c-9cf3577654a8 status: 202 Accepted code: 202 - duration: 266.258977ms + duration: 229.889789ms - id: 38 request: proto: HTTP/1.1 @@ -1931,7 +1647,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -1939,31 +1655,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1872 + content_length: 1900 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:28.791460+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1872" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1900" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7a02d59f-af4f-4ce9-9dcf-a176f7f444ff + - 3197c6d5-8d48-4d79-9cf9-20700ccf2d85 status: 200 OK code: 200 - duration: 140.126846ms + duration: 139.895716ms - id: 39 request: proto: HTTP/1.1 @@ -1980,7 +1688,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -1988,31 +1696,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1872 + content_length: 1854 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:28.791460+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1872" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1854" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:22 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fcef3821-b4fd-4cb4-879e-12b915fe8662 + - 95da3e59-a571-4d23-9612-d23a5392b530 status: 200 OK code: 200 - duration: 113.495523ms + duration: 152.894966ms - id: 40 request: proto: HTTP/1.1 @@ -2029,7 +1729,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -2037,31 +1737,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1872 + content_length: 1854 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:28.791460+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1872" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1854" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6acf582b-dcc6-4e63-bd95-1d69b4f060b2 + - 2c979fd6-73da-4b14-8cb2-c8de62c53c87 status: 200 OK code: 200 - duration: 226.634169ms + duration: 128.520075ms - id: 41 request: proto: HTTP/1.1 @@ -2078,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/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -2086,31 +1778,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1872 + content_length: 1854 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:28.791460+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1872" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1854" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 57ede5f8-99b7-44af-b267-65d5248df44e + - 293ef2b4-a7ba-4338-b06b-6a7ce9068b91 status: 200 OK code: 200 - duration: 196.420734ms + duration: 142.394523ms - id: 42 request: proto: HTTP/1.1 @@ -2127,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/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -2135,31 +1819,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1872 + content_length: 1900 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:28.791460+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1872" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1900" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:38 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e0a1e810-0f35-4115-9389-377554c5403f + - b32e6f1a-8eda-4608-bd00-3e59d029e9a1 status: 200 OK code: 200 - duration: 145.903301ms + duration: 146.69066ms - id: 43 request: proto: HTTP/1.1 @@ -2176,7 +1852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -2184,31 +1860,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1872 + content_length: 1854 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:28.791460+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1872" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1854" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ca6e9205-b624-4926-a3cf-76f01a9ab466 + - 14b0af6b-394c-4b44-befc-0b8882d04b63 status: 200 OK code: 200 - duration: 143.247008ms + duration: 141.496827ms - id: 44 request: proto: HTTP/1.1 @@ -2225,7 +1893,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -2233,31 +1901,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1872 + content_length: 1900 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:28.791460+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1872" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1900" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:48 GMT + - Wed, 29 Oct 2025 22:56:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0631deca-85c8-4c6b-8d1c-4b3d0d2832ee + - 82ab767d-9192-463d-a45e-e3e0ee25bc89 status: 200 OK code: 200 - duration: 190.022117ms + duration: 150.66828ms - id: 45 request: proto: HTTP/1.1 @@ -2274,7 +1934,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -2282,32 +1942,106 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1756 + content_length: 1854 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: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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:28.791460+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1756" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1854" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:56:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - def4c2e8-0c5d-4648-8042-2512677571da + - 9b119464-6b17-45fd-a3ea-9a573da8d1fd status: 200 OK code: 200 - duration: 166.261449ms + duration: 150.616426ms - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1900 + uncompressed: false + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:55:28.791460+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "58", "hypervisor_id": "501", "node_id": "23"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1900" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - f33df9ee-ab9e-473c-bfc4-f99539c31a7e + status: 200 OK + code: 200 + duration: 145.182696ms + - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1738 + uncompressed: false + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:11.911286+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "1738" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 9a850018-86db-4ede-8c28-764c97c8355f + status: 200 OK + code: 200 + duration: 152.116826ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2325,7 +2059,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/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: PATCH response: proto: HTTP/2.0 @@ -2333,32 +2067,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1755 + content_length: 1737 uncompressed: false - 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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:15.531605+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1755" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1737" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a4efe132-bcfe-47b1-a85a-f3d3c58234e4 + - fc4bf257-6329-477d-ad97-65305be4e2d6 status: 200 OK code: 200 - duration: 273.929854ms - - id: 47 + duration: 415.0087ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2374,7 +2100,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -2382,32 +2108,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1755 + content_length: 1783 uncompressed: false - 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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:15.531605+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1755" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1783" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d02047b7-e53b-4489-ad86-aec9c48a768c + - 87bc1012-da59-476b-a8e6-c29129cf4fbc status: 200 OK code: 200 - duration: 144.139575ms - - id: 48 + duration: 149.112107ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2423,7 +2141,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -2433,30 +2151,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.969131Z", "updated_at":"2025-10-29T22:55:18.969131Z", "references":[{"id":"3418d756-adb5-470a-a9c1-173286defa7d", "product_resource_type":"instance_server", "product_resource_id":"3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "created_at":"2025-10-29T22:55:18.969131Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:54 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 68c4bee1-75c6-48e9-bd51-85ec72b37160 + - c981189b-5d48-43da-abe0-88d8e72b9cca status: 200 OK code: 200 - duration: 91.534312ms - - id: 49 + duration: 97.558953ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2474,7 +2184,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/703abb35-966f-46cf-ad17-6665000c9e42/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/action method: POST response: proto: HTTP/2.0 @@ -2484,32 +2194,24 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "68dd1f1c-1a3f-4cae-a92e-8991749686b4", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/action", "href_result": "/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "started_at": "2025-10-29T22:56:16.355713+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:56:16 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/772a1dfd-8d86-4f04-b979-23e351113382 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/68dd1f1c-1a3f-4cae-a92e-8991749686b4 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3af7e64b-a66d-44f3-bcb5-d31fbcf087c6 + - 2c368246-6a2c-444f-bd73-3adc75605542 status: 202 Accepted code: 202 - duration: 235.970843ms - - id: 50 + duration: 263.447524ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2525,7 +2227,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -2533,32 +2235,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1777 + content_length: 1805 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:16.145023+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1777" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1805" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 61b1fe9e-c8a6-47de-b478-be9837798b03 + - 7b3408c7-aa4c-4b3c-87a4-86e022dccf15 status: 200 OK code: 200 - duration: 171.382238ms - - id: 51 + duration: 140.29689ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2574,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/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -2582,32 +2276,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1893 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:18.334374+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1910" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1893" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 76a7be9c-f033-46a6-ad2f-102cb36fd39b + - a798d555-75d5-4016-a734-b8008c60407e status: 200 OK code: 200 - duration: 169.556395ms - - id: 52 + duration: 173.572191ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2623,7 +2309,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -2631,32 +2317,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1893 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:18.334374+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1910" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1893" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a8af0f5c-8f74-4657-9c8b-ba8b7b0eac41 + - 88a748b0-4a98-4c54-abb0-3c09fbc68e9a status: 200 OK code: 200 - duration: 150.53501ms - - id: 53 + duration: 164.260941ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2672,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/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -2682,30 +2360,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 94c1504e-a31c-4a30-841a-69d42d714a7d + - 2e356daf-dfe2-45ad-b54d-00537b2a4d90 status: 404 Not Found code: 404 - duration: 21.191072ms - - id: 54 + duration: 31.282315ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2721,7 +2391,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -2731,30 +2401,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.969131Z", "updated_at":"2025-10-29T22:55:18.969131Z", "references":[{"id":"3418d756-adb5-470a-a9c1-173286defa7d", "product_resource_type":"instance_server", "product_resource_id":"3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "created_at":"2025-10-29T22:55:18.969131Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:00 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f3cc3847-ec44-4e6c-a07b-20e7ce18695e + - 845f22e3-0235-4562-b8bd-5ce6423177c7 status: 200 OK code: 200 - duration: 103.1664ms - - id: 55 + duration: 95.971365ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2770,7 +2432,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/user_data method: GET response: proto: HTTP/2.0 @@ -2780,30 +2442,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:00 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0853a765-9d49-4301-9625-2b1a5a37b41b + - e37502a6-2877-45c5-9bc8-bc2cbf222ab3 status: 200 OK code: 200 - duration: 147.673066ms - - id: 56 + duration: 88.917233ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2819,7 +2473,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/private_nics method: GET response: proto: HTTP/2.0 @@ -2829,34 +2483,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:00 GMT + - Wed, 29 Oct 2025 22:56:22 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9015227d-0abd-474a-98f9-ef60678feda4 + - d61d72b3-2e1d-429b-8b92-8bf1dc57ca70 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 89.815835ms - - id: 57 + duration: 105.323967ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2872,7 +2518,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/private_nics method: GET response: proto: HTTP/2.0 @@ -2882,34 +2528,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:00 GMT + - Wed, 29 Oct 2025 22:56:22 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d7ade191-dafb-4af9-99f0-8ae38adf270e + - c8c7094a-edde-4c5e-a427-77364966e9b6 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 97.724109ms - - id: 58 + duration: 99.841934ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2925,7 +2563,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -2933,32 +2571,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1939 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:18.334374+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1910" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1939" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4f1346ad-b310-426c-a236-53106a42aa6e + - ab9e9514-709a-4d12-b0fc-d7c3c43081f3 status: 200 OK code: 200 - duration: 153.347453ms - - id: 59 + duration: 139.914587ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2974,7 +2604,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -2984,30 +2614,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - af1fa623-0198-4fe9-abbc-9251b69c965e + - 6c2eea78-1271-41af-aac2-387c5fb9361a status: 404 Not Found code: 404 - duration: 28.782231ms - - id: 60 + duration: 26.354397ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3023,7 +2645,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -3033,30 +2655,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.969131Z", "updated_at":"2025-10-29T22:55:18.969131Z", "references":[{"id":"3418d756-adb5-470a-a9c1-173286defa7d", "product_resource_type":"instance_server", "product_resource_id":"3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "created_at":"2025-10-29T22:55:18.969131Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:01 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 071eeb53-8c23-438d-a32b-276a92b8a119 + - 2486c123-34ff-42a5-9a74-9b7733b2d05e status: 200 OK code: 200 - duration: 88.149362ms - - id: 61 + duration: 73.379714ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3072,7 +2686,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/user_data method: GET response: proto: HTTP/2.0 @@ -3082,30 +2696,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:01 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3fb839bb-e341-4037-8a11-dacad51fb086 + - e2e6fcfc-e6a3-4fd4-a676-7cd08bb4f3ad status: 200 OK code: 200 - duration: 115.993785ms - - id: 62 + duration: 98.688276ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3121,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/703abb35-966f-46cf-ad17-6665000c9e42/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/private_nics method: GET response: proto: HTTP/2.0 @@ -3131,34 +2737,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:01 GMT + - Wed, 29 Oct 2025 22:56:23 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 50c3a55c-8717-4f53-a7d2-9c31ab1b30e7 + - 9be64e43-9496-4d9e-a290-060a06c5a4b5 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.856987ms - - id: 63 + duration: 116.808253ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3174,7 +2772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -3182,32 +2780,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1939 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:18.334374+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1910" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1939" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fe39904a-bd64-48fa-b53d-bef6095d2fd0 + - 93271da4-0d8a-45d2-bbf8-2f55ec7da677 status: 200 OK code: 200 - duration: 183.008752ms - - id: 64 + duration: 155.101109ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3223,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/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -3233,30 +2823,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:01 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 56754e6e-c1bc-44d8-ae5a-3b4a3007e306 + - 0aa1fe74-b429-4dc0-9f6e-3e85012d6cd4 status: 404 Not Found code: 404 - duration: 28.373906ms - - id: 65 + duration: 49.608908ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3272,7 +2854,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -3282,30 +2864,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.969131Z", "updated_at":"2025-10-29T22:55:18.969131Z", "references":[{"id":"3418d756-adb5-470a-a9c1-173286defa7d", "product_resource_type":"instance_server", "product_resource_id":"3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "created_at":"2025-10-29T22:55:18.969131Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:01 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2fd21e6c-031c-410b-81fd-2f5cb3029d2b + - b00b61ef-be2d-4e47-b5f4-12e060051e51 status: 200 OK code: 200 - duration: 100.0558ms - - id: 66 + duration: 122.465564ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3321,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/703abb35-966f-46cf-ad17-6665000c9e42/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/user_data method: GET response: proto: HTTP/2.0 @@ -3331,30 +2905,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:01 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a5e24e14-6a71-47ab-92e1-2eb4033e45e6 + - 8b5f4e75-6eb9-4588-ac26-a00079895fae status: 200 OK code: 200 - duration: 112.069631ms - - id: 67 + duration: 97.477901ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3370,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/703abb35-966f-46cf-ad17-6665000c9e42/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/private_nics method: GET response: proto: HTTP/2.0 @@ -3380,34 +2946,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:02 GMT + - Wed, 29 Oct 2025 22:56:23 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a8e0e01c-850b-4a7f-8155-1a487858ad6b + - 6c90a76d-9b5d-4d60-84b8-9a981dd8bb52 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 93.94137ms - - id: 68 + duration: 98.537537ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3423,7 +2981,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -3431,32 +2989,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1939 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:18.334374+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1910" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1939" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 65c7aa37-5a9a-477c-b78a-a7dbbd12c9f2 + - 8d956511-05ae-4366-b200-a4e69d5d41ac status: 200 OK code: 200 - duration: 152.398897ms - - id: 69 + duration: 145.635246ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3468,7 +3018,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -3480,36 +3032,28 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:56:24 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 96e485d5-daa3-4070-900f-94f6765b84cc + - fa0c537b-1425-4203-9800-fa7df3c6c5ef X-Total-Count: - "68" status: 200 OK code: 200 - duration: 37.388644ms - - id: 70 + duration: 37.174814ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3521,7 +3065,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -3535,34 +3081,26 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:56:24 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d5db6f1b-363a-4d35-bc73-c951aa0b50c9 + - 1da905e0-4497-49da-b2a3-0b5109cdf1eb X-Total-Count: - "68" status: 200 OK code: 200 - duration: 47.267151ms - - id: 71 + duration: 56.750514ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3578,7 +3116,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -3586,32 +3124,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1893 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:18.334374+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1910" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1893" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 346f499b-38e5-44e0-9251-c85b7559a52c + - 8574e211-e62d-4652-a4b3-b1002ad8a923 status: 200 OK code: 200 - duration: 136.528829ms - - id: 72 + duration: 149.631802ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3623,7 +3153,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -3635,36 +3167,28 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:56:24 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e743ce19-0037-434f-9ed3-670084c0a4e3 + - 959a8093-554f-4621-97c5-ef163635aa26 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 56.022272ms - - id: 73 + duration: 48.783344ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3676,7 +3200,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -3690,34 +3216,26 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22:56:24 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0fcabbfd-8d42-4add-bf0f-30df5d9dacf8 + - 5939f847-897b-4ea2-8913-8254252a2fc0 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 69.682728ms - - id: 74 + duration: 54.573482ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3733,7 +3251,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -3741,32 +3259,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1893 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:18.334374+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1910" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1893" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:02 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2c67bd16-ed03-4b04-b5ba-326830b42a9a + - 732f082d-744f-4f00-b208-c82517806159 status: 200 OK code: 200 - duration: 157.122912ms - - id: 75 + duration: 156.333376ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3782,7 +3292,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -3790,32 +3300,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1939 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:18.334374+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1910" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1939" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 201fe863-dc72-4799-b4a0-277eb3afbbda + - bef8e438-881f-4619-a335-b1b6d4bc4257 status: 200 OK code: 200 - duration: 163.140782ms - - id: 76 + duration: 149.248944ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -3831,7 +3333,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -3839,32 +3341,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1939 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:18.334374+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1910" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1939" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8f6c4c93-7f22-43bd-bcf7-fc5195d6c506 + - 8d77a5ad-c053-4f29-bdce-35dac894c63f status: 200 OK code: 200 - duration: 150.84749ms - - id: 77 + duration: 151.262492ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3880,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/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -3888,32 +3382,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1939 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:18.334374+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1910" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1939" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2e8bff11-ff34-4a6c-95c7-d36d296209dd + - 5d80f091-87e0-41ce-9675-627bfa131fa9 status: 200 OK code: 200 - duration: 127.142977ms - - id: 78 + duration: 162.67275ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -3929,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/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -3939,30 +3425,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.969131Z", "updated_at":"2025-10-29T22:55:18.969131Z", "references":[{"id":"3418d756-adb5-470a-a9c1-173286defa7d", "product_resource_type":"instance_server", "product_resource_id":"3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "created_at":"2025-10-29T22:55:18.969131Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:03 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4623d589-41e1-472f-903f-fd933457431c + - 16da825c-36ee-42c1-8284-14c5f6ee5be3 status: 200 OK code: 200 - duration: 92.931318ms - - id: 79 + duration: 88.03891ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -3980,7 +3458,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/703abb35-966f-46cf-ad17-6665000c9e42/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/action method: POST response: proto: HTTP/2.0 @@ -3990,32 +3468,24 @@ interactions: trailer: {} content_length: 352 uncompressed: false - 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"}}' + body: '{"task": {"id": "b3bbf865-5d8e-4f0a-b245-2f3199eb8246", "description": "server_poweroff", "status": "pending", "href_from": "/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/action", "href_result": "/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "started_at": "2025-10-29T22:56:25.678345+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:56:25 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fccbaddb-bb9d-48e8-b36b-ecedab38e04c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b3bbf865-5d8e-4f0a-b245-2f3199eb8246 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - afe20a74-3d8d-45ed-be55-1a64e162fae1 + - 80f01517-271e-4ab4-a12f-c992b1c5d9b9 status: 202 Accepted code: 202 - duration: 272.119902ms - - id: 80 + duration: 511.6938ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4031,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/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -4039,32 +3509,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1870 + content_length: 1899 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:25.233279+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1870" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1899" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b38e30aa-f621-49f7-ad93-ad42e82b04f1 + - d263fb31-804b-4de2-b577-d97792d18e84 status: 200 OK code: 200 - duration: 139.686329ms - - id: 81 + duration: 152.928567ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4080,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/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -4088,32 +3550,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1870 + content_length: 1899 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:25.233279+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1870" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1899" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 832c7a1c-ee2f-450d-9b76-b46778cf3b88 + - 8bc11b60-9bf5-4b17-877f-4598034924b8 status: 200 OK code: 200 - duration: 175.129845ms - - id: 82 + duration: 141.470059ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4129,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/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -4137,32 +3591,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1870 + content_length: 1899 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:25.233279+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1870" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1899" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 37f3c36d-6937-4574-82a3-b3df28f8878f + - 29be2e03-ee7d-45cf-8344-9ff51a5cb928 status: 200 OK code: 200 - duration: 150.52542ms - - id: 83 + duration: 181.077436ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4178,7 +3624,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -4186,32 +3632,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1870 + content_length: 1853 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:25.233279+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1870" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1853" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 20f822a3-14fc-48d9-aade-ad7a5aa50a40 + - f8a17e79-d00c-43bc-a0ef-fdd01ecdad6d status: 200 OK code: 200 - duration: 157.381148ms - - id: 84 + duration: 147.567106ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4227,7 +3665,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -4235,32 +3673,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1870 + content_length: 1853 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:25.233279+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1870" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1853" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:24 GMT + - Wed, 29 Oct 2025 22:56:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 22e0f07e-e79e-45d4-a293-17358b35104a + - 43301354-c813-404d-a67a-84a3e5556891 status: 200 OK code: 200 - duration: 112.723046ms - - id: 85 + duration: 141.752252ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4276,7 +3706,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -4284,32 +3714,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1870 + content_length: 1899 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:25.233279+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1870" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1899" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:29 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 71f074b1-8792-4a23-8cad-52acccbf7840 + - 22d73963-eb39-4e45-a777-6095c27a8d67 status: 200 OK code: 200 - duration: 154.063792ms - - id: 86 + duration: 137.498298ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4325,7 +3747,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -4333,32 +3755,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1870 + content_length: 1899 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:25.233279+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "96", "hypervisor_id": "701", "node_id": "20"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1870" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1899" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:34 GMT + - Wed, 29 Oct 2025 22:56:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d645b84a-841d-418f-bf16-2702cdfaee1c + - a07d4673-8560-4507-9c5d-8b0bbad2de4a status: 200 OK code: 200 - duration: 136.220096ms - - id: 87 + duration: 128.409581ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4374,7 +3788,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -4382,32 +3796,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1755 + content_length: 1737 uncompressed: false - 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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:56:58.700007+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1755" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1737" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a68ffd89-3b19-47e9-a159-811b991bc810 + - 9d612b6e-9364-4fbf-b5f3-56959f4c4c7e status: 200 OK code: 200 - duration: 179.53619ms - - id: 88 + duration: 162.98625ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4425,7 +3831,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/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: PATCH response: proto: HTTP/2.0 @@ -4433,32 +3839,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1756 + content_length: 1784 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: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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:57:01.992038+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1756" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1784" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4090454-3619-4479-9333-7151d23352df + - 7f9acb86-29bc-4463-8996-0920253010cc status: 200 OK code: 200 - duration: 330.989362ms - - id: 89 + duration: 306.946606ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4474,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/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -4482,32 +3880,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1756 + content_length: 1738 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: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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:57:01.992038+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1756" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1738" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 52b02aaf-5ccd-451c-a099-4325e8fde38b + - a1a788bb-8636-47d6-addf-4f510c048ca0 status: 200 OK code: 200 - duration: 138.186269ms - - id: 90 + duration: 129.203317ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4523,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/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -4533,30 +3923,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.969131Z", "updated_at":"2025-10-29T22:55:18.969131Z", "references":[{"id":"3418d756-adb5-470a-a9c1-173286defa7d", "product_resource_type":"instance_server", "product_resource_id":"3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "created_at":"2025-10-29T22:55:18.969131Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:40 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4d708e0-970e-457e-aee4-7e711ee0d1f3 + - c4fe6f8f-60a7-4a09-90d3-ef54cd01dd7c status: 200 OK code: 200 - duration: 79.643634ms - - id: 91 + duration: 87.766478ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4574,7 +3956,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/703abb35-966f-46cf-ad17-6665000c9e42/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/action method: POST response: proto: HTTP/2.0 @@ -4584,32 +3966,24 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "a588ec5e-057a-43e5-93dd-992d1623da0c", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/action", "href_result": "/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "started_at": "2025-10-29T22:57:02.723873+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:57:02 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/262fde8a-0f19-41cb-a74b-1dcb69640e0e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a588ec5e-057a-43e5-93dd-992d1623da0c Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0990d249-d99e-440c-afa4-c5f8412de873 + - 0540341c-8bf3-4ccc-a658-4f3a395825b4 status: 202 Accepted code: 202 - duration: 244.71633ms - - id: 92 + duration: 309.631017ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4625,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/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -4633,32 +4007,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1778 + content_length: 1806 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:57:02.485601+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1778" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1806" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b33f75bf-9d0d-4fca-9434-922f8ac9d51a + - 0d1146ab-6a09-4611-92bf-5da08f1a245f status: 200 OK code: 200 - duration: 129.893823ms - - id: 93 + duration: 141.145401ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4674,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/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -4682,32 +4048,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1911 + 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":"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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:57:04.910114+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "95", "hypervisor_id": "1001", "node_id": "26"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1911" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1895" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:45 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6b065f95-3ccb-4832-b347-55553b696d18 + - ad7932f7-929a-4927-aa2f-dc4346b4101f status: 200 OK code: 200 - duration: 144.590442ms - - id: 94 + duration: 142.564196ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4723,7 +4081,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -4731,32 +4089,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1911 + content_length: 1941 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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:57:04.910114+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "95", "hypervisor_id": "1001", "node_id": "26"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1911" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1941" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:46 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 178e20da-2d9e-45c1-a36f-7bf4597757f0 + - d99a26e2-965a-429e-9960-9ded35f4da78 status: 200 OK code: 200 - duration: 160.620015ms - - id: 95 + duration: 148.713708ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -4772,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/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -4782,30 +4132,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:46 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 17b946e8-196b-40e8-83c4-63ae128fdba0 + - 8dc70583-fa64-4f16-9b40-09d6777c224f status: 404 Not Found code: 404 - duration: 31.359013ms - - id: 96 + duration: 32.271868ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4821,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/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -4831,30 +4173,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.969131Z", "updated_at":"2025-10-29T22:55:18.969131Z", "references":[{"id":"3418d756-adb5-470a-a9c1-173286defa7d", "product_resource_type":"instance_server", "product_resource_id":"3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "created_at":"2025-10-29T22:55:18.969131Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:46 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3ccd2131-ccf4-4d16-baf2-8c35009db640 + - c0e31c30-b3d3-4035-8d09-6b1c6b270475 status: 200 OK code: 200 - duration: 76.582339ms - - id: 97 + duration: 79.529554ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -4870,7 +4204,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/user_data method: GET response: proto: HTTP/2.0 @@ -4880,30 +4214,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:46 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 30de1db6-f156-4bf9-9d16-739e2b8bf2f1 + - 455bc43f-8a02-400e-875e-fdced19c1619 status: 200 OK code: 200 - duration: 120.306654ms - - id: 98 + duration: 103.339014ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -4919,7 +4245,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/private_nics method: GET response: proto: HTTP/2.0 @@ -4929,34 +4255,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:46 GMT + - Wed, 29 Oct 2025 22:57:08 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e59446a2-dae0-4441-811f-1b675f6b47d7 + - 4a738f8e-e128-4d5e-baab-cca43465e71a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 100.243019ms - - id: 99 + duration: 95.693765ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -4972,7 +4290,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/private_nics method: GET response: proto: HTTP/2.0 @@ -4982,34 +4300,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:46 GMT + - Wed, 29 Oct 2025 22:57:08 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6e09c619-5043-4864-a9f5-1d2c488ff58e + - 80e4a9ce-9e86-435b-acbd-af9f2872e283 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 95.183002ms - - id: 100 + duration: 121.562077ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5025,7 +4335,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -5033,32 +4343,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1911 + content_length: 1941 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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:57:04.910114+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "95", "hypervisor_id": "1001", "node_id": "26"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1911" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1941" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:46 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 48706a52-f368-4dd4-bf13-c2b55fc233ae + - 731c1596-e8c1-438b-9b91-b1ddcdf98e23 status: 200 OK code: 200 - duration: 146.815765ms - - id: 101 + duration: 143.961801ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5074,7 +4376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -5084,30 +4386,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:46 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a34c4119-0704-4865-bf6e-526a76f38f04 + - d570daf7-7aa0-4fc9-b82b-8d16bf822479 status: 404 Not Found code: 404 - duration: 22.442616ms - - id: 102 + duration: 28.977666ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5123,7 +4417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -5133,30 +4427,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.969131Z", "updated_at":"2025-10-29T22:55:18.969131Z", "references":[{"id":"3418d756-adb5-470a-a9c1-173286defa7d", "product_resource_type":"instance_server", "product_resource_id":"3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "created_at":"2025-10-29T22:55:18.969131Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:47 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ee1d2bb8-7cf8-4805-ba8f-86d2c9e7e3da + - 5e188a26-812e-4e90-9e9e-db0a4d366cd7 status: 200 OK code: 200 - duration: 93.412613ms - - id: 103 + duration: 74.174578ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5172,7 +4458,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/user_data method: GET response: proto: HTTP/2.0 @@ -5182,30 +4468,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:47 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9010014-df4f-4d8d-b2d5-d0fcd2622976 + - 7fecd5e4-fcfb-4cfa-bd71-b4e5deec43b9 status: 200 OK code: 200 - duration: 82.724204ms - - id: 104 + duration: 94.866188ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5221,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/703abb35-966f-46cf-ad17-6665000c9e42/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/private_nics method: GET response: proto: HTTP/2.0 @@ -5231,34 +4509,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:47 GMT + - Wed, 29 Oct 2025 22:57:09 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9e4dcc80-652f-4c04-a192-0183ca07530a + - 43ece75f-b83f-4000-822e-df3f382c33a8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 113.218586ms - - id: 105 + duration: 95.255696ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5274,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/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -5282,32 +4552,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1911 + content_length: 1941 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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:57:04.910114+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "95", "hypervisor_id": "1001", "node_id": "26"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1911" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1941" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:47 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - beaa34c2-228e-420d-a32f-8d5a9ca12bdc + - dfa8ba7b-bc9e-4910-bd17-a4a5ac3af8f8 status: 200 OK code: 200 - duration: 144.133768ms - - id: 106 + duration: 140.342963ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5323,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/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -5331,32 +4593,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1911 + content_length: 1941 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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:57:04.910114+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "95", "hypervisor_id": "1001", "node_id": "26"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1911" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1941" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:47 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e89ca1f-960a-414e-8cdd-6d298816db84 + - 74560c00-139f-447f-b5b7-aa4b268eef40 status: 200 OK code: 200 - duration: 149.232637ms - - id: 107 + duration: 142.509947ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5374,7 +4628,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/703abb35-966f-46cf-ad17-6665000c9e42/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/action method: POST response: proto: HTTP/2.0 @@ -5384,32 +4638,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "f121b3d0-36de-479f-b569-e738b423ba85", "description": "server_terminate", "status": "pending", "href_from": "/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/action", "href_result": "/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "started_at": "2025-10-29T22:57:10.515721+00:00", "terminated_at": null, "progress": 0, "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:48 GMT + - Wed, 29 Oct 2025 22:57:10 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/08a7e538-9b82-494c-a8e6-393d37411dea + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f121b3d0-36de-479f-b569-e738b423ba85 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d6bba910-2a21-4cac-8f3f-9a4253b9a0d8 + - 797de5d7-f3f1-4eed-873d-998f3014710a status: 202 Accepted code: 202 - duration: 361.835574ms - - id: 108 + duration: 611.36281ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5425,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/703abb35-966f-46cf-ad17-6665000c9e42 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -5433,32 +4679,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1874 + content_length: 1858 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-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"}}' + body: '{"server": {"id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c", "name": "tf-srv-angry-rubin", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-angry-rubin", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:18.836794+00:00", "modification_date": "2025-10-29T22:57:09.992413+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "95", "hypervisor_id": "1001", "node_id": "26"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1874" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1858" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a9467175-b4d9-4858-aef5-70fcb3b9cb17 + - aa3c395a-6046-44ef-b131-8ba720f9bc25 status: 200 OK code: 200 - duration: 154.203328ms - - id: 109 + duration: 151.795553ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5474,7 +4712,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -5484,30 +4722,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:53 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8f6f02e2-8be9-4e7c-b658-5aae5a7ae5a0 + - eed5675b-8927-4922-8488-4b894f34fe23 status: 404 Not Found code: 404 - duration: 49.492924ms - - id: 110 + duration: 43.729006ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5523,7 +4753,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -5533,30 +4763,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:53 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d5f36902-3969-46b8-86f7-cd4b51fd1ee1 + - 0feee639-d54e-44d9-bbd9-7954aa9c2587 status: 404 Not Found code: 404 - duration: 26.810266ms - - id: 111 + duration: 33.429463ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5572,7 +4794,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: GET response: proto: HTTP/2.0 @@ -5582,30 +4804,22 @@ interactions: trailer: {} content_length: 498 uncompressed: false - 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"}' + body: '{"id":"ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:18.969131Z", "updated_at":"2025-10-29T22:57:12.114039Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:57:12.114039Z", "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:04:53 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 424a607a-06a4-4413-a3dc-0e9e1949d3ec + - 95daeec2-2f65-4146-9f96-fc1c7eb2a0df status: 200 OK code: 200 - duration: 100.392815ms - - id: 112 + duration: 95.307816ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -5621,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/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc method: DELETE response: proto: HTTP/2.0 @@ -5633,26 +4847,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:53 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7d95549e-4bff-42f1-9be7-7de7a6918798 + - dc45318a-1cdd-4abf-b2f0-adc50d2c05bd status: 204 No Content code: 204 - duration: 204.91392ms - - id: 113 + duration: 151.141742ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5668,7 +4874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c method: GET response: proto: HTTP/2.0 @@ -5678,26 +4884,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:53 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - da36d48c-385a-4fc7-a5bc-866b910cdd89 + - b9a1944e-73ab-4712-af14-415df1f19b5c status: 404 Not Found code: 404 - duration: 35.622338ms + duration: 49.930716ms diff --git a/internal/services/instance/testdata/server-minimal1.cassette.yaml b/internal/services/instance/testdata/server-minimal1.cassette.yaml index a926f5872..495a2f3a1 100644 --- a/internal/services/instance/testdata/server-minimal1.cassette.yaml +++ b/internal/services/instance/testdata/server-minimal1.cassette.yaml @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:17 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a240365f-627f-474a-b655-1252714bff30 + - 27e85e81-bf10-4801-8bb1-be709c5e9f95 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 45.65775ms + duration: 67.829394ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:17 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6dc4decb-b81e-4e02-9e36-11e0418028e4 + - 061db939-f78e-4271-8377-f78f78c934b8 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 51.780848ms + duration: 47.133037ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,43 +127,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:17 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c561a50a-4f75-4f6c-9995-501c9b5105a2 + - 13184663-97ef-4052-98f5-88ea7dff136f status: 200 OK code: 200 - duration: 62.515802ms + duration: 59.76177ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 300 + content_length: 301 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"]}' + body: '{"name":"tf-srv-wonderful-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","tags":["terraform-test","scaleway_instance_server","minimal"]}' form: {} headers: Content-Type: @@ -182,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1799 + 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-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"}}' + body: '{"server": {"id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "name": "tf-srv-wonderful-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wonderful-shockley", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.570682+00:00", "modification_date": "2025-10-29T22:53:38.570682+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1799" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1801" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:53:39 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e7acd8f3-ddef-4b35-9a12-ad7a882a034e + - 315ee5c5-be9a-40e9-8539-ea88ada7b867 status: 201 Created code: 201 - duration: 2.353196341s + duration: 1.80463131s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1799 + 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-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"}}' + body: '{"server": {"id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "name": "tf-srv-wonderful-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wonderful-shockley", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.570682+00:00", "modification_date": "2025-10-29T22:53:38.570682+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1799" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1801" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d1d09c66-3371-46ee-952e-aa64f34fae4a + - d1e13560-5844-412d-aa81-3b8ffe4c51d8 status: 200 OK code: 200 - duration: 136.854689ms + duration: 260.613876ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 method: GET response: proto: HTTP/2.0 @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1799 + content_length: 1847 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: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"}}' + body: '{"server": {"id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "name": "tf-srv-wonderful-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wonderful-shockley", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.570682+00:00", "modification_date": "2025-10-29T22:53:38.570682+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1799" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1847" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8995f08b-4904-4b8e-92a0-031e59787362 + - d5715d72-40cd-45a8-aaea-291ccacf4783 status: 200 OK code: 200 - duration: 148.618572ms + duration: 141.617692ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af method: GET response: proto: HTTP/2.0 @@ -333,29 +297,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.717064Z", "updated_at":"2025-10-29T22:53:38.717064Z", "references":[{"id":"70a3d33a-b65f-4b48-8d82-987bd795bded", "product_resource_type":"instance_server", "product_resource_id":"a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "created_at":"2025-10-29T22:53:38.717064Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 27af3304-caaf-4dc4-8c8d-cfc5e40d3dd3 + - ebbe4f72-7b73-404f-99b8-5e0e0e9a2101 status: 200 OK code: 200 - duration: 76.734488ms + duration: 97.276134ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +330,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/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/action method: POST response: proto: HTTP/2.0 @@ -384,31 +340,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "968518ac-aac6-4f2d-bd44-acbebbed6928", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/action", "href_result": "/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "started_at": "2025-10-29T22:53:40.635612+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:53:40 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bb73b5b7-4732-48b2-82ca-90025e455bce + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/968518ac-aac6-4f2d-bd44-acbebbed6928 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 74f5b13f-958a-4450-9198-8d10208d326f + - 4058ed6c-27ff-4b74-8628-f1734d9838d5 status: 202 Accepted code: 202 - duration: 232.939954ms + duration: 517.316892ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1821 + content_length: 1869 uncompressed: 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: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"}}' + body: '{"server": {"id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "name": "tf-srv-wonderful-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wonderful-shockley", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.570682+00:00", "modification_date": "2025-10-29T22:53:40.169385+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1821" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1869" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5e4a7818-acba-4804-851f-bb8afd3fed70 + - 1276f290-bb1f-43e0-8787-8606d0cf5f06 status: 200 OK code: 200 - duration: 140.841154ms + duration: 161.460874ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 method: GET response: proto: HTTP/2.0 @@ -482,31 +422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 1957 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "name": "tf-srv-wonderful-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wonderful-shockley", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.570682+00:00", "modification_date": "2025-10-29T22:53:43.386523+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "601", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1957" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2dcb40c4-b852-46d4-802e-4fcd55d8d8ae + - 45697f04-14ff-4ade-a24c-38c285bec4f4 status: 200 OK code: 200 - duration: 135.456125ms + duration: 163.45746ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 method: GET response: proto: HTTP/2.0 @@ -531,31 +463,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 1957 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "name": "tf-srv-wonderful-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wonderful-shockley", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.570682+00:00", "modification_date": "2025-10-29T22:53:43.386523+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "601", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1957" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eafd0121-6859-4ce8-9de2-07ac6fa8faba + - 9b5486ac-b1fa-4f25-b083-557a3467a9bb status: 200 OK code: 200 - duration: 150.283852ms + duration: 144.105025ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af method: GET response: proto: HTTP/2.0 @@ -582,29 +506,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 192beb68-0ef1-48a2-9843-ef75ff57d673 + - 5c8c9353-2ac2-438e-a036-129d3973e734 status: 404 Not Found code: 404 - duration: 21.647431ms + duration: 32.544771ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af method: GET response: proto: HTTP/2.0 @@ -631,29 +547,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.717064Z", "updated_at":"2025-10-29T22:53:38.717064Z", "references":[{"id":"70a3d33a-b65f-4b48-8d82-987bd795bded", "product_resource_type":"instance_server", "product_resource_id":"a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "created_at":"2025-10-29T22:53:38.717064Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:25 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bcffe464-ce9a-4213-8923-86f8521e869a + - c35574b1-cb68-47c2-9ea8-aec8d900404d status: 200 OK code: 200 - duration: 92.48035ms + duration: 75.665688ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/user_data method: GET response: proto: HTTP/2.0 @@ -680,29 +588,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:25 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c8120ad2-4909-4d7a-b1ab-3f3e8d6734c1 + - 3dcd07ab-cc4c-4e1b-bd7d-04d79e19760a status: 200 OK code: 200 - duration: 92.549239ms + duration: 102.099915ms - id: 14 request: proto: HTTP/1.1 @@ -719,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/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/private_nics method: GET response: proto: HTTP/2.0 @@ -729,33 +629,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:26 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0c8728da-d279-4fe9-a626-55c6d723ff67 + - 74942189-1f2e-42ab-80d9-2bb0ac237f5c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 100.493843ms + duration: 92.207889ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 method: GET response: proto: HTTP/2.0 @@ -780,31 +672,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 2003 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "name": "tf-srv-wonderful-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wonderful-shockley", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.570682+00:00", "modification_date": "2025-10-29T22:53:43.386523+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "601", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2003" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3c0c0da6-ebd3-4679-8bbd-9742a721c66f + - 6b5a733d-b269-4332-b1d2-b303109e829e status: 200 OK code: 200 - duration: 144.988054ms + duration: 141.427799ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 method: GET response: proto: HTTP/2.0 @@ -829,31 +713,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 2003 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "name": "tf-srv-wonderful-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wonderful-shockley", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.570682+00:00", "modification_date": "2025-10-29T22:53:43.386523+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "601", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2003" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 389988c0-a140-424c-900c-579f476d6e8a + - 0c28914a-a14d-4b4e-aa98-c0bbd179b87e status: 200 OK code: 200 - duration: 154.890369ms + duration: 170.703309ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af method: GET response: proto: HTTP/2.0 @@ -880,29 +756,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bb9f50af-22cc-4f39-af65-83b7d1673f82 + - ec2d82cd-fabc-42e9-b178-7032c9389723 status: 404 Not Found code: 404 - duration: 27.617755ms + duration: 27.532961ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af method: GET response: proto: HTTP/2.0 @@ -929,29 +797,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.717064Z", "updated_at":"2025-10-29T22:53:38.717064Z", "references":[{"id":"70a3d33a-b65f-4b48-8d82-987bd795bded", "product_resource_type":"instance_server", "product_resource_id":"a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "created_at":"2025-10-29T22:53:38.717064Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c5126a7a-fe53-489a-9b45-844eb6f111f8 + - 9d6fb729-1d38-47dc-9ef5-b7258356863b status: 200 OK code: 200 - duration: 90.006623ms + duration: 88.387475ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +828,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/user_data method: GET response: proto: HTTP/2.0 @@ -978,29 +838,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7855db4f-0788-4bfa-9033-b775335ed4f3 + - 2bc00ab4-3db0-4b98-b0d3-43eb5ec14b31 status: 200 OK code: 200 - duration: 90.320181ms + duration: 95.012513ms - id: 20 request: proto: HTTP/1.1 @@ -1017,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/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/private_nics method: GET response: proto: HTTP/2.0 @@ -1027,33 +879,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:26 GMT + - Wed, 29 Oct 2025 22:53:47 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8d76dde6-3d16-4b08-96b3-f4a31e2eb43d + - ae5dd57e-a119-47db-ad4c-b074dd77435a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 103.861396ms + duration: 129.691005ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 method: GET response: proto: HTTP/2.0 @@ -1078,31 +922,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 2003 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "name": "tf-srv-wonderful-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wonderful-shockley", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.570682+00:00", "modification_date": "2025-10-29T22:53:43.386523+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "601", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2003" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e0fd3934-2956-434c-a571-c9bae29b2da3 + - 17b5001b-0452-42d8-b028-72d41cdb7c5a status: 200 OK code: 200 - duration: 151.609989ms + duration: 143.441385ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af method: GET response: proto: HTTP/2.0 @@ -1129,29 +965,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4584c18-2d99-4591-a4ff-7d2d77210440 + - 2a02ee6c-4d76-4953-b7c5-eeea32f7f0e5 status: 404 Not Found code: 404 - duration: 29.628434ms + duration: 27.084974ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +996,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af method: GET response: proto: HTTP/2.0 @@ -1178,29 +1006,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.717064Z", "updated_at":"2025-10-29T22:53:38.717064Z", "references":[{"id":"70a3d33a-b65f-4b48-8d82-987bd795bded", "product_resource_type":"instance_server", "product_resource_id":"a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "created_at":"2025-10-29T22:53:38.717064Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - de8ad5c7-c8d4-4648-beb7-f7abfa952518 + - 2e88c92c-a22a-4f96-b619-ed48e610c401 status: 200 OK code: 200 - duration: 82.200169ms + duration: 79.271221ms - id: 24 request: proto: HTTP/1.1 @@ -1217,7 +1037,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/user_data method: GET response: proto: HTTP/2.0 @@ -1227,29 +1047,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 288373ac-b937-4b1c-94f4-c2d99be09315 + - 8eb04ee2-125a-4958-a537-239ec8a2c794 status: 200 OK code: 200 - duration: 85.095197ms + duration: 103.90451ms - id: 25 request: proto: HTTP/1.1 @@ -1266,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/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/private_nics method: GET response: proto: HTTP/2.0 @@ -1276,33 +1088,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:27 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d3154339-35ec-4c4c-9398-8e6ff6e5f479 + - 0755e1e0-dd55-40a9-9197-ab95c0ebd5f7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 91.600221ms + duration: 109.047245ms - id: 26 request: proto: HTTP/1.1 @@ -1319,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/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 method: GET response: proto: HTTP/2.0 @@ -1327,31 +1131,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 1957 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "name": "tf-srv-wonderful-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wonderful-shockley", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.570682+00:00", "modification_date": "2025-10-29T22:53:43.386523+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "601", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1957" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ac78d3b2-fe56-493c-a956-494442bebe95 + - e8d1fc65-9c5b-4928-9ae1-3483675cd37a status: 200 OK code: 200 - duration: 132.224248ms + duration: 161.31736ms - id: 27 request: proto: HTTP/1.1 @@ -1368,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/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 method: GET response: proto: HTTP/2.0 @@ -1376,31 +1172,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 1957 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "name": "tf-srv-wonderful-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wonderful-shockley", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.570682+00:00", "modification_date": "2025-10-29T22:53:43.386523+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "601", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1957" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 544c4ca7-5bfb-4c9f-971c-f4b81291945b + - cf303694-11f9-4edc-b480-f0a7c94fa748 status: 200 OK code: 200 - duration: 143.86436ms + duration: 147.06999ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af method: GET response: proto: HTTP/2.0 @@ -1427,29 +1215,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9c6a4f6e-683c-45f8-94d0-0698a0194fbf + - 9691e721-c09d-401d-a5bd-84ef3b1f0637 status: 404 Not Found code: 404 - duration: 26.993936ms + duration: 25.970128ms - id: 29 request: proto: HTTP/1.1 @@ -1466,7 +1246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af method: GET response: proto: HTTP/2.0 @@ -1476,29 +1256,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.717064Z", "updated_at":"2025-10-29T22:53:38.717064Z", "references":[{"id":"70a3d33a-b65f-4b48-8d82-987bd795bded", "product_resource_type":"instance_server", "product_resource_id":"a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "created_at":"2025-10-29T22:53:38.717064Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 27d9e60a-7a04-41dd-ab91-3d47c8336bb1 + - 81c50c15-412f-475b-b094-979e44b65560 status: 200 OK code: 200 - duration: 97.225226ms + duration: 88.657732ms - id: 30 request: proto: HTTP/1.1 @@ -1515,7 +1287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/user_data method: GET response: proto: HTTP/2.0 @@ -1525,29 +1297,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 16a15cd0-5ece-4908-bd35-d25c8dc1f7b3 + - 6f271efc-d536-4718-9a45-ec4bf40e7217 status: 200 OK code: 200 - duration: 91.478343ms + duration: 112.288696ms - id: 31 request: proto: HTTP/1.1 @@ -1564,7 +1328,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/private_nics method: GET response: proto: HTTP/2.0 @@ -1574,33 +1338,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:28 GMT + - Wed, 29 Oct 2025 22:53:49 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8dd89ee7-46cd-4369-9569-0b837cf81fe8 + - 79072c26-4a06-48de-98ec-2a5f379876dc X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.030491ms + duration: 84.872954ms - id: 32 request: proto: HTTP/1.1 @@ -1617,7 +1373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 method: GET response: proto: HTTP/2.0 @@ -1625,31 +1381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 2003 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "name": "tf-srv-wonderful-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wonderful-shockley", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.570682+00:00", "modification_date": "2025-10-29T22:53:43.386523+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "601", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2003" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e40d4990-7c13-467b-b3de-28455f058b6a + - d0af6d84-5396-4c3d-8148-ad91ca1335b0 status: 200 OK code: 200 - duration: 161.788473ms + duration: 156.8249ms - id: 33 request: proto: HTTP/1.1 @@ -1666,7 +1414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 method: GET response: proto: HTTP/2.0 @@ -1674,31 +1422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + 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":"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"}}' + body: '{"server": {"id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "name": "tf-srv-wonderful-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wonderful-shockley", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.570682+00:00", "modification_date": "2025-10-29T22:53:43.386523+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "601", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "1955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2043" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9c325582-8ac7-4b84-9a0e-3db4c8f73c50 + - 997cbef7-1689-468b-9c60-d4020308ade8 status: 200 OK code: 200 - duration: 135.311506ms + duration: 147.348391ms - id: 34 request: proto: HTTP/1.1 @@ -1717,7 +1457,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/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/action method: POST response: proto: HTTP/2.0 @@ -1727,31 +1467,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "7c94c19e-cad3-43d3-8e3a-647607d028e6", "description": "server_terminate", "status": "pending", "href_from": "/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/action", "href_result": "/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "started_at": "2025-10-29T22:53:49.831507+00:00", "terminated_at": null, "progress": 0, "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:29 GMT + - Wed, 29 Oct 2025 22:53:49 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9ce9a199-eead-4119-8a55-e74f89bcbecd + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7c94c19e-cad3-43d3-8e3a-647607d028e6 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9aed1b18-4a29-41e2-bbbb-830876dab0f4 + - 11c3a42f-60ac-4baa-8d4e-57b6f8a607f6 status: 202 Accepted code: 202 - duration: 281.269163ms + duration: 316.189499ms - id: 35 request: proto: HTTP/1.1 @@ -1768,7 +1500,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 method: GET response: proto: HTTP/2.0 @@ -1776,31 +1508,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1918 + content_length: 1966 uncompressed: 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: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"}}' + body: '{"server": {"id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72", "name": "tf-srv-wonderful-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wonderful-shockley", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:5b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.570682+00:00", "modification_date": "2025-10-29T22:53:49.587879+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "36", "hypervisor_id": "601", "node_id": "16"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1918" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1966" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:29 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5d9744fd-7f13-45b6-acdd-160bbedeaf4b + - 4f64ff4f-fbbf-4319-9b8f-a0d3efbad27f status: 200 OK code: 200 - duration: 151.674994ms + duration: 143.76427ms - id: 36 request: proto: HTTP/1.1 @@ -1817,7 +1541,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 method: GET response: proto: HTTP/2.0 @@ -1827,29 +1551,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:34 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dd23dc9a-1f3d-4544-b540-58de90b9b9aa + - 2673a3e7-e59b-480a-ac04-8092a1da6bd2 status: 404 Not Found code: 404 - duration: 61.597349ms + duration: 61.999237ms - id: 37 request: proto: HTTP/1.1 @@ -1866,7 +1582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af method: GET response: proto: HTTP/2.0 @@ -1876,29 +1592,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:34 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 00754b6d-29d1-456a-a78e-0d89fb41847f + - 4b63bb98-6f0e-4e00-9e73-10ad0a9e58c1 status: 404 Not Found code: 404 - duration: 24.416524ms + duration: 32.114969ms - id: 38 request: proto: HTTP/1.1 @@ -1915,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/block/v1alpha1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af method: GET response: proto: HTTP/2.0 @@ -1925,29 +1633,21 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"96daa29c-eb53-42f6-92c1-2eee2a0ba2af", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.717064Z", "updated_at":"2025-10-29T22:53:51.469363Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:53:51.469363Z", "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:04:34 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9b804ec-7053-463d-8717-ceb026f39f8c + - ef84ec30-9216-4520-babf-1beb791d13ea status: 200 OK code: 200 - duration: 94.473803ms + duration: 73.48356ms - id: 39 request: proto: HTTP/1.1 @@ -1964,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/03c2ac06-e533-4210-85aa-a6e164ea97f2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af method: DELETE response: proto: HTTP/2.0 @@ -1976,25 +1676,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:34 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 42fb1c10-2f89-4eeb-a629-52625ecbf652 + - 9b0e134a-8e04-474a-ac29-d14da90e0852 status: 204 No Content code: 204 - duration: 162.30567ms + duration: 178.856809ms - id: 40 request: proto: HTTP/1.1 @@ -2011,7 +1703,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 method: GET response: proto: HTTP/2.0 @@ -2021,26 +1713,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:34 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cadb02d8-af6b-4ecf-8e9c-a29e1bdc32d6 + - 11f35d6e-2564-4805-8122-dc43adcda696 status: 404 Not Found code: 404 - duration: 45.601981ms + duration: 47.603139ms diff --git a/internal/services/instance/testdata/server-minimal2.cassette.yaml b/internal/services/instance/testdata/server-minimal2.cassette.yaml index 792334119..2165f3c82 100644 --- a/internal/services/instance/testdata/server-minimal2.cassette.yaml +++ b/internal/services/instance/testdata/server-minimal2.cassette.yaml @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 570fb166-0a1e-4cac-802a-dc9881ce156e + - 08305ee2-f126-4d3b-a06c-74425767f508 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 39.16151ms + duration: 56.273618ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aff936d5-fedf-4aa2-957b-51284404f72e + - f9e11316-c1e1-4597-b903-de9c64645707 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 41.500024ms + duration: 47.087612ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,43 +127,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 582dd3b4-f150-4beb-ac19-18c78d1688ce + - 2fbbeb76-d4ef-4bbf-87ff-58bcb6cf9d2d status: 200 OK code: 200 - duration: 112.093286ms + duration: 48.569293ms - 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-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"}' + body: '{"name":"tf-srv-exciting-nash","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,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1734 + content_length: 1782 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: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"}}' + body: '{"server": {"id": "96a51b95-f403-4086-b358-37acb88e5806", "name": "tf-srv-exciting-nash", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-nash", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5caa645f-1400-4bca-96be-5a0323aee5fd", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:51", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.303500+00:00", "modification_date": "2025-10-29T22:53:38.303500+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1734" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1782" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:17 GMT + - Wed, 29 Oct 2025 22:53:39 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 87844526-970b-4821-bf91-42660437a63a + - faedf7af-7564-4765-8823-9f7ef9d871bd status: 201 Created code: 201 - duration: 3.909326277s + duration: 1.379546342s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1734 + content_length: 1782 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: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"}}' + body: '{"server": {"id": "96a51b95-f403-4086-b358-37acb88e5806", "name": "tf-srv-exciting-nash", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-nash", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5caa645f-1400-4bca-96be-5a0323aee5fd", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:51", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.303500+00:00", "modification_date": "2025-10-29T22:53:38.303500+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1734" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1782" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:17 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8a485589-e3cf-4f26-8f84-0d39c885f4d0 + - 2dd8eef2-c5eb-4f3a-bb24-0b75656969a5 status: 200 OK code: 200 - duration: 152.889326ms + duration: 508.121888ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 method: GET response: proto: HTTP/2.0 @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1734 + content_length: 1782 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: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"}}' + body: '{"server": {"id": "96a51b95-f403-4086-b358-37acb88e5806", "name": "tf-srv-exciting-nash", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-nash", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5caa645f-1400-4bca-96be-5a0323aee5fd", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:51", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.303500+00:00", "modification_date": "2025-10-29T22:53:38.303500+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1734" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1782" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:17 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 343a73d3-8c98-41f2-aeef-0498f9297f8a + - fb323805-b589-4704-9dbe-be535eead05c status: 200 OK code: 200 - duration: 142.596772ms + duration: 260.969281ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd method: GET response: proto: HTTP/2.0 @@ -333,29 +297,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"5caa645f-1400-4bca-96be-5a0323aee5fd", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.439065Z", "updated_at":"2025-10-29T22:53:38.439065Z", "references":[{"id":"29992aeb-9ef4-430c-9c50-525516b61955", "product_resource_type":"instance_server", "product_resource_id":"96a51b95-f403-4086-b358-37acb88e5806", "created_at":"2025-10-29T22:53:38.439065Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:18 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cfb886f5-9740-4756-b0b4-33d96c769895 + - d60999be-26d8-439a-84c2-b597779e5249 status: 200 OK code: 200 - duration: 93.012832ms + duration: 88.240048ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +330,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/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806/action method: POST response: proto: HTTP/2.0 @@ -384,31 +340,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "09546b7f-e1e2-4f80-bd0b-ce4e726c9098", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/96a51b95-f403-4086-b358-37acb88e5806/action", "href_result": "/servers/96a51b95-f403-4086-b358-37acb88e5806", "started_at": "2025-10-29T22:53:40.230844+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:53:40 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bcbdc895-202c-4d83-a8e7-79ad6b85a4b0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/09546b7f-e1e2-4f80-bd0b-ce4e726c9098 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dd03a06c-c238-4187-ae9a-83bfa6318616 + - f61d69ca-6da8-4b0a-9c5e-255aad044ee1 status: 202 Accepted code: 202 - duration: 259.36724ms + duration: 266.325787ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1756 + content_length: 1804 uncompressed: 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: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"}}' + body: '{"server": {"id": "96a51b95-f403-4086-b358-37acb88e5806", "name": "tf-srv-exciting-nash", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-nash", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5caa645f-1400-4bca-96be-5a0323aee5fd", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:51", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.303500+00:00", "modification_date": "2025-10-29T22:53:40.022233+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1756" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1804" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 98636995-09ac-4632-a17c-9e1dc7c1fb04 + - 7b5a3c9c-5b2a-498f-9315-1f969ce0db33 status: 200 OK code: 200 - duration: 142.48848ms + duration: 123.447669ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 method: GET response: proto: HTTP/2.0 @@ -482,31 +422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1890 + 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-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"}}' + body: '{"server": {"id": "96a51b95-f403-4086-b358-37acb88e5806", "name": "tf-srv-exciting-nash", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-nash", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5caa645f-1400-4bca-96be-5a0323aee5fd", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:51", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.303500+00:00", "modification_date": "2025-10-29T22:53:43.015016+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "503", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1890" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1891" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e69b0c57-defd-4dd5-abb8-3e45a815a418 + - 409779e8-9400-4e01-bde6-9a7178d8a5c0 status: 200 OK code: 200 - duration: 139.496607ms + duration: 144.932893ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 method: GET response: proto: HTTP/2.0 @@ -531,31 +463,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1890 + 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-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"}}' + body: '{"server": {"id": "96a51b95-f403-4086-b358-37acb88e5806", "name": "tf-srv-exciting-nash", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-nash", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5caa645f-1400-4bca-96be-5a0323aee5fd", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:51", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.303500+00:00", "modification_date": "2025-10-29T22:53:43.015016+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "503", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1890" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1891" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b3e5c17c-8254-4031-b28e-4e0c6d6ddaaf + - 69ec3770-d75f-4824-a686-1160dc24353f status: 200 OK code: 200 - duration: 159.945311ms + duration: 166.596459ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd method: GET response: proto: HTTP/2.0 @@ -582,29 +506,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5caa645f-1400-4bca-96be-5a0323aee5fd"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 67dc37de-0a03-4827-acdc-cdb8b0f8466c + - 1f514523-2496-4693-9292-58ff67489dbc status: 404 Not Found code: 404 - duration: 25.35415ms + duration: 43.461323ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd method: GET response: proto: HTTP/2.0 @@ -631,29 +547,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"5caa645f-1400-4bca-96be-5a0323aee5fd", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.439065Z", "updated_at":"2025-10-29T22:53:38.439065Z", "references":[{"id":"29992aeb-9ef4-430c-9c50-525516b61955", "product_resource_type":"instance_server", "product_resource_id":"96a51b95-f403-4086-b358-37acb88e5806", "created_at":"2025-10-29T22:53:38.439065Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:23 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 12e2d694-a80c-4262-af5c-37bff68a3c19 + - 6b33888c-15e5-4bbc-b1e7-fb426967f93a status: 200 OK code: 200 - duration: 86.630071ms + duration: 96.582318ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806/user_data method: GET response: proto: HTTP/2.0 @@ -680,29 +588,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 76406ca7-cb49-4fc8-a693-c81eccae24d2 + - 9f02756b-3373-4699-a522-e475ea84b3f9 status: 200 OK code: 200 - duration: 108.741652ms + duration: 97.556139ms - id: 14 request: proto: HTTP/1.1 @@ -719,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/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806/private_nics method: GET response: proto: HTTP/2.0 @@ -729,33 +629,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:24 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7b912bf7-5e3d-4fd9-aab6-fa2e103ef639 + - 0ab94ce7-5755-4fdc-a4ad-e3c4084a2a13 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 108.167626ms + duration: 125.280287ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 method: GET response: proto: HTTP/2.0 @@ -780,31 +672,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1890 + 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-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"}}' + body: '{"server": {"id": "96a51b95-f403-4086-b358-37acb88e5806", "name": "tf-srv-exciting-nash", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-nash", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5caa645f-1400-4bca-96be-5a0323aee5fd", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:51", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.303500+00:00", "modification_date": "2025-10-29T22:53:43.015016+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "503", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1890" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1891" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:24 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - da5a9c94-e3be-4578-a9ac-16c77cbe56c9 + - b65b010f-f0e6-432d-88f1-3b8e66d1968e status: 200 OK code: 200 - duration: 141.110022ms + duration: 155.779184ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 method: GET response: proto: HTTP/2.0 @@ -829,31 +713,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1890 + 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-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"}}' + body: '{"server": {"id": "96a51b95-f403-4086-b358-37acb88e5806", "name": "tf-srv-exciting-nash", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-nash", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5caa645f-1400-4bca-96be-5a0323aee5fd", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:51", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.303500+00:00", "modification_date": "2025-10-29T22:53:43.015016+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "503", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1890" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1891" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:24 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7b2aec28-cd37-440d-a0c4-6466c8d05824 + - 5c03e3f9-c1f3-4403-86ee-9635a1aeef5f status: 200 OK code: 200 - duration: 143.0184ms + duration: 144.512027ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd method: GET response: proto: HTTP/2.0 @@ -880,29 +756,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5caa645f-1400-4bca-96be-5a0323aee5fd"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:24 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c5dd0a36-84c3-4d2e-96dd-e0b05b1fede6 + - 5df2d8bb-12c0-4e6d-9be7-fe21a03de19d status: 404 Not Found code: 404 - duration: 27.846783ms + duration: 26.871113ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd method: GET response: proto: HTTP/2.0 @@ -929,29 +797,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"5caa645f-1400-4bca-96be-5a0323aee5fd", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.439065Z", "updated_at":"2025-10-29T22:53:38.439065Z", "references":[{"id":"29992aeb-9ef4-430c-9c50-525516b61955", "product_resource_type":"instance_server", "product_resource_id":"96a51b95-f403-4086-b358-37acb88e5806", "created_at":"2025-10-29T22:53:38.439065Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:24 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7778909e-510f-45a7-9740-ce3fde5dd555 + - 59a2a8ab-e03b-4472-b91d-9e4a7dfc48f4 status: 200 OK code: 200 - duration: 87.156658ms + duration: 83.658554ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +828,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806/user_data method: GET response: proto: HTTP/2.0 @@ -978,29 +838,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:25 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c9e95a7f-c439-47f7-8f98-493a11426be8 + - 08d3c10f-ab49-4049-831c-cc7a69dde9ff status: 200 OK code: 200 - duration: 127.392798ms + duration: 99.900042ms - id: 20 request: proto: HTTP/1.1 @@ -1017,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/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806/private_nics method: GET response: proto: HTTP/2.0 @@ -1027,33 +879,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:25 GMT + - Wed, 29 Oct 2025 22:53:46 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c0744dd8-4f65-4b05-a8b6-b8c159c68afc + - 7ed9afe0-542b-41ec-ae6d-e7782580cfc1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 92.881221ms + duration: 91.366005ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 method: GET response: proto: HTTP/2.0 @@ -1078,31 +922,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1890 + content_length: 1937 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "96a51b95-f403-4086-b358-37acb88e5806", "name": "tf-srv-exciting-nash", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-nash", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5caa645f-1400-4bca-96be-5a0323aee5fd", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:51", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.303500+00:00", "modification_date": "2025-10-29T22:53:43.015016+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "503", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1890" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1937" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 88027907-ecd6-4076-8800-2a7d11895197 + - c3d16057-56ab-4bc7-a571-616ceef87258 status: 200 OK code: 200 - duration: 154.777455ms + duration: 146.958822ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd method: GET response: proto: HTTP/2.0 @@ -1129,29 +965,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5caa645f-1400-4bca-96be-5a0323aee5fd"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 27d83ed6-381b-4a35-b04d-9a13b56db8f4 + - 52b0db7a-be2c-46bd-8d18-7cc342d47cc4 status: 404 Not Found code: 404 - duration: 25.602245ms + duration: 26.451328ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +996,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd method: GET response: proto: HTTP/2.0 @@ -1178,29 +1006,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"5caa645f-1400-4bca-96be-5a0323aee5fd", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.439065Z", "updated_at":"2025-10-29T22:53:38.439065Z", "references":[{"id":"29992aeb-9ef4-430c-9c50-525516b61955", "product_resource_type":"instance_server", "product_resource_id":"96a51b95-f403-4086-b358-37acb88e5806", "created_at":"2025-10-29T22:53:38.439065Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 77430a46-0648-4339-a419-0473966e7849 + - 29dae5e5-ed30-4a47-b1c2-6a4eb691cd9f status: 200 OK code: 200 - duration: 87.473593ms + duration: 79.609794ms - id: 24 request: proto: HTTP/1.1 @@ -1217,7 +1037,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806/user_data method: GET response: proto: HTTP/2.0 @@ -1227,29 +1047,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8d0c927f-784e-4774-b90c-46f87f13f968 + - 932ff782-b2f2-499a-9b50-c1fc2a773cb8 status: 200 OK code: 200 - duration: 97.79928ms + duration: 88.49132ms - id: 25 request: proto: HTTP/1.1 @@ -1266,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/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806/private_nics method: GET response: proto: HTTP/2.0 @@ -1276,33 +1088,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:25 GMT + - Wed, 29 Oct 2025 22:53:47 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 980d71a0-26e5-49a7-b0f3-cdee2d685942 + - 69fdabde-8d36-4491-a8da-fc674b7ab49e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 104.924518ms + duration: 93.725216ms - id: 26 request: proto: HTTP/1.1 @@ -1315,7 +1119,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1327,35 +1133,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53:47 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3b72eec3-9b6a-4969-81f9-ea9085e23281 + - 97835fd6-dd10-4454-9535-e526fc6e604d X-Total-Count: - "68" status: 200 OK code: 200 - duration: 42.329784ms + duration: 38.841536ms - id: 27 request: proto: HTTP/1.1 @@ -1372,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/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 method: GET response: proto: HTTP/2.0 @@ -1380,35 +1178,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14295 + content_length: 1891 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}}}}' + body: '{"server": {"id": "96a51b95-f403-4086-b358-37acb88e5806", "name": "tf-srv-exciting-nash", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-nash", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5caa645f-1400-4bca-96be-5a0323aee5fd", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:51", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.303500+00:00", "modification_date": "2025-10-29T22:53:43.015016+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "503", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1891" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ef93733a-a3d4-4c45-b700-c1b62f3c78b1 - X-Total-Count: - - "68" + - 454b144d-a784-4296-8b14-9624b6af9a24 status: 200 OK code: 200 - duration: 45.864961ms + duration: 130.344747ms - id: 28 request: proto: HTTP/1.1 @@ -1421,11 +1207,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -1433,31 +1221,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1890 + 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-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"}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "1890" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "14295" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53:47 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 14a96fae-ce3a-46be-9327-c85537720b5b + - 87334829-dc35-4145-9f77-f5691eb38d5c + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 145.597486ms + duration: 97.764399ms - id: 29 request: proto: HTTP/1.1 @@ -1470,7 +1254,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1484,29 +1276,21 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bfd1597b-4671-43fb-86e7-186f22dd3889 + - 442f0dc1-2ef4-4284-b153-f0796ffe922a status: 200 OK code: 200 - duration: 66.288789ms + duration: 55.543495ms - id: 30 request: proto: HTTP/1.1 @@ -1523,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/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 method: GET response: proto: HTTP/2.0 @@ -1531,31 +1315,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1890 + content_length: 1977 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "96a51b95-f403-4086-b358-37acb88e5806", "name": "tf-srv-exciting-nash", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-nash", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5caa645f-1400-4bca-96be-5a0323aee5fd", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:51", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.303500+00:00", "modification_date": "2025-10-29T22:53:43.015016+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "503", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "1890" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1977" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f0089951-606e-4279-91fc-25a524b253fd + - b6139f97-017a-4129-b93d-71f9e3eeaafa status: 200 OK code: 200 - duration: 140.119146ms + duration: 142.344945ms - id: 31 request: proto: HTTP/1.1 @@ -1574,7 +1350,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/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806/action method: POST response: proto: HTTP/2.0 @@ -1584,31 +1360,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "6c6a1baf-778e-4d81-8951-cabd5f07a1d9", "description": "server_terminate", "status": "pending", "href_from": "/servers/96a51b95-f403-4086-b358-37acb88e5806/action", "href_result": "/servers/96a51b95-f403-4086-b358-37acb88e5806", "started_at": "2025-10-29T22:53:48.205848+00:00", "terminated_at": null, "progress": 0, "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:26 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d6a5f912-0164-4882-8ed7-c69558956ea1 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6c6a1baf-778e-4d81-8951-cabd5f07a1d9 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 82c44570-4c78-4ae5-8311-d4f475efaadb + - f83ed4d3-8f2a-4b89-acf4-3351a3485f77 status: 202 Accepted code: 202 - duration: 293.798946ms + duration: 301.687973ms - id: 32 request: proto: HTTP/1.1 @@ -1625,7 +1393,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 method: GET response: proto: HTTP/2.0 @@ -1633,43 +1401,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1853 + content_length: 1940 uncompressed: 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: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"}}' + body: '{"server": {"id": "96a51b95-f403-4086-b358-37acb88e5806", "name": "tf-srv-exciting-nash", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-nash", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5caa645f-1400-4bca-96be-5a0323aee5fd", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:51", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.303500+00:00", "modification_date": "2025-10-29T22:53:47.968480+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "503", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "1853" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 88604087-6f83-42ab-9906-8d2f5a3a6897 + - 1eaff761-af5d-4fe9-85a5-8ab03136f78d status: 200 OK code: 200 - duration: 128.779319ms + duration: 141.195937ms - id: 33 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-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"}' + body: '{"name":"tf-srv-wizardly-lichterman","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: @@ -1684,33 +1444,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 2172 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: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"}}' + body: '{"server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-lichterman", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:65", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2154" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2172" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e14de258-fb05-4193-ab90-a8be97813c12 + - 4dce6cbc-8d0e-489a-a6ae-7f84dfebdb4b status: 201 Created code: 201 - duration: 741.456055ms + duration: 778.722948ms - id: 34 request: proto: HTTP/1.1 @@ -1727,7 +1479,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 method: GET response: proto: HTTP/2.0 @@ -1735,31 +1487,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 2218 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: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"}}' + body: '{"server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-lichterman", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:65", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2154" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2218" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 577514e2-18a3-4a0f-be1c-aeab1a719774 + - 73853aaa-7c99-43b3-85e1-1b0289909446 status: 200 OK code: 200 - duration: 125.926811ms + duration: 138.141997ms - id: 35 request: proto: HTTP/1.1 @@ -1776,7 +1520,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 method: GET response: proto: HTTP/2.0 @@ -1784,31 +1528,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 2172 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: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"}}' + body: '{"server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-lichterman", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:65", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2154" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2172" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 01f8a870-6736-438c-9166-edba9f9d7414 + - 0a96f85c-35b4-488d-bfbc-833d3b9f531a status: 200 OK code: 200 - duration: 136.460929ms + duration: 121.822934ms - id: 36 request: proto: HTTP/1.1 @@ -1827,7 +1563,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/64e60bc0-d167-48ff-b844-fd752209ed28/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/action method: POST response: proto: HTTP/2.0 @@ -1837,31 +1573,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "16ed66da-e5c2-4244-b489-b94a3d717ca3", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/action", "href_result": "/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "started_at": "2025-10-29T22:53:49.130077+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53:49 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/65920e3e-1948-4eb2-8c6f-107bb8cae8f3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/16ed66da-e5c2-4244-b489-b94a3d717ca3 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d314d933-d52f-4c4e-9080-6db58f466cb8 + - f6498b6b-cb48-43c2-88d8-63106864ad72 status: 202 Accepted code: 202 - duration: 236.74481ms + duration: 254.402871ms - id: 37 request: proto: HTTP/1.1 @@ -1878,7 +1606,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 method: GET response: proto: HTTP/2.0 @@ -1886,31 +1614,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2176 + content_length: 2194 uncompressed: 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: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"}}' + body: '{"server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-lichterman", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:65", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.933475+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2176" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2194" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a17ae30b-5b61-4170-a6b9-75f774cc33d1 + - be36b408-660c-4139-b5d4-c3db0a9914d3 status: 200 OK code: 200 - duration: 119.733431ms + duration: 133.38336ms - id: 38 request: proto: HTTP/1.1 @@ -1927,7 +1647,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 method: GET response: proto: HTTP/2.0 @@ -1935,31 +1655,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1854 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","type":"not_found"}' + body: '{"server": {"id": "96a51b95-f403-4086-b358-37acb88e5806", "name": "tf-srv-exciting-nash", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-nash", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5caa645f-1400-4bca-96be-5a0323aee5fd", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:51", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.303500+00:00", "modification_date": "2025-10-29T22:53:47.968480+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "503", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1854" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:31 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b1474151-539f-4f24-8d0c-7c8ca6ae1285 - status: 404 Not Found - code: 404 - duration: 60.307249ms + - 0ccbfae2-60f9-4eeb-972b-360113d9dc85 + status: 200 OK + code: 200 + duration: 134.657564ms - id: 39 request: proto: HTTP/1.1 @@ -1976,7 +1688,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 method: GET response: proto: HTTP/2.0 @@ -1984,31 +1696,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2382 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","type":"not_found"}' + body: '{"server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-lichterman", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:65", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.933475+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "703", "node_id": "1"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2382" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:31 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c2f3879f-7f3c-4506-aa0b-c50e40038a4f - status: 404 Not Found - code: 404 - duration: 25.439031ms + - 72086493-ece3-4767-a8a1-cb8018f4fb05 + status: 200 OK + code: 200 + duration: 118.208457ms - id: 40 request: proto: HTTP/1.1 @@ -2025,7 +1729,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 method: GET response: proto: HTTP/2.0 @@ -2033,31 +1737,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 494 + content_length: 1854 uncompressed: false - 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"}' + body: '{"server": {"id": "96a51b95-f403-4086-b358-37acb88e5806", "name": "tf-srv-exciting-nash", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-exciting-nash", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5caa645f-1400-4bca-96be-5a0323aee5fd", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:51", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.303500+00:00", "modification_date": "2025-10-29T22:53:47.968480+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "503", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1854" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:31 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 67acecfd-e36e-4f88-b598-4de91474f250 + - 09bebd71-b450-472c-9973-3cb4aea49e06 status: 200 OK code: 200 - duration: 87.655739ms + duration: 178.047888ms - id: 41 request: proto: HTTP/1.1 @@ -2074,37 +1770,31 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 + 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": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-lichterman", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:65", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:55.487447+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "703", "node_id": "1"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "2327" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:31 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a5884e9d-e009-4a9f-a0c3-ccf00c6661de - status: 204 No Content - code: 204 - duration: 166.566644ms + - de633154-c680-4af4-a0b1-ae18b3739fee + status: 200 OK + code: 200 + duration: 135.168702ms - id: 42 request: proto: HTTP/1.1 @@ -2121,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/64e60bc0-d167-48ff-b844-fd752209ed28 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 method: GET response: proto: HTTP/2.0 @@ -2129,31 +1819,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 2373 uncompressed: 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: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"}}' + body: '{"server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-lichterman", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:65", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:55.487447+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "703", "node_id": "1"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2279" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2373" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:32 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8fa76df7-4f65-4c35-9bfd-c8bb43894e96 + - 9db6e699-6d5a-4c87-bd49-7a8ca3be143f status: 200 OK code: 200 - duration: 120.293346ms + duration: 118.838568ms - id: 43 request: proto: HTTP/1.1 @@ -2170,7 +1852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d5ad069e-66ca-4f4d-bdc0-b0360163f5d4 method: GET response: proto: HTTP/2.0 @@ -2178,31 +1860,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + 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-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"}}' + body: '{"volume": {"id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "2279" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "526" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:37 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2c9e9f6c-6456-4f89-8442-d86ac06c4eed + - 2f36039a-e12a-4a78-a2d3-ed4ac7d6c8cc status: 200 OK code: 200 - duration: 147.264185ms + duration: 108.926103ms - id: 44 request: proto: HTTP/1.1 @@ -2219,7 +1893,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/user_data method: GET response: proto: HTTP/2.0 @@ -2227,31 +1901,23 @@ 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-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"}}' + body: '{"user_data": []}' headers: Content-Length: - - "2279" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:42 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8a256fc4-abbd-4238-b6b9-df1249b15750 + - a2ef0f6d-959c-4e71-9db1-296594d5a835 status: 200 OK code: 200 - duration: 116.243212ms + duration: 119.983838ms - id: 45 request: proto: HTTP/1.1 @@ -2268,7 +1934,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/private_nics method: GET response: proto: HTTP/2.0 @@ -2276,31 +1942,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2310 + 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-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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "2310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:47 GMT + - Wed, 29 Oct 2025 22:54:00 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c351a6fb-f66b-4677-9c41-091cc56a6b15 + - c3261cd9-3e59-4462-9a2c-efe391a115bc + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 162.442844ms + duration: 110.869817ms - id: 46 request: proto: HTTP/1.1 @@ -2317,7 +1979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 method: GET response: proto: HTTP/2.0 @@ -2325,31 +1987,23 @@ 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-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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "96a51b95-f403-4086-b358-37acb88e5806"}' headers: Content-Length: - - "2310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6a3213ed-7139-4a4d-af67-c2ab80f25e3f - status: 200 OK - code: 200 - duration: 140.883484ms + - 5b39369b-549d-489e-8ac0-946bbc48f2fa + status: 404 Not Found + code: 404 + duration: 51.248496ms - id: 47 request: proto: HTTP/1.1 @@ -2366,7 +2020,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd method: GET response: proto: HTTP/2.0 @@ -2374,31 +2028,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 520 + content_length: 143 uncompressed: false - 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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5caa645f-1400-4bca-96be-5a0323aee5fd"}' headers: Content-Length: - - "520" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 42f57c46-ae3d-47c8-833b-b9818462b6a8 - status: 200 OK - code: 200 - duration: 97.465122ms + - 292adce1-bd04-43c4-9645-b87aa5cf9969 + status: 404 Not Found + code: 404 + duration: 25.403781ms - id: 48 request: proto: HTTP/1.1 @@ -2415,7 +2061,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd method: GET response: proto: HTTP/2.0 @@ -2423,31 +2069,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 494 uncompressed: false - body: '{"user_data":[]}' + body: '{"id":"5caa645f-1400-4bca-96be-5a0323aee5fd", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.439065Z", "updated_at":"2025-10-29T22:53:59.595833Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:53:59.595833Z", "zone":"fr-par-1"}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "494" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3a70f984-d172-4057-b751-a735a2e03c24 + - ad56419d-7f8a-4d21-aa56-5f195a5e2cdd status: 200 OK code: 200 - duration: 94.900644ms + duration: 79.347035ms - id: 49 request: proto: HTTP/1.1 @@ -2464,43 +2102,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28/private_nics - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd + 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, 15 Oct 2025 15:04:48 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9acbd1ee-24d6-4438-98ea-da4368655280 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 101.171251ms + - 96ac37dc-83a3-491e-9c86-88fcfb674e00 + status: 204 No Content + code: 204 + duration: 175.785259ms - id: 50 request: proto: HTTP/1.1 @@ -2517,7 +2141,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 method: GET response: proto: HTTP/2.0 @@ -2525,31 +2149,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2310 + content_length: 2373 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-lichterman", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:65", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:55.487447+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "703", "node_id": "1"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2373" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1dad0286-ab32-4c82-85cd-18b3069289a5 + - fa408782-efbb-4406-a8b2-6e408a9fabb6 status: 200 OK code: 200 - duration: 142.682648ms + duration: 150.288225ms - id: 51 request: proto: HTTP/1.1 @@ -2566,7 +2182,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 method: GET response: proto: HTTP/2.0 @@ -2574,31 +2190,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2310 + content_length: 2373 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-lichterman", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:65", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:55.487447+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "703", "node_id": "1"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2373" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 59aa4cb8-93e9-46ca-b565-24f611a202f1 + - 7fc0748f-f0da-4f78-9585-8899c4c9e70c status: 200 OK code: 200 - duration: 133.214697ms + duration: 148.689596ms - id: 52 request: proto: HTTP/1.1 @@ -2615,7 +2223,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d5ad069e-66ca-4f4d-bdc0-b0360163f5d4 method: GET response: proto: HTTP/2.0 @@ -2623,31 +2231,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 520 + content_length: 526 uncompressed: false - 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"}}' + body: '{"volume": {"id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "520" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "526" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 61f37fb3-9b7a-405e-9e73-c0b11009e221 + - 1120ade2-fdc5-497f-950b-133307b87bfa status: 200 OK code: 200 - duration: 90.233865ms + duration: 123.560939ms - id: 53 request: proto: HTTP/1.1 @@ -2664,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/64e60bc0-d167-48ff-b844-fd752209ed28/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/user_data method: GET response: proto: HTTP/2.0 @@ -2674,29 +2274,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:49 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - da40ca6b-e1b6-4f03-85cb-f0b9e54f90bb + - 62334976-208b-49da-b8a2-be840ae89175 status: 200 OK code: 200 - duration: 114.878971ms + duration: 103.64515ms - id: 54 request: proto: HTTP/1.1 @@ -2713,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/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/private_nics method: GET response: proto: HTTP/2.0 @@ -2723,33 +2315,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:49 GMT + - Wed, 29 Oct 2025 22:54:04 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fe17f086-35e0-4e25-91bb-14c5c50a5dc3 + - 01471500-f61e-48c1-be05-84b219458e8e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 104.574181ms + duration: 106.786603ms - id: 55 request: proto: HTTP/1.1 @@ -2766,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/64e60bc0-d167-48ff-b844-fd752209ed28 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 method: GET response: proto: HTTP/2.0 @@ -2774,31 +2358,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2310 + content_length: 2373 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-lichterman", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:65", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:55.487447+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "703", "node_id": "1"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2373" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:49 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e92e04e-5633-427b-885a-141c83ebcf0e + - aacc57af-22ec-4b4b-b096-37692b32fe6b status: 200 OK code: 200 - duration: 159.526208ms + duration: 137.335486ms - id: 56 request: proto: HTTP/1.1 @@ -2815,7 +2391,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d5ad069e-66ca-4f4d-bdc0-b0360163f5d4 method: GET response: proto: HTTP/2.0 @@ -2823,31 +2399,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 520 + content_length: 526 uncompressed: false - 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"}}' + body: '{"volume": {"id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "520" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "526" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:49 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3d0d7493-8564-467c-946f-1226c30b4725 + - 0f4b5450-fb8e-4fc7-adb7-5dd296cb6006 status: 200 OK code: 200 - duration: 100.008161ms + duration: 121.438601ms - id: 57 request: proto: HTTP/1.1 @@ -2864,7 +2432,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/user_data method: GET response: proto: HTTP/2.0 @@ -2874,29 +2442,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:49 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d0765722-9adf-49fc-8033-36d1a32c73e2 + - 696a2590-b8ad-4de0-bd1b-9fdfb71bc601 status: 200 OK code: 200 - duration: 96.200241ms + duration: 90.752332ms - id: 58 request: proto: HTTP/1.1 @@ -2913,7 +2473,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/private_nics method: GET response: proto: HTTP/2.0 @@ -2923,33 +2483,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:49 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a36fe252-3058-4b34-b199-35946d8c778a + - 7170ff5e-56aa-4f18-8f4f-7732495bab13 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 112.879332ms + duration: 89.164313ms - id: 59 request: proto: HTTP/1.1 @@ -2962,7 +2514,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2974,35 +2528,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:49 GMT + - Wed, 29 Oct 2025 22:54:05 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2dbca64e-e221-4407-be34-434c4b737265 + - 19874bbc-ff20-454a-a9c9-cb4cf8c2bfea X-Total-Count: - "68" status: 200 OK code: 200 - duration: 41.418874ms + duration: 91.074514ms - id: 60 request: proto: HTTP/1.1 @@ -3019,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/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 method: GET response: proto: HTTP/2.0 @@ -3027,35 +2573,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14295 + content_length: 2373 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}}}}' + body: '{"server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-lichterman", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:65", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:55.487447+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "703", "node_id": "1"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2373" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:49 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0ce89326-ad7c-42ff-8e17-2bf53c546fe4 - X-Total-Count: - - "68" + - 57caf020-3cd7-47f5-bcd1-97c849de1aae status: 200 OK code: 200 - duration: 47.431497ms + duration: 134.210152ms - id: 61 request: proto: HTTP/1.1 @@ -3068,11 +2602,13 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -3080,31 +2616,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2310 + 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-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"}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "2310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "14295" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:49 GMT + - Wed, 29 Oct 2025 22:54:05 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 02282bb4-bbe8-4371-a9e0-3f71d23194c4 + - 7aa4d20b-97ff-4cf6-b424-32748eaee3c6 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 123.484025ms + duration: 39.523853ms - id: 62 request: proto: HTTP/1.1 @@ -3117,7 +2649,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -3131,29 +2671,21 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:50 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d2d1ff64-34ff-4654-99ae-f1aa28ad512d + - 16d0a833-9ff5-4a28-bb10-160a177a6561 status: 200 OK code: 200 - duration: 45.446505ms + duration: 44.688861ms - id: 63 request: proto: HTTP/1.1 @@ -3170,7 +2702,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 method: GET response: proto: HTTP/2.0 @@ -3178,31 +2710,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2310 + content_length: 2373 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-lichterman", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:65", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:55.487447+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "703", "node_id": "1"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2373" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a175a3e2-4adb-4033-85a3-ad0dd9a92280 + - a8d60aa8-1d55-4da1-992a-ac74bc6dd8f0 status: 200 OK code: 200 - duration: 135.778896ms + duration: 140.959933ms - id: 64 request: proto: HTTP/1.1 @@ -3221,7 +2745,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/64e60bc0-d167-48ff-b844-fd752209ed28/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/action method: POST response: proto: HTTP/2.0 @@ -3231,31 +2755,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "1d79869e-0f7c-43e1-87b3-aaf7a5bb7d95", "description": "server_terminate", "status": "pending", "href_from": "/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/action", "href_result": "/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "started_at": "2025-10-29T22:54:06.348984+00:00", "terminated_at": null, "progress": 0, "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:50 GMT + - Wed, 29 Oct 2025 22:54:06 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/10d74b27-3eec-4d67-977d-995207650f26 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1d79869e-0f7c-43e1-87b3-aaf7a5bb7d95 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bb23ffdb-7a30-4c2b-aa42-3b66e7a459d1 + - e9619deb-52cd-4389-b3ae-63352121c0c7 status: 202 Accepted code: 202 - duration: 266.829228ms + duration: 307.974544ms - id: 65 request: proto: HTTP/1.1 @@ -3272,7 +2788,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 method: GET response: proto: HTTP/2.0 @@ -3280,43 +2796,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2273 + content_length: 2290 uncompressed: 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: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"}}' + body: '{"server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-lichterman", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495", "name": "tf-srv-wizardly-lichterman"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:53:48.457308+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:65", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:48.457308+00:00", "modification_date": "2025-10-29T22:54:06.092097+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "703", "node_id": "1"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2273" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2290" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 805ccd82-e7d4-4c98-afc3-da5cc8cdc7d1 + - 388d802f-7b1d-4a92-b877-c94acb8b2322 status: 200 OK code: 200 - duration: 162.911346ms + duration: 129.08064ms - id: 66 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 279 + content_length: 275 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-nice-antonelli","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: @@ -3331,33 +2839,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2169 + content_length: 2203 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: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"}}' + body: '{"server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-nice-antonelli", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "095a963e-def6-4f01-9a42-97c17d44fa49", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2169" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2203" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:50 GMT + - Wed, 29 Oct 2025 22:54:06 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4234f56d-664b-4bb1-930b-a8037a2be959 + - 5ccea3ed-8034-4b06-8134-2557e353a534 status: 201 Created code: 201 - duration: 761.898474ms + duration: 802.545175ms - id: 67 request: proto: HTTP/1.1 @@ -3374,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/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 method: GET response: proto: HTTP/2.0 @@ -3382,31 +2882,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2169 + content_length: 2157 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: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"}}' + body: '{"server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-nice-antonelli", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "095a963e-def6-4f01-9a42-97c17d44fa49", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2169" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2157" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 36bbafd5-094e-47be-8dd3-0256736cd48a + - b4d660f3-4570-4601-98fa-b9d62271668d status: 200 OK code: 200 - duration: 130.198454ms + duration: 148.011959ms - id: 68 request: proto: HTTP/1.1 @@ -3423,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/77d3151d-f486-4b6c-9d50-5352d89dee08 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 method: GET response: proto: HTTP/2.0 @@ -3431,31 +2923,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2169 + content_length: 2203 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: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"}}' + body: '{"server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-nice-antonelli", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "095a963e-def6-4f01-9a42-97c17d44fa49", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2169" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2203" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:51 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 27c90763-92a8-4658-b1eb-e3a7c9658eed + - 25e02dcc-6f15-47a5-af9a-a01a8661a9c0 status: 200 OK code: 200 - duration: 133.932345ms + duration: 138.740674ms - id: 69 request: proto: HTTP/1.1 @@ -3474,7 +2958,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/77d3151d-f486-4b6c-9d50-5352d89dee08/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642/action method: POST response: proto: HTTP/2.0 @@ -3484,31 +2968,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "2084d56d-a0a2-4dec-85ef-a8b2a876dcd4", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/888503fe-bda3-4ca4-8644-4d54587f6642/action", "href_result": "/servers/888503fe-bda3-4ca4-8644-4d54587f6642", "started_at": "2025-10-29T22:54:07.314350+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:51 GMT + - Wed, 29 Oct 2025 22:54:07 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/87707060-8daa-4116-aa80-7b964bd8c3a4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2084d56d-a0a2-4dec-85ef-a8b2a876dcd4 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 03d71703-e8c5-4b5d-b5bf-025af4129820 + - 7b38031a-f5ea-47b9-a3bf-9a995a99095f status: 202 Accepted code: 202 - duration: 260.282165ms + duration: 300.198014ms - id: 70 request: proto: HTTP/1.1 @@ -3525,7 +3001,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 method: GET response: proto: HTTP/2.0 @@ -3533,31 +3009,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2191 + 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-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"}}' + body: '{"server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-nice-antonelli", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "095a963e-def6-4f01-9a42-97c17d44fa49", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:07.092681+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2191" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2225" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:51 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d12b18fd-7656-4ee0-855a-3dce65d0d757 + - 4e19d578-0e3a-47d4-971f-e53b46ebcfb0 status: 200 OK code: 200 - duration: 131.274082ms + duration: 138.689197ms - id: 71 request: proto: HTTP/1.1 @@ -3574,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/64e60bc0-d167-48ff-b844-fd752209ed28 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 method: GET response: proto: HTTP/2.0 @@ -3584,29 +3052,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"64e60bc0-d167-48ff-b844-fd752209ed28","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d73b5af0-95ea-4918-b818-83062cf27b46 + - 6cf68113-1a53-406a-b22f-9d40e373aa2b status: 404 Not Found code: 404 - duration: 56.006687ms + duration: 55.474239ms - id: 72 request: proto: HTTP/1.1 @@ -3623,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/instance/v1/zones/fr-par-1/volumes/8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d5ad069e-66ca-4f4d-bdc0-b0360163f5d4 method: GET response: proto: HTTP/2.0 @@ -3633,29 +3093,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cac420a1-22f5-408f-a6cc-ebb447120fb3 + - b777ed39-0e26-462f-8901-8830311c8da2 status: 404 Not Found code: 404 - duration: 26.307093ms + duration: 26.455288ms - id: 73 request: proto: HTTP/1.1 @@ -3672,7 +3124,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5ad069e-66ca-4f4d-bdc0-b0360163f5d4 method: GET response: proto: HTTP/2.0 @@ -3682,29 +3134,21 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"d5ad069e-66ca-4f4d-bdc0-b0360163f5d4","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:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a5cd2bdc-54e4-446d-9bbe-161e034b0a99 + - 803f86d3-a012-482f-9dc6-f53e693132cd status: 404 Not Found code: 404 - duration: 16.447698ms + duration: 23.028651ms - id: 74 request: proto: HTTP/1.1 @@ -3721,7 +3165,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 method: GET response: proto: HTTP/2.0 @@ -3729,31 +3173,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2294 + 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-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"}}' + body: '{"server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-nice-antonelli", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "095a963e-def6-4f01-9a42-97c17d44fa49", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:07.092681+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "601", "node_id": "20"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2294" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2282" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 68140e19-c17d-4815-844b-e22ecb8ea843 + - ce0b8367-7109-4fa5-a1c8-6b721218f0b4 status: 200 OK code: 200 - duration: 127.221538ms + duration: 125.230144ms - id: 75 request: proto: HTTP/1.1 @@ -3770,7 +3206,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 method: GET response: proto: HTTP/2.0 @@ -3778,31 +3214,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2294 + content_length: 2328 uncompressed: 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: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"}}' + body: '{"server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-nice-antonelli", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "095a963e-def6-4f01-9a42-97c17d44fa49", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:07.092681+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "601", "node_id": "20"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2294" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2328" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cf15b0cc-3845-4b43-af45-6c1595c73655 + - c81e4b47-e00a-4f96-960f-de9ac27800df status: 200 OK code: 200 - duration: 138.957698ms + duration: 121.138474ms - id: 76 request: proto: HTTP/1.1 @@ -3819,7 +3247,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 method: GET response: proto: HTTP/2.0 @@ -3827,31 +3255,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2325 + content_length: 2313 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-nice-antonelli", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "095a963e-def6-4f01-9a42-97c17d44fa49", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:18.193365+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "601", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2313" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0991dcf6-ccc5-40d5-a2d9-2fc3a9d5915e + - 9b0d23d0-edc0-4ed7-9a81-78b8760e06df status: 200 OK code: 200 - duration: 135.314101ms + duration: 128.445148ms - id: 77 request: proto: HTTP/1.1 @@ -3868,7 +3288,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 method: GET response: proto: HTTP/2.0 @@ -3876,31 +3296,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2325 + 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-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"}}' + body: '{"server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-nice-antonelli", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "095a963e-def6-4f01-9a42-97c17d44fa49", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:18.193365+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "601", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2359" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:06 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ea175dba-d7fa-41f0-97d6-1277bc35a794 + - d3ccdfb5-1a8b-46d3-88be-ffb81be1b1c3 status: 200 OK code: 200 - duration: 122.503172ms + duration: 133.76222ms - id: 78 request: proto: HTTP/1.1 @@ -3917,7 +3329,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3601837c-781a-4f54-bf27-31d74983d926 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/095a963e-def6-4f01-9a42-97c17d44fa49 method: GET response: proto: HTTP/2.0 @@ -3925,31 +3337,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 525 + content_length: 521 uncompressed: false - 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"}}' + body: '{"volume": {"id": "095a963e-def6-4f01-9a42-97c17d44fa49", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "525" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "521" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e8e909ff-3e4f-4223-b13e-e9cc98cbd79e + - 691dc772-fc12-4670-afb2-0e6de2427b77 status: 200 OK code: 200 - duration: 109.947621ms + duration: 94.969974ms - id: 79 request: proto: HTTP/1.1 @@ -3966,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/77d3151d-f486-4b6c-9d50-5352d89dee08/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642/user_data method: GET response: proto: HTTP/2.0 @@ -3976,29 +3380,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 94863dd1-c0b3-4ccd-8383-d2f31527c948 + - 15892b72-dd19-44ae-9d47-748d3501f10b status: 200 OK code: 200 - duration: 100.375844ms + duration: 96.076373ms - id: 80 request: proto: HTTP/1.1 @@ -4015,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/77d3151d-f486-4b6c-9d50-5352d89dee08/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642/private_nics method: GET response: proto: HTTP/2.0 @@ -4025,33 +3421,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:07 GMT + - Wed, 29 Oct 2025 22:54:23 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1d636f57-1f62-42fa-b19c-ab47307e973d + - 0f360f33-c525-4ebe-b6df-236008187875 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 93.967468ms + duration: 102.622774ms - id: 81 request: proto: HTTP/1.1 @@ -4068,7 +3456,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 method: GET response: proto: HTTP/2.0 @@ -4076,31 +3464,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2325 + content_length: 2313 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-nice-antonelli", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "095a963e-def6-4f01-9a42-97c17d44fa49", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:18.193365+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "601", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2313" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - af0a3ce2-8977-44f3-93b0-a541603b424e + - 8ae7056f-b346-42cb-af93-06b9fad23850 status: 200 OK code: 200 - duration: 128.37931ms + duration: 124.669839ms - id: 82 request: proto: HTTP/1.1 @@ -4117,7 +3497,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 method: GET response: proto: HTTP/2.0 @@ -4125,31 +3505,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2325 + content_length: 2313 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-nice-antonelli", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "095a963e-def6-4f01-9a42-97c17d44fa49", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:18.193365+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "601", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2313" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bee43c4e-3f71-4b74-bd15-741c4f0b8edf + - 17201a0d-cf58-4f7c-b6da-30037690302c status: 200 OK code: 200 - duration: 119.845189ms + duration: 116.270774ms - id: 83 request: proto: HTTP/1.1 @@ -4166,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/3601837c-781a-4f54-bf27-31d74983d926 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/095a963e-def6-4f01-9a42-97c17d44fa49 method: GET response: proto: HTTP/2.0 @@ -4174,31 +3546,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 525 + content_length: 521 uncompressed: false - 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"}}' + body: '{"volume": {"id": "095a963e-def6-4f01-9a42-97c17d44fa49", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "525" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "521" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4b9ac97c-ed8a-4313-87b4-4930f8fd2d10 + - 625e23be-9faf-4a47-a6b8-e42746f5e4f7 status: 200 OK code: 200 - duration: 99.716408ms + duration: 113.766411ms - id: 84 request: proto: HTTP/1.1 @@ -4215,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/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642/user_data method: GET response: proto: HTTP/2.0 @@ -4225,29 +3589,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b7a9c698-ea06-4ac4-bb12-14c17c41dc3a + - 34580ca3-dc0f-4d10-9bc3-3dd331bed4f5 status: 200 OK code: 200 - duration: 100.30967ms + duration: 111.741245ms - id: 85 request: proto: HTTP/1.1 @@ -4264,7 +3620,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642/private_nics method: GET response: proto: HTTP/2.0 @@ -4274,33 +3630,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:08 GMT + - Wed, 29 Oct 2025 22:54:24 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 898234a5-3d11-49e8-ac60-059a67656c0e + - 97389f98-2b9d-46a0-8098-7e64f4aea5a2 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 99.204839ms + duration: 110.680201ms - id: 86 request: proto: HTTP/1.1 @@ -4317,7 +3665,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 method: GET response: proto: HTTP/2.0 @@ -4325,31 +3673,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2325 + 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-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"}}' + body: '{"server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-nice-antonelli", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "095a963e-def6-4f01-9a42-97c17d44fa49", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:18.193365+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "601", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2359" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e5b997a1-7f8c-443e-91f9-f5230fdd6779 + - c069fad9-02fb-445f-b157-3344f0911b3c status: 200 OK code: 200 - duration: 174.4105ms + duration: 123.068334ms - id: 87 request: proto: HTTP/1.1 @@ -4366,7 +3706,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 method: GET response: proto: HTTP/2.0 @@ -4374,31 +3714,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2325 + content_length: 2313 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-nice-antonelli", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "095a963e-def6-4f01-9a42-97c17d44fa49", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:18.193365+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "601", "node_id": "20"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2313" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d7af4e9f-d846-465c-88f2-5ccc39589e6b + - 5ecaecc5-9c9c-4d49-9ad5-bf51cb1c0649 status: 200 OK code: 200 - duration: 164.892103ms + duration: 111.938484ms - id: 88 request: proto: HTTP/1.1 @@ -4417,7 +3749,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/77d3151d-f486-4b6c-9d50-5352d89dee08/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642/action method: POST response: proto: HTTP/2.0 @@ -4427,31 +3759,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "f4e57461-9850-47c4-a6f2-39cd1938619e", "description": "server_terminate", "status": "pending", "href_from": "/servers/888503fe-bda3-4ca4-8644-4d54587f6642/action", "href_result": "/servers/888503fe-bda3-4ca4-8644-4d54587f6642", "started_at": "2025-10-29T22:54:24.994325+00:00", "terminated_at": null, "progress": 0, "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:08 GMT + - Wed, 29 Oct 2025 22:54:25 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6005cf5b-cd90-44b8-87c4-0964e0ba5f2a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f4e57461-9850-47c4-a6f2-39cd1938619e Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8c74a504-e1ac-4b49-9225-c4b695affa34 + - c8d88cc1-3806-48fb-bb06-c795f1e78101 status: 202 Accepted code: 202 - duration: 322.962094ms + duration: 273.130606ms - id: 89 request: proto: HTTP/1.1 @@ -4468,7 +3792,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 method: GET response: proto: HTTP/2.0 @@ -4476,31 +3800,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2288 + 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-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"}}' + body: '{"server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-nice-antonelli", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "095a963e-def6-4f01-9a42-97c17d44fa49", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "888503fe-bda3-4ca4-8644-4d54587f6642", "name": "tf-srv-nice-antonelli"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:06.624290+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:06.624290+00:00", "modification_date": "2025-10-29T22:54:24.777523+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": "601", "node_id": "20"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2322" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 76b7b3e3-e695-4aea-b9c7-7d7429505a8e + - 21daf128-02a4-430c-9aab-35aa3a7cc76a status: 200 OK code: 200 - duration: 152.391244ms + duration: 142.680027ms - id: 90 request: proto: HTTP/1.1 @@ -4517,105 +3833,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 - 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-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: - - "2288" - 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: - - ad45ab3a-11dd-4efc-a248-2887ad696893 - status: 200 OK - code: 200 - duration: 151.302549ms - - 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/77d3151d-f486-4b6c-9d50-5352d89dee08 - 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-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: - - "2288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:05: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: - - 1b6c0b30-1be5-4846-b2fb-c03290b8ace1 - status: 200 OK - code: 200 - duration: 147.176899ms - - 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/77d3151d-f486-4b6c-9d50-5352d89dee08 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 method: GET response: proto: HTTP/2.0 @@ -4625,30 +3843,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"77d3151d-f486-4b6c-9d50-5352d89dee08","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "888503fe-bda3-4ca4-8644-4d54587f6642"}' 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bad71d2d-7c3a-467a-b2e2-dd12a460c685 + - 42127dd6-ec38-4622-87d8-465046a41cb9 status: 404 Not Found code: 404 - duration: 44.650125ms - - id: 93 + duration: 41.600419ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4664,7 +3874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3601837c-781a-4f54-bf27-31d74983d926 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/095a963e-def6-4f01-9a42-97c17d44fa49 method: GET response: proto: HTTP/2.0 @@ -4674,30 +3884,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3601837c-781a-4f54-bf27-31d74983d926","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "095a963e-def6-4f01-9a42-97c17d44fa49"}' 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c9ab2060-0060-4ae8-8244-3145f6f31802 + - cf85450b-1302-41f3-b7b6-ded3924327c6 status: 404 Not Found code: 404 - duration: 25.739154ms - - id: 94 + duration: 26.847693ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4713,7 +3915,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3601837c-781a-4f54-bf27-31d74983d926 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/095a963e-def6-4f01-9a42-97c17d44fa49 method: GET response: proto: HTTP/2.0 @@ -4723,30 +3925,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"3601837c-781a-4f54-bf27-31d74983d926","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"095a963e-def6-4f01-9a42-97c17d44fa49","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:05:24 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 851f2355-172d-433a-b586-32d52dc6debb + - f1760c19-1eb5-42ff-96e6-5508925acc96 status: 404 Not Found code: 404 - duration: 29.369462ms - - id: 95 + duration: 17.537393ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4762,7 +3956,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 method: GET response: proto: HTTP/2.0 @@ -4772,26 +3966,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"77d3151d-f486-4b6c-9d50-5352d89dee08","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "888503fe-bda3-4ca4-8644-4d54587f6642"}' 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fb8200a3-285e-41ff-b509-868e4af570e6 + - a8526887-1ef2-4a2d-a644-57a39fc14e50 status: 404 Not Found code: 404 - duration: 47.006292ms + duration: 42.656534ms 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 d23c2e018..4e08f59a1 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 @@ -29,29 +29,21 @@ interactions: trailer: {} content_length: 437 uncompressed: false - 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"}' + body: '{"id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "name":"TestAccServer_PrivateNetworkMissingPNIC", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.092864Z", "updated_at":"2025-10-29T22:53:58.092864Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":0, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "437" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9b745fca-a720-4585-919d-03bc07351049 + - 8316d0b3-d38d-450a-8716-e10b878842ec status: 200 OK code: 200 - duration: 98.764283ms + duration: 80.410714ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +60,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 method: GET response: proto: HTTP/2.0 @@ -78,41 +70,33 @@ interactions: trailer: {} content_length: 437 uncompressed: false - 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"}' + body: '{"id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "name":"TestAccServer_PrivateNetworkMissingPNIC", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.092864Z", "updated_at":"2025-10-29T22:53:58.092864Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":0, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "437" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 30618de3-4096-4400-b562-ba183a5cbb01 + - ece2806c-2ec2-4f17-b8e3-06d81fe289c0 status: 200 OK code: 200 - duration: 26.301773ms + duration: 29.81077ms - id: 2 request: 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-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}' + body: '{"name":"tf-pn-xenodochial-satoshi","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144","default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -127,31 +111,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1095 uncompressed: false - 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"}' + body: '{"id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "name":"tf-pn-xenodochial-satoshi", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d0354818-f3f8-433e-906c-4e8fd32d5578", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"172.18.40.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}, {"id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"fd5f:519c:6d46:ea71::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}], "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1089" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1095" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 658cd0f3-e672-4bc7-8729-819aca950be9 + - bb76f686-5311-4159-aa23-230aa237c728 status: 200 OK code: 200 - duration: 658.583972ms + duration: 644.480063ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/e3fa1df0-5343-4b5b-b803-df025d422fab + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 method: GET response: proto: HTTP/2.0 @@ -176,31 +152,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1095 uncompressed: false - 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"}' + body: '{"id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "name":"tf-pn-xenodochial-satoshi", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d0354818-f3f8-433e-906c-4e8fd32d5578", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"172.18.40.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}, {"id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"fd5f:519c:6d46:ea71::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}], "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1089" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1095" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 15208201-dfc2-4bd2-829b-d971c9febe39 + - e6b54dd5-8f80-4830-9f48-e79c6d618bd6 status: 200 OK code: 200 - duration: 29.401442ms + duration: 22.595259ms - id: 4 request: proto: HTTP/1.1 @@ -213,7 +181,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -225,35 +195,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:58 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 73467257-2849-4e05-833a-8eb0dd5c5d91 + - 20132bf1-448b-4856-a2b2-cab35a8fde21 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 54.245253ms + duration: 53.716299ms - id: 5 request: proto: HTTP/1.1 @@ -266,7 +228,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -280,33 +244,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:53:58 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6706ed03-ddcd-46d6-a7a0-f6f5d5cd9648 + - 1a2b0d76-27e3-402a-96be-ac6e86967ab4 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 66.154917ms + duration: 41.032404ms - id: 6 request: proto: HTTP/1.1 @@ -319,7 +275,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -331,43 +295,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 22271365-c642-48a1-bdaa-3f701b29ff74 + - 5828190f-0804-43a7-b838-c1960de52f95 status: 200 OK code: 200 - duration: 51.081441ms + duration: 43.746799ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 243 + content_length: 240 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-objective-snyder","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,33 +338,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1756 + content_length: 1796 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:53:59.602382+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1756" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1796" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54:00 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 492f6bd7-709c-4188-9313-d07e8dcee34a + - b96d4edd-6f51-4ef7-976b-5179e9153927 status: 201 Created code: 201 - duration: 1.452906031s + duration: 1.061488947s - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1756 + content_length: 1750 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:53:59.602382+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1756" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1750" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 39b6a59f-241a-4023-89d1-068ba3ca4343 + - 44d893e3-826d-4709-a82a-ac5ff7a45eea status: 200 OK code: 200 - duration: 145.596403ms + duration: 146.830859ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -482,31 +422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1756 + content_length: 1750 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:53:59.602382+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1756" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1750" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:54:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f6f6e53f-1ad5-4fc4-b40a-0f24421e2c4e + - 1b53ba3f-477d-4f19-9b8c-5acbfceb8f46 status: 200 OK code: 200 - duration: 124.957253ms + duration: 133.336326ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -533,29 +465,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f303499c-cf78-44e0-a10d-c83f2f9a8893", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:59.746359Z", "updated_at":"2025-10-29T22:53:59.746359Z", "references":[{"id":"cd67b352-1d7f-46c0-bab6-cc9782175eb4", "product_resource_type":"instance_server", "product_resource_id":"263f7377-0fc0-4825-bcc2-f6915828cdd4", "created_at":"2025-10-29T22:53:59.746359Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:07 GMT + - Wed, 29 Oct 2025 22:54:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 56936efe-9db4-4e56-beee-161f995970fc + - d2fb4a84-8811-49a2-9b9b-d1f38db734f9 status: 200 OK code: 200 - duration: 104.780062ms + duration: 107.571048ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +498,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/b8233a74-4468-4118-b43f-d51e99bd5056/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/action method: POST response: proto: HTTP/2.0 @@ -584,31 +508,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "8528c37a-4043-46f5-b7f3-cf52ebecab0a", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/action", "href_result": "/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4", "started_at": "2025-10-29T22:54:00.751212+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54:00 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9e613d13-d809-49b4-9118-788b8e269047 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8528c37a-4043-46f5-b7f3-cf52ebecab0a Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eedfce7c-9f9e-473f-acdc-b61e333a8eaf + - 4b13f5bf-1579-45b5-ba79-f899180d1a8e status: 202 Accepted code: 202 - duration: 267.789695ms + duration: 348.325168ms - id: 12 request: proto: HTTP/1.1 @@ -625,7 +541,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -633,31 +549,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1778 + content_length: 1818 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:00.472272+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1778" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1818" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a00d693f-de7d-472c-8a67-628c6d497dbc + - 20076b18-28a8-4417-b101-b08e4aeda924 status: 200 OK code: 200 - duration: 123.460339ms + duration: 163.286598ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -682,31 +590,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + 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":"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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1951" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c4e06e75-4575-4506-a6b7-e5a5ea730664 + - b14bf413-599c-4af3-bbcd-8d514cc717e3 status: 200 OK code: 200 - duration: 140.941874ms + duration: 148.928553ms - id: 14 request: proto: HTTP/1.1 @@ -723,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/vpc/v2/regions/fr-par/private-networks/e3fa1df0-5343-4b5b-b803-df025d422fab + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 method: GET response: proto: HTTP/2.0 @@ -731,31 +631,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1095 uncompressed: false - 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"}' + body: '{"id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "name":"tf-pn-xenodochial-satoshi", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d0354818-f3f8-433e-906c-4e8fd32d5578", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"172.18.40.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}, {"id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"fd5f:519c:6d46:ea71::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}], "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1089" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1095" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c3595c8c-0181-4ecc-8aa2-a8dd4e793127 + - 9a807220-a6dd-4071-af13-4eb47c96a098 status: 200 OK code: 200 - duration: 20.091663ms + duration: 22.247629ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -780,31 +672,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + 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":"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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1951" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f7df9d94-8be9-4da6-bbce-a433dc9ed725 + - d6d5ef4f-2ce1-46fc-aae7-bcfb8d6a0647 status: 200 OK code: 200 - duration: 147.283572ms + duration: 154.557338ms - id: 16 request: proto: HTTP/1.1 @@ -816,14 +700,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab"}' + body: '{"private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772"}' 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/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics method: POST response: proto: HTTP/2.0 @@ -833,29 +717,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "syncing", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:06.536633+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 55afd2d0-fc74-4ee7-8aa8-10a979e02fd6 + - 2fe5406b-dd6c-4a08-bd48-a1f24d05b00a status: 201 Created code: 201 - duration: 575.642769ms + duration: 1.009764573s - id: 17 request: proto: HTTP/1.1 @@ -872,7 +748,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -882,29 +758,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "syncing", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:06.536633+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 81590585-3105-4f8d-8ada-3ef1f9b71194 + - a1c9b0bf-c493-45d9-a3dd-07ed04fb39dc status: 200 OK code: 200 - duration: 108.51026ms + duration: 131.14436ms - id: 18 request: proto: HTTP/1.1 @@ -921,7 +789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -931,29 +799,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "syncing", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:06.536633+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7483fdc5-4638-4418-bb7e-f3495192d83d + - 4d735ba4-38c3-493f-838c-d3e70a8da289 status: 200 OK code: 200 - duration: 103.385057ms + duration: 102.685958ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +830,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -980,29 +840,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "syncing", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:06.536633+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:24 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab693a81-8910-45e7-8ddb-e11f6f4f5d7a + - 0b946382-adb8-4a4c-bd47-fc6430b7c992 status: 200 OK code: 200 - duration: 102.380788ms + duration: 102.825781ms - id: 20 request: proto: HTTP/1.1 @@ -1019,7 +871,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -1029,29 +881,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "syncing", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:06.536633+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:29 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 431599b4-d812-425e-89b9-63e48fc253bc + - 1d3dee4f-9177-4851-b6bd-5c01cee5a6a5 status: 200 OK code: 200 - duration: 95.029572ms + duration: 91.769679ms - id: 21 request: proto: HTTP/1.1 @@ -1068,7 +912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -1078,29 +922,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "syncing", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:06.536633+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:34 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bc329887-b61f-427f-b8df-13a7309d0c3a + - c4f7b75b-fc1a-49a5-8ae1-09c55a494786 status: 200 OK code: 200 - duration: 106.296608ms + duration: 98.079779ms - id: 22 request: proto: HTTP/1.1 @@ -1117,7 +953,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -1127,29 +963,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "syncing", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:06.536633+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 64f5fa2a-020b-4679-b997-8eca99a9e235 + - 9a84a0ae-7d59-446c-aeb6-e48efecdaf51 status: 200 OK code: 200 - duration: 81.352488ms + duration: 107.301214ms - id: 23 request: proto: HTTP/1.1 @@ -1166,7 +994,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -1176,29 +1004,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "syncing", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:06.536633+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:44 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5da12fb4-2506-41a6-b747-82949e6716bd + - 9d158640-d2a5-40d0-94df-fcd1f9806acc status: 200 OK code: 200 - duration: 85.142627ms + duration: 109.296237ms - id: 24 request: proto: HTTP/1.1 @@ -1215,7 +1035,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -1225,29 +1045,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "syncing", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:06.536633+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:49 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ea6605ef-6e44-4287-a04a-d6d8e57033d1 + - 7c2b1460-263d-446b-ab88-dca496d52a4e status: 200 OK code: 200 - duration: 90.883684ms + duration: 138.595947ms - id: 25 request: proto: HTTP/1.1 @@ -1264,7 +1076,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -1274,29 +1086,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "syncing", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:06.536633+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:54 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b0e14be9-7de9-46a7-bfcb-9c6184f69bd6 + - 0358b57c-f429-47f1-9c05-966601f060d7 status: 200 OK code: 200 - duration: 97.079354ms + duration: 97.147733ms - id: 26 request: proto: HTTP/1.1 @@ -1313,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/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -1323,29 +1127,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "syncing", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:06.536633+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 03bc15a6-162d-45ee-bb77-8d0172b58b35 + - f2c17df0-29ec-4197-9f83-a7ccee3ceae7 status: 200 OK code: 200 - duration: 116.889591ms + duration: 86.774206ms - id: 27 request: proto: HTTP/1.1 @@ -1362,7 +1158,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -1370,31 +1166,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "syncing", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:06.536633+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "473" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0509c2f8-bc9b-49fd-aee3-ddf8781586c0 + - a4fef26f-e486-46ec-ad3d-3a6b8b67d3d5 status: 200 OK code: 200 - duration: 84.402362ms + duration: 118.027881ms - id: 28 request: proto: HTTP/1.1 @@ -1411,7 +1199,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -1421,29 +1209,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 43df240d-0aa6-4dd8-8d33-206ec6e8c72c + - e532dcc4-8cf9-48f0-a024-a531e51dafcf status: 200 OK code: 200 - duration: 104.805498ms + duration: 102.570978ms - id: 29 request: proto: HTTP/1.1 @@ -1460,7 +1240,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -1468,31 +1248,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2370 + 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-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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - - "2370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "475" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fa68233a-fc01-4ff0-9aa4-9ad594fdb3fa + - d2374073-cca4-4df9-ba3c-9a4706a3ef19 status: 200 OK code: 200 - duration: 127.760618ms + duration: 89.0587ms - id: 30 request: proto: HTTP/1.1 @@ -1509,7 +1281,48 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2363 + uncompressed: false + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "2363" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:55:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - a5126bfb-2d35-41b3-a574-7903f8dca2c8 + status: 200 OK + code: 200 + duration: 137.386753ms + - 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/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -1519,30 +1332,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 999213ba-e31b-46dc-80b0-3d208abaf436 + - b8905d51-a0ec-4cd6-b5ee-48c8d9dab17c status: 404 Not Found code: 404 - duration: 26.993412ms - - id: 31 + duration: 29.590905ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1558,7 +1363,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -1568,30 +1373,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f303499c-cf78-44e0-a10d-c83f2f9a8893", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:59.746359Z", "updated_at":"2025-10-29T22:53:59.746359Z", "references":[{"id":"cd67b352-1d7f-46c0-bab6-cc9782175eb4", "product_resource_type":"instance_server", "product_resource_id":"263f7377-0fc0-4825-bcc2-f6915828cdd4", "created_at":"2025-10-29T22:53:59.746359Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:05:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7395c2bb-2f04-4e89-80f1-5f120cf8a489 + - 10991de9-8e24-4f53-be44-e31fc8bd2984 status: 200 OK code: 200 - duration: 79.050659ms - - id: 32 + duration: 93.305762ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1607,7 +1404,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/user_data method: GET response: proto: HTTP/2.0 @@ -1617,30 +1414,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 81c0d92a-36b8-4da6-8c62-d4ebce05913c + - 3273d1d0-3a7f-46b3-90d5-ae5cac99647b status: 200 OK code: 200 - duration: 113.103426ms - - id: 33 + duration: 91.059862ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1656,7 +1445,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics method: GET response: proto: HTTP/2.0 @@ -1666,34 +1455,26 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:05 GMT + - Wed, 29 Oct 2025 22:55:04 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1861769a-ea7c-4907-8e19-9f24295a54c4 + - f8cd4b61-5529-4831-9c86-a85836cf0362 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 99.524206ms - - id: 34 + duration: 112.711142ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1705,11 +1486,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 6e5d9633-6867-40b9-94aa-9bd4d51b8522 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=75de89bb-c6ac-41c1-8d61-627733f30815&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=6e5d9633-6867-40b9-94aa-9bd4d51b8522&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1717,32 +1506,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"945b9373-a69e-4504-8942-525fd4fbc5cd", "address":"fd5f:519c:6d46:ea71:8ad8:b452:4e2e:7145/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:06.786115Z", "updated_at":"2025-10-29T22:54:06.786115Z", "source":{"subnet_id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"535a08d3-1812-41c5-9493-13480cbd4a51", "address":"172.18.40.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:06.621829Z", "updated_at":"2025-10-29T22:54:06.621829Z", "source":{"subnet_id":"d0354818-f3f8-433e-906c-4e8fd32d5578"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1082" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 343b785a-9aa6-442d-98a2-7540be4cec05 + - 31d7ba89-ca50-4bfd-aa3b-a5d7881be2dd status: 200 OK code: 200 - duration: 33.441702ms - - id: 35 + duration: 34.62072ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1758,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/vpc/v2/regions/fr-par/vpcs/cee62ee6-6d0d-4958-a476-d861abd3dd72 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 method: GET response: proto: HTTP/2.0 @@ -1768,30 +1549,22 @@ interactions: trailer: {} content_length: 437 uncompressed: false - 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"}' + body: '{"id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "name":"TestAccServer_PrivateNetworkMissingPNIC", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.092864Z", "updated_at":"2025-10-29T22:53:58.092864Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "437" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 72888366-7b1b-465c-ad2b-b3459bc73cd7 + - 14af221b-95d9-4de8-8240-32b876a9f7b6 status: 200 OK code: 200 - duration: 31.442063ms - - id: 36 + duration: 33.758038ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1807,7 +1580,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/e3fa1df0-5343-4b5b-b803-df025d422fab + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 method: GET response: proto: HTTP/2.0 @@ -1815,32 +1588,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1095 uncompressed: false - 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"}' + body: '{"id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "name":"tf-pn-xenodochial-satoshi", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d0354818-f3f8-433e-906c-4e8fd32d5578", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"172.18.40.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}, {"id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"fd5f:519c:6d46:ea71::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}], "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1089" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1095" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ba54482c-20c6-490f-8cfe-0354983b0402 + - 17ae2437-681e-4fea-9603-99e591169993 status: 200 OK code: 200 - duration: 22.989906ms - - id: 37 + duration: 28.105177ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1856,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/b8233a74-4468-4118-b43f-d51e99bd5056 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -1864,32 +1629,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2370 + content_length: 2363 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2363" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d0921e23-9f50-42dd-b68d-f9749f045185 + - 9de17042-7ad1-4c03-bbf4-de127329a792 status: 200 OK code: 200 - duration: 156.658672ms - - id: 38 + duration: 120.72167ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1905,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/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -1915,30 +1672,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bda3dd65-040c-4011-bcc2-3b914ee26340 + - c3dbeebe-fd35-427e-8c0e-4a053d6af261 status: 404 Not Found code: 404 - duration: 28.817933ms - - id: 39 + duration: 33.756054ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1954,7 +1703,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -1964,30 +1713,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f303499c-cf78-44e0-a10d-c83f2f9a8893", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:59.746359Z", "updated_at":"2025-10-29T22:53:59.746359Z", "references":[{"id":"cd67b352-1d7f-46c0-bab6-cc9782175eb4", "product_resource_type":"instance_server", "product_resource_id":"263f7377-0fc0-4825-bcc2-f6915828cdd4", "created_at":"2025-10-29T22:53:59.746359Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:05:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b8026934-b3b4-4fe1-990b-6874bb7cf821 + - edfa5d39-18e1-4b96-a893-82be089abd5d status: 200 OK code: 200 - duration: 75.424409ms - - id: 40 + duration: 99.668671ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2003,7 +1744,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/user_data method: GET response: proto: HTTP/2.0 @@ -2013,30 +1754,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:06 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c8e395fc-4b15-405f-b6d5-4be21c487f7e + - 79ee45f9-fc77-4357-b0ea-ecdb6ff78035 status: 200 OK code: 200 - duration: 101.466287ms - - id: 41 + duration: 106.205345ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2052,7 +1785,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics method: GET response: proto: HTTP/2.0 @@ -2062,34 +1795,26 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:06 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f7cc7ef4-c2c5-4874-b763-8a5f043e7514 + - 092bcfee-aa4d-4c4d-be55-04fb712d184e X-Total-Count: - "1" status: 200 OK code: 200 - duration: 117.416544ms - - id: 42 + duration: 125.042711ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2101,11 +1826,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 6e5d9633-6867-40b9-94aa-9bd4d51b8522 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=75de89bb-c6ac-41c1-8d61-627733f30815&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=6e5d9633-6867-40b9-94aa-9bd4d51b8522&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2113,32 +1846,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"945b9373-a69e-4504-8942-525fd4fbc5cd", "address":"fd5f:519c:6d46:ea71:8ad8:b452:4e2e:7145/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:06.786115Z", "updated_at":"2025-10-29T22:54:06.786115Z", "source":{"subnet_id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"535a08d3-1812-41c5-9493-13480cbd4a51", "address":"172.18.40.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:06.621829Z", "updated_at":"2025-10-29T22:54:06.621829Z", "source":{"subnet_id":"d0354818-f3f8-433e-906c-4e8fd32d5578"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1082" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:06 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5e0e2656-090a-49d5-83b7-0cb0db42424d + - 75e61d71-e79d-4f03-85b7-dda81a0727bd status: 200 OK code: 200 - duration: 34.499686ms - - id: 43 + duration: 22.702635ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2154,7 +1879,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -2164,30 +1889,22 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:06 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 55c9536c-8af1-4d69-8a99-bb21d620a59c + - 44775d1b-bf9a-4521-b3ee-fec6f1aea4c4 status: 200 OK code: 200 - duration: 88.422541ms - - id: 44 + duration: 102.317895ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2203,7 +1920,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -2211,32 +1928,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2370 + content_length: 2409 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2409" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0b56f590-36e5-4489-94d7-68071488453c + - ae9d34df-c3ee-4217-b502-ab50a10b0b1c status: 200 OK code: 200 - duration: 139.6865ms - - id: 45 + duration: 131.890065ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2248,11 +1957,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 5a567c90-21d3-4f8b-ba3f-93856863a772 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 6e5d9633-6867-40b9-94aa-9bd4d51b8522 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=e3fa1df0-5343-4b5b-b803-df025d422fab&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=75de89bb-c6ac-41c1-8d61-627733f30815&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5a567c90-21d3-4f8b-ba3f-93856863a772&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=6e5d9633-6867-40b9-94aa-9bd4d51b8522&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2260,32 +1979,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"945b9373-a69e-4504-8942-525fd4fbc5cd", "address":"fd5f:519c:6d46:ea71:8ad8:b452:4e2e:7145/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:06.786115Z", "updated_at":"2025-10-29T22:54:06.786115Z", "source":{"subnet_id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"535a08d3-1812-41c5-9493-13480cbd4a51", "address":"172.18.40.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:06.621829Z", "updated_at":"2025-10-29T22:54:06.621829Z", "source":{"subnet_id":"d0354818-f3f8-433e-906c-4e8fd32d5578"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1082" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 527a2df1-2304-4711-913a-ae8d08ed31dd + - e2aea698-93b4-4df7-877f-4f53e43a16ab status: 200 OK code: 200 - duration: 48.066835ms - - id: 46 + duration: 53.989441ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2301,7 +2012,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 method: GET response: proto: HTTP/2.0 @@ -2311,30 +2022,22 @@ interactions: trailer: {} content_length: 437 uncompressed: false - 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"}' + body: '{"id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "name":"TestAccServer_PrivateNetworkMissingPNIC", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.092864Z", "updated_at":"2025-10-29T22:53:58.092864Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "437" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c64865b9-f8d7-40f2-9e3b-049057ba9426 + - 0ced3908-b7bc-4057-b58d-f524e1766e0e status: 200 OK code: 200 - duration: 35.380228ms - - id: 47 + duration: 35.891177ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2350,7 +2053,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/e3fa1df0-5343-4b5b-b803-df025d422fab + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 method: GET response: proto: HTTP/2.0 @@ -2358,32 +2061,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1095 uncompressed: false - 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"}' + body: '{"id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "name":"tf-pn-xenodochial-satoshi", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d0354818-f3f8-433e-906c-4e8fd32d5578", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"172.18.40.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}, {"id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"fd5f:519c:6d46:ea71::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}], "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1089" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1095" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dfd8b8e3-1111-4b87-b8a5-29028de8bbb0 + - a1718938-efe1-4a7f-982c-1f36780dfa84 status: 200 OK code: 200 - duration: 24.516127ms - - id: 48 + duration: 26.247814ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2399,7 +2094,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -2407,32 +2102,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2370 + content_length: 2409 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2409" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a22c40c9-0683-4539-a00a-2e39841ddeb9 + - 1f0cf97a-c8b7-4e6b-be2d-15b6e5ad40ad status: 200 OK code: 200 - duration: 186.425115ms - - id: 49 + duration: 140.72119ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2448,7 +2135,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -2458,30 +2145,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cdafd10a-bc59-448b-9a1b-e15f904e64a6 + - 9f18e3c4-aee3-4ab0-9be0-aa0ede86fe3e status: 404 Not Found code: 404 - duration: 34.984386ms - - id: 50 + duration: 35.015008ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2497,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/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -2507,30 +2186,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f303499c-cf78-44e0-a10d-c83f2f9a8893", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:59.746359Z", "updated_at":"2025-10-29T22:53:59.746359Z", "references":[{"id":"cd67b352-1d7f-46c0-bab6-cc9782175eb4", "product_resource_type":"instance_server", "product_resource_id":"263f7377-0fc0-4825-bcc2-f6915828cdd4", "created_at":"2025-10-29T22:53:59.746359Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:05:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9cd94af5-fe33-44eb-8df6-2003969e04cc + - 70aa4077-75bd-4be2-99cd-dcb18c7b1499 status: 200 OK code: 200 - duration: 92.291145ms - - id: 51 + duration: 83.904092ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2546,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/b8233a74-4468-4118-b43f-d51e99bd5056/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/user_data method: GET response: proto: HTTP/2.0 @@ -2556,30 +2227,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7f90338c-3255-45b7-ae71-e1a036154569 + - 707e9407-0a01-4580-9ea9-5f5acbad8564 status: 200 OK code: 200 - duration: 154.30442ms - - id: 52 + duration: 120.982308ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2595,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/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics method: GET response: proto: HTTP/2.0 @@ -2605,34 +2268,26 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:55:06 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6d84f7fd-fb97-43d1-8303-73ad8c4ba72c + - dd0034fb-eb50-41ed-a0f9-9eb017986e7b X-Total-Count: - "1" status: 200 OK code: 200 - duration: 112.592289ms - - id: 53 + duration: 106.837677ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2644,11 +2299,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 6e5d9633-6867-40b9-94aa-9bd4d51b8522 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=75de89bb-c6ac-41c1-8d61-627733f30815&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=6e5d9633-6867-40b9-94aa-9bd4d51b8522&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2656,32 +2319,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"945b9373-a69e-4504-8942-525fd4fbc5cd", "address":"fd5f:519c:6d46:ea71:8ad8:b452:4e2e:7145/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:06.786115Z", "updated_at":"2025-10-29T22:54:06.786115Z", "source":{"subnet_id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"535a08d3-1812-41c5-9493-13480cbd4a51", "address":"172.18.40.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:06.621829Z", "updated_at":"2025-10-29T22:54:06.621829Z", "source":{"subnet_id":"d0354818-f3f8-433e-906c-4e8fd32d5578"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1082" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8042b3d4-868b-4272-931f-a320ae746882 + - ea339487-fe9e-4593-9ebc-13d36bf6475e status: 200 OK code: 200 - duration: 30.134011ms - - id: 54 + duration: 31.991373ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2697,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/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -2707,30 +2362,22 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 067161e8-54f1-4e7a-b822-9d80e573fbdb + - 92d461d6-9a5d-4ddd-bc1e-16b3a2485303 status: 200 OK code: 200 - duration: 101.626038ms - - id: 55 + duration: 107.049364ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2746,7 +2393,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -2754,32 +2401,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2370 + content_length: 2409 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2409" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 98a26409-86e9-4320-a70e-1987aeefa93b + - 4f8fb396-4919-4104-bb59-11ccf60f9372 status: 200 OK code: 200 - duration: 156.12793ms - - id: 56 + duration: 136.899614ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2791,11 +2430,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 5a567c90-21d3-4f8b-ba3f-93856863a772 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 6e5d9633-6867-40b9-94aa-9bd4d51b8522 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=e3fa1df0-5343-4b5b-b803-df025d422fab&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=75de89bb-c6ac-41c1-8d61-627733f30815&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5a567c90-21d3-4f8b-ba3f-93856863a772&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=6e5d9633-6867-40b9-94aa-9bd4d51b8522&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2803,32 +2452,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"945b9373-a69e-4504-8942-525fd4fbc5cd", "address":"fd5f:519c:6d46:ea71:8ad8:b452:4e2e:7145/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:06.786115Z", "updated_at":"2025-10-29T22:54:06.786115Z", "source":{"subnet_id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"535a08d3-1812-41c5-9493-13480cbd4a51", "address":"172.18.40.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:06.621829Z", "updated_at":"2025-10-29T22:54:06.621829Z", "source":{"subnet_id":"d0354818-f3f8-433e-906c-4e8fd32d5578"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1082" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fb73bb65-0f10-417c-9e02-997732995773 + - ec317534-7eb0-4924-91e9-19c4f0cadbce status: 200 OK code: 200 - duration: 38.099306ms - - id: 57 + duration: 45.550149ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2844,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/vpc/v2/regions/fr-par/vpcs/cee62ee6-6d0d-4958-a476-d861abd3dd72 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 method: GET response: proto: HTTP/2.0 @@ -2854,30 +2495,22 @@ interactions: trailer: {} content_length: 437 uncompressed: false - 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"}' + body: '{"id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "name":"TestAccServer_PrivateNetworkMissingPNIC", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.092864Z", "updated_at":"2025-10-29T22:53:58.092864Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "437" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 932ccf7e-acb7-4db7-b262-c4dd142e17a9 + - d740efc1-ee2f-422c-95cb-2ccb322dc4ff status: 200 OK code: 200 - duration: 27.608286ms - - id: 58 + duration: 33.767857ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2893,7 +2526,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/e3fa1df0-5343-4b5b-b803-df025d422fab + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 method: GET response: proto: HTTP/2.0 @@ -2901,32 +2534,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1095 uncompressed: false - 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"}' + body: '{"id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "name":"tf-pn-xenodochial-satoshi", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d0354818-f3f8-433e-906c-4e8fd32d5578", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"172.18.40.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}, {"id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"fd5f:519c:6d46:ea71::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}], "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1089" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1095" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a5bd5174-525b-4376-8737-1a6557a47291 + - 736201af-96fd-447b-8d83-46c861d6abf4 status: 200 OK code: 200 - duration: 20.414267ms - - id: 59 + duration: 24.417ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2942,7 +2567,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -2950,32 +2575,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2370 + content_length: 2363 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2363" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 04647472-a590-427a-b2a6-8da9d27f44cd + - dd170ec7-c10b-4407-b356-6a291703a064 status: 200 OK code: 200 - duration: 138.395461ms - - id: 60 + duration: 144.503253ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2991,7 +2608,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -3001,30 +2618,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ee83e66c-a117-4bf0-92e3-1ea7df96c7a4 + - 14092f7e-25f1-41cf-9623-1b9578d430c4 status: 404 Not Found code: 404 - duration: 29.05079ms - - id: 61 + duration: 30.574224ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3040,7 +2649,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -3050,30 +2659,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f303499c-cf78-44e0-a10d-c83f2f9a8893", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:59.746359Z", "updated_at":"2025-10-29T22:53:59.746359Z", "references":[{"id":"cd67b352-1d7f-46c0-bab6-cc9782175eb4", "product_resource_type":"instance_server", "product_resource_id":"263f7377-0fc0-4825-bcc2-f6915828cdd4", "created_at":"2025-10-29T22:53:59.746359Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:05:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6bedc6b6-a489-4a23-b4a8-b6b1f0b53c87 + - 8968d3d7-c544-438e-a124-142edde9c70d status: 200 OK code: 200 - duration: 79.00284ms - - id: 62 + duration: 93.755644ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3089,7 +2690,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/user_data method: GET response: proto: HTTP/2.0 @@ -3099,30 +2700,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 89a43679-4236-43ee-903d-627f3b462969 + - 5838d796-11e0-4891-ae4f-65fbc551c341 status: 200 OK code: 200 - duration: 100.255258ms - - id: 63 + duration: 94.885337ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3138,7 +2731,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics method: GET response: proto: HTTP/2.0 @@ -3148,34 +2741,26 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:55:07 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e208f927-44bb-4aad-ab79-cc41048e8887 + - 936dbe71-8ed9-4f2c-ab4a-20cbdc981966 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 108.792937ms - - id: 64 + duration: 94.720989ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3187,11 +2772,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 6e5d9633-6867-40b9-94aa-9bd4d51b8522 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=75de89bb-c6ac-41c1-8d61-627733f30815&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=6e5d9633-6867-40b9-94aa-9bd4d51b8522&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3199,32 +2792,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"945b9373-a69e-4504-8942-525fd4fbc5cd", "address":"fd5f:519c:6d46:ea71:8ad8:b452:4e2e:7145/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:06.786115Z", "updated_at":"2025-10-29T22:54:06.786115Z", "source":{"subnet_id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"535a08d3-1812-41c5-9493-13480cbd4a51", "address":"172.18.40.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:06.621829Z", "updated_at":"2025-10-29T22:54:06.621829Z", "source":{"subnet_id":"d0354818-f3f8-433e-906c-4e8fd32d5578"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1082" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 117fe7bd-3d08-4c83-8aa0-769d9f40c77e + - 688ef4ab-1c38-4803-ad0e-6d7e243e557e status: 200 OK code: 200 - duration: 30.448381ms - - id: 65 + duration: 87.74251ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3240,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/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -3250,30 +2835,22 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 278a7f75-654d-4fd6-9305-fd79bd7b3ff4 + - 112f0cfd-c77c-4704-9a66-6ff69650ef10 status: 200 OK code: 200 - duration: 102.000171ms - - id: 66 + duration: 99.296436ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3289,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/servers/b8233a74-4468-4118-b43f-d51e99bd5056 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -3297,32 +2874,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2370 + content_length: 2409 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2409" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7896c20e-97ac-45e1-835a-2a1fe1ff3ba3 + - e31978a1-18fd-460e-b042-0e96dca9e6bd status: 200 OK code: 200 - duration: 174.635563ms - - id: 67 + duration: 140.135195ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3334,11 +2903,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 5a567c90-21d3-4f8b-ba3f-93856863a772 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 6e5d9633-6867-40b9-94aa-9bd4d51b8522 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=e3fa1df0-5343-4b5b-b803-df025d422fab&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=75de89bb-c6ac-41c1-8d61-627733f30815&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5a567c90-21d3-4f8b-ba3f-93856863a772&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=6e5d9633-6867-40b9-94aa-9bd4d51b8522&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3346,32 +2925,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"945b9373-a69e-4504-8942-525fd4fbc5cd", "address":"fd5f:519c:6d46:ea71:8ad8:b452:4e2e:7145/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:06.786115Z", "updated_at":"2025-10-29T22:54:06.786115Z", "source":{"subnet_id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"535a08d3-1812-41c5-9493-13480cbd4a51", "address":"172.18.40.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:06.621829Z", "updated_at":"2025-10-29T22:54:06.621829Z", "source":{"subnet_id":"d0354818-f3f8-433e-906c-4e8fd32d5578"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1082" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 63019990-cd10-4bca-b70d-f7bbed4e98d7 + - 5ee2d40a-2f65-4fc2-bbc8-c16e95d1fa17 status: 200 OK code: 200 - duration: 54.819176ms - - id: 68 + duration: 47.073769ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3387,7 +2958,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 method: GET response: proto: HTTP/2.0 @@ -3397,30 +2968,22 @@ interactions: trailer: {} content_length: 437 uncompressed: false - 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"}' + body: '{"id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "name":"TestAccServer_PrivateNetworkMissingPNIC", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.092864Z", "updated_at":"2025-10-29T22:53:58.092864Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "437" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0dc6d74d-bb4f-4672-a8f5-ef3766c65ac8 + - 0b24eb4b-8641-486b-b4b9-ce04fd6171ab status: 200 OK code: 200 - duration: 24.501881ms - - id: 69 + duration: 29.819834ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3436,7 +2999,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/e3fa1df0-5343-4b5b-b803-df025d422fab + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 method: GET response: proto: HTTP/2.0 @@ -3444,32 +3007,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1095 uncompressed: false - 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"}' + body: '{"id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "name":"tf-pn-xenodochial-satoshi", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d0354818-f3f8-433e-906c-4e8fd32d5578", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"172.18.40.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}, {"id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"fd5f:519c:6d46:ea71::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}], "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1089" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1095" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f1967ade-f956-4424-aef4-1925b8fed8e0 + - ac130828-a35b-4ad9-b342-c18ec5f6f990 status: 200 OK code: 200 - duration: 20.028303ms - - id: 70 + duration: 22.29897ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3485,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/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -3495,30 +3050,22 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 49a0b3a4-1c7f-4914-aede-d91f82e06579 + - c0447c82-1266-4524-86d5-a995fb74b90f status: 200 OK code: 200 - duration: 115.2741ms - - id: 71 + duration: 101.278302ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3534,7 +3081,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -3542,32 +3089,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2370 + content_length: 2409 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2409" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6687c585-9040-4ca9-a2c8-3590f1e7372f + - 6a16b4ad-1bb2-42f3-a2fe-80f0f3480a7d status: 200 OK code: 200 - duration: 142.483117ms - - id: 72 + duration: 153.664044ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3583,7 +3122,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -3591,32 +3130,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2409 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2409" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9ff6da70-4f15-4428-b6d2-20edec944ed6 - status: 404 Not Found - code: 404 - duration: 33.140368ms - - id: 73 + - 31ae956a-91c1-4588-8c87-4a37d0f24f87 + status: 200 OK + code: 200 + duration: 129.563406ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3632,7 +3163,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -3640,32 +3171,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2370 + 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-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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' headers: Content-Length: - - "2370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0eb9ca2e-13d5-4f44-9eab-c6cbd9efc82f - status: 200 OK - code: 200 - duration: 140.299994ms - - id: 74 + - 578f62c8-ee6a-4683-89e2-a4c429f2870d + status: 404 Not Found + code: 404 + duration: 34.631491ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3677,11 +3200,21 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + private_network_id: + - 5a567c90-21d3-4f8b-ba3f-93856863a772 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 6e5d9633-6867-40b9-94aa-9bd4d51b8522 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=e3fa1df0-5343-4b5b-b803-df025d422fab&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=75de89bb-c6ac-41c1-8d61-627733f30815&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5a567c90-21d3-4f8b-ba3f-93856863a772&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=6e5d9633-6867-40b9-94aa-9bd4d51b8522&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3689,32 +3222,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"945b9373-a69e-4504-8942-525fd4fbc5cd", "address":"fd5f:519c:6d46:ea71:8ad8:b452:4e2e:7145/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:06.786115Z", "updated_at":"2025-10-29T22:54:06.786115Z", "source":{"subnet_id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"535a08d3-1812-41c5-9493-13480cbd4a51", "address":"172.18.40.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:06.621829Z", "updated_at":"2025-10-29T22:54:06.621829Z", "source":{"subnet_id":"d0354818-f3f8-433e-906c-4e8fd32d5578"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1082" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8f51a213-18ef-4acf-9227-0bb03666c29a + - b08a7b30-65f4-439c-b1a7-bfd9d161a1f7 status: 200 OK code: 200 - duration: 65.376972ms - - id: 75 + duration: 46.921434ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3730,7 +3255,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -3740,30 +3265,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f303499c-cf78-44e0-a10d-c83f2f9a8893", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:59.746359Z", "updated_at":"2025-10-29T22:53:59.746359Z", "references":[{"id":"cd67b352-1d7f-46c0-bab6-cc9782175eb4", "product_resource_type":"instance_server", "product_resource_id":"263f7377-0fc0-4825-bcc2-f6915828cdd4", "created_at":"2025-10-29T22:53:59.746359Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:05:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 07842424-b645-4728-8a5f-e23701180bdb + - 089b74bd-f358-4630-b83c-55441aa182bc status: 200 OK code: 200 - duration: 89.445781ms - - id: 76 + duration: 89.528169ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3779,7 +3296,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/user_data method: GET response: proto: HTTP/2.0 @@ -3789,30 +3306,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ac1dacb7-3ece-4f35-903c-7eb323f4b38d + - 26fc7632-cf77-4287-82b1-3b99dac4afc3 status: 200 OK code: 200 - duration: 132.089379ms - - id: 77 + duration: 107.59822ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -3828,7 +3337,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics method: GET response: proto: HTTP/2.0 @@ -3838,34 +3347,26 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:10 GMT + - Wed, 29 Oct 2025 22:55:08 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 786a7b5c-3601-4ab8-a38e-cf09cdd3f909 + - 32901058-436f-45e4-818d-4eb54b925ce5 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 119.932966ms - - id: 78 + duration: 100.50189ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3877,11 +3378,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 6e5d9633-6867-40b9-94aa-9bd4d51b8522 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=75de89bb-c6ac-41c1-8d61-627733f30815&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=6e5d9633-6867-40b9-94aa-9bd4d51b8522&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3889,32 +3398,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1076 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"945b9373-a69e-4504-8942-525fd4fbc5cd", "address":"fd5f:519c:6d46:ea71:8ad8:b452:4e2e:7145/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:54:06.786115Z", "updated_at":"2025-10-29T22:54:06.786115Z", "source":{"subnet_id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"535a08d3-1812-41c5-9493-13480cbd4a51", "address":"172.18.40.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:54:06.621829Z", "updated_at":"2025-10-29T22:54:06.621829Z", "source":{"subnet_id":"d0354818-f3f8-433e-906c-4e8fd32d5578"}, "resource":{"type":"instance_private_nic", "id":"6e5d9633-6867-40b9-94aa-9bd4d51b8522", "mac_address":"02:00:00:1A:58:B8", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1082" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d130b56f-453b-4981-b8ac-78a2880f9788 + - a52b1f9a-b5c2-4dc8-bb74-119fc7eb7c01 status: 200 OK code: 200 - duration: 27.949145ms - - id: 79 + duration: 32.185908ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -3930,7 +3431,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -3940,30 +3441,22 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:1a:58:b8", "state": "available", "creation_date": "2025-10-29T22:54:06.307289+00:00", "modification_date": "2025-10-29T22:54:59.965526+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["535a08d3-1812-41c5-9493-13480cbd4a51", "945b9373-a69e-4504-8942-525fd4fbc5cd"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1ec92b1c-85e2-45a1-bbc3-129f3e079e44 + - 8a2496aa-0ee6-486b-8b0a-52c753103309 status: 200 OK code: 200 - duration: 146.12109ms - - id: 80 + duration: 95.062078ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -3979,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/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: DELETE response: proto: HTTP/2.0 @@ -3991,26 +3484,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1a754b31-4a64-4c57-8122-0d4939bdd5e8 + - e3e87b6c-e4c7-4fa5-93d8-cbadb33feb6a status: 204 No Content code: 204 - duration: 417.688121ms - - id: 81 + duration: 410.181136ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4026,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/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 method: GET response: proto: HTTP/2.0 @@ -4036,30 +3521,22 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"75de89bb-c6ac-41c1-8d61-627733f30815","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_private_nic", "resource_id": "6e5d9633-6867-40b9-94aa-9bd4d51b8522"}' headers: Content-Length: - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 84674810-c9b8-4cd0-ac71-63bf5a77c506 + - 881f21ef-b904-4a4f-8b06-385200af6bb9 status: 404 Not Found code: 404 - duration: 91.15143ms - - id: 82 + duration: 109.92951ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4075,7 +3552,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 method: GET response: proto: HTTP/2.0 @@ -4085,30 +3562,22 @@ interactions: trailer: {} content_length: 437 uncompressed: false - 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"}' + body: '{"id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "name":"TestAccServer_PrivateNetworkMissingPNIC", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.092864Z", "updated_at":"2025-10-29T22:53:58.092864Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "437" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8b4bbe89-3d91-40ce-a5f4-849f0ea6f978 + - 99a9de2e-dd9a-4358-8581-e65846c53597 status: 200 OK code: 200 - duration: 28.968116ms - - id: 83 + duration: 28.452316ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4124,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/e3fa1df0-5343-4b5b-b803-df025d422fab + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 method: GET response: proto: HTTP/2.0 @@ -4132,32 +3601,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1095 uncompressed: false - 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"}' + body: '{"id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "name":"tf-pn-xenodochial-satoshi", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d0354818-f3f8-433e-906c-4e8fd32d5578", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"172.18.40.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}, {"id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"fd5f:519c:6d46:ea71::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}], "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1089" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1095" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 99f0c2cb-06af-49f7-9441-3e39772e94d6 + - b2b1db04-420c-48b6-9246-a171101961e3 status: 200 OK code: 200 - duration: 26.760025ms - - id: 84 + duration: 35.345446ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4173,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/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -4181,32 +3642,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + content_length: 1905 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1905" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e7f92c9d-bb25-4976-83b7-79e0d4b15956 + - 4878034f-2061-4abd-ab0e-2e49f0200691 status: 200 OK code: 200 - duration: 163.4277ms - - id: 85 + duration: 171.649589ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4222,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/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -4232,30 +3685,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a41ffe91-23bf-4f55-bba9-6bc960b2229c + - 7d12f504-34c4-44a3-84dc-22878644a558 status: 404 Not Found code: 404 - duration: 23.33818ms - - id: 86 + duration: 28.703426ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4271,7 +3716,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -4281,30 +3726,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f303499c-cf78-44e0-a10d-c83f2f9a8893", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:59.746359Z", "updated_at":"2025-10-29T22:53:59.746359Z", "references":[{"id":"cd67b352-1d7f-46c0-bab6-cc9782175eb4", "product_resource_type":"instance_server", "product_resource_id":"263f7377-0fc0-4825-bcc2-f6915828cdd4", "created_at":"2025-10-29T22:53:59.746359Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:05:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b8d9d1c1-7940-403d-88da-abe748233d6c + - 5ac8ef5d-e955-4f6a-8c04-55d1e6df7d64 status: 200 OK code: 200 - duration: 98.143331ms - - id: 87 + duration: 87.610123ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4320,7 +3757,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/user_data method: GET response: proto: HTTP/2.0 @@ -4330,30 +3767,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c73a91b6-7f09-496c-895c-3adcac1bbde5 + - f9062248-c2a8-41f6-9d0c-ae7d71626a61 status: 200 OK code: 200 - duration: 155.601796ms - - id: 88 + duration: 79.316724ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4369,7 +3798,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics method: GET response: proto: HTTP/2.0 @@ -4379,34 +3808,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:11 GMT + - Wed, 29 Oct 2025 22:55:10 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0439e016-5c96-473d-aaaf-7dc6ddf42837 + - b55f8cf7-82a5-4519-b7e3-e6cc53b00641 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 124.275819ms - - id: 89 + duration: 107.782736ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4422,7 +3843,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 method: GET response: proto: HTTP/2.0 @@ -4432,30 +3853,22 @@ interactions: trailer: {} content_length: 437 uncompressed: false - 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"}' + body: '{"id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "name":"TestAccServer_PrivateNetworkMissingPNIC", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.092864Z", "updated_at":"2025-10-29T22:53:58.092864Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "437" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7fcd00f6-37a4-44fd-aceb-c2813700276e + - 2be23ae0-6943-4861-b116-09d34c8cabc2 status: 200 OK code: 200 - duration: 43.845552ms - - id: 90 + duration: 27.399387ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4471,7 +3884,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/e3fa1df0-5343-4b5b-b803-df025d422fab + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 method: GET response: proto: HTTP/2.0 @@ -4479,32 +3892,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1095 uncompressed: false - 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"}' + body: '{"id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "name":"tf-pn-xenodochial-satoshi", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d0354818-f3f8-433e-906c-4e8fd32d5578", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"172.18.40.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}, {"id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"fd5f:519c:6d46:ea71::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}], "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1089" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1095" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 33a3f6dc-531f-4fee-b61e-c3dbcc4ab0cf + - fc39f481-1191-4001-b484-b18e2ffe770b status: 200 OK code: 200 - duration: 25.529589ms - - id: 91 + duration: 29.415318ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4520,7 +3925,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -4528,32 +3933,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + 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":"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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1951" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0acb714a-a61f-4282-885e-5892746bb1dd + - 6a3c3ed4-3326-404f-b376-23b290f94dcb status: 200 OK code: 200 - duration: 130.31298ms - - id: 92 + duration: 149.978202ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4569,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/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -4579,30 +3976,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e3bde9e1-3bf6-4696-b1a8-ddcc8c3c03e0 + - 0683e6a2-4826-414f-ae01-e843f17de9e1 status: 404 Not Found code: 404 - duration: 26.994145ms - - id: 93 + duration: 27.68428ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4618,7 +4007,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -4628,30 +4017,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f303499c-cf78-44e0-a10d-c83f2f9a8893", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:59.746359Z", "updated_at":"2025-10-29T22:53:59.746359Z", "references":[{"id":"cd67b352-1d7f-46c0-bab6-cc9782175eb4", "product_resource_type":"instance_server", "product_resource_id":"263f7377-0fc0-4825-bcc2-f6915828cdd4", "created_at":"2025-10-29T22:53:59.746359Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:05:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 125d1d62-cfea-4262-a532-9175233c57ef + - f80d13e0-906e-496d-adab-1ca7a47b0d4b status: 200 OK code: 200 - duration: 84.559452ms - - id: 94 + duration: 81.805108ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4667,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/b8233a74-4468-4118-b43f-d51e99bd5056/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/user_data method: GET response: proto: HTTP/2.0 @@ -4677,30 +4058,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8de8ebbe-1841-46ec-a61c-7874d9ba516c + - 09c06666-0502-4e3c-9521-aa1cbda3e4a8 status: 200 OK code: 200 - duration: 98.535407ms - - id: 95 + duration: 81.322595ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4716,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/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics method: GET response: proto: HTTP/2.0 @@ -4726,34 +4099,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:12 GMT + - Wed, 29 Oct 2025 22:55:11 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bb210035-0c0b-481c-8474-45ed2369dce3 + - 810c60b3-17c7-4ad6-8ae8-ebe1dc0c5f95 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 97.999903ms - - id: 96 + duration: 85.852016ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -4769,7 +4134,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -4777,32 +4142,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + 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":"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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1951" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b30c682f-ec70-4b34-ab85-625c2dbfe739 + - b63fb3df-f31f-4df2-b9ae-2272b73245a1 status: 200 OK code: 200 - duration: 166.138034ms - - id: 97 + duration: 366.154467ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4818,7 +4175,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics method: GET response: proto: HTTP/2.0 @@ -4828,34 +4185,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:12 GMT + - Wed, 29 Oct 2025 22:55:12 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - da8a4635-2aef-4582-b42b-7287e9c93a76 + - 6da94c3f-4a3d-4b64-9971-497bd5c1e241 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 86.24915ms - - id: 98 + duration: 92.974505ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -4871,7 +4220,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -4879,32 +4228,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + 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":"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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1951" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f9e08235-64d5-446a-9da0-86fa145cd0de + - f0674d95-0a8e-49b5-857d-b2b97c3dc773 status: 200 OK code: 200 - duration: 147.656402ms - - id: 99 + duration: 135.336121ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -4915,14 +4256,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab"}' + body: '{"private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772"}' 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/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics method: POST response: proto: HTTP/2.0 @@ -4932,30 +4273,22 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "60269a0d-6487-4731-a46e-c204572aaf0b", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:17:d7:5a", "state": "syncing", "creation_date": "2025-10-29T22:55:12.180025+00:00", "modification_date": "2025-10-29T22:55:12.382843+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["1ce784b9-2e28-4f89-b646-6fc2c5dcbe3d", "626e32ad-2a52-4c2e-b274-a71e1770f219"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 39fe8c14-542e-448a-b766-5991d075e1ed + - 643e7d68-42c6-4fb2-a4bb-ba199981de08 status: 201 Created code: 201 - duration: 569.990132ms - - id: 100 + duration: 666.623302ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -4971,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/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/b4e1dc9b-98a9-4692-84fe-5a5aec652fe6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/60269a0d-6487-4731-a46e-c204572aaf0b method: GET response: proto: HTTP/2.0 @@ -4981,30 +4314,22 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "60269a0d-6487-4731-a46e-c204572aaf0b", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:17:d7:5a", "state": "syncing", "creation_date": "2025-10-29T22:55:12.180025+00:00", "modification_date": "2025-10-29T22:55:12.382843+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["1ce784b9-2e28-4f89-b646-6fc2c5dcbe3d", "626e32ad-2a52-4c2e-b274-a71e1770f219"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2d8e5957-307d-4d10-8f02-0b0ea2359f44 + - abfb464c-12da-44ca-b1ba-d63656c96864 status: 200 OK code: 200 - duration: 88.949323ms - - id: 101 + duration: 105.473488ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5020,7 +4345,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b4e1dc9b-98a9-4692-84fe-5a5aec652fe6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/60269a0d-6487-4731-a46e-c204572aaf0b method: GET response: proto: HTTP/2.0 @@ -5030,30 +4355,22 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "60269a0d-6487-4731-a46e-c204572aaf0b", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:17:d7:5a", "state": "available", "creation_date": "2025-10-29T22:55:12.180025+00:00", "modification_date": "2025-10-29T22:55:13.355221+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["1ce784b9-2e28-4f89-b646-6fc2c5dcbe3d", "626e32ad-2a52-4c2e-b274-a71e1770f219"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:18 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ed6f8c4e-509c-4d1f-9e02-efc35b613a4b + - cf53f411-90ea-40ee-b64b-c8b8f8e26b39 status: 200 OK code: 200 - duration: 97.349868ms - - id: 102 + duration: 88.716303ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5069,7 +4386,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b4e1dc9b-98a9-4692-84fe-5a5aec652fe6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/60269a0d-6487-4731-a46e-c204572aaf0b method: GET response: proto: HTTP/2.0 @@ -5079,30 +4396,22 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "60269a0d-6487-4731-a46e-c204572aaf0b", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:17:d7:5a", "state": "available", "creation_date": "2025-10-29T22:55:12.180025+00:00", "modification_date": "2025-10-29T22:55:13.355221+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["1ce784b9-2e28-4f89-b646-6fc2c5dcbe3d", "626e32ad-2a52-4c2e-b274-a71e1770f219"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ba1487dc-57b9-47e6-bfdd-2f11ca108b83 + - 4ffc2687-c923-4d97-bd0b-05ff4b302c28 status: 200 OK code: 200 - duration: 128.140944ms - - id: 103 + duration: 106.234402ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5118,7 +4427,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -5126,32 +4435,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2370 + content_length: 2409 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "60269a0d-6487-4731-a46e-c204572aaf0b", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:17:d7:5a", "state": "available", "creation_date": "2025-10-29T22:55:12.180025+00:00", "modification_date": "2025-10-29T22:55:13.355221+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["1ce784b9-2e28-4f89-b646-6fc2c5dcbe3d", "626e32ad-2a52-4c2e-b274-a71e1770f219"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2409" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1895aab4-f28e-4682-aec5-28eaab81e49e + - 48fc2e65-306b-4edc-8635-b1bbbb32d64c status: 200 OK code: 200 - duration: 145.904012ms - - id: 104 + duration: 141.610999ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5167,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/b8233a74-4468-4118-b43f-d51e99bd5056 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -5175,32 +4476,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2370 + content_length: 2363 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "60269a0d-6487-4731-a46e-c204572aaf0b", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:17:d7:5a", "state": "available", "creation_date": "2025-10-29T22:55:12.180025+00:00", "modification_date": "2025-10-29T22:55:13.355221+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["1ce784b9-2e28-4f89-b646-6fc2c5dcbe3d", "626e32ad-2a52-4c2e-b274-a71e1770f219"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2363" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8afb90b8-807f-4615-babc-05e8205fb0af + - f9d6dcca-23ed-429b-84ad-c9e642b0c34e status: 200 OK code: 200 - duration: 168.844818ms - - id: 105 + duration: 162.120863ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5216,7 +4509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -5226,30 +4519,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6701a4f9-fdab-403c-9cf3-bb42b00b8568 + - bbb44d49-9a6c-4518-bcf0-02c76ea5eca2 status: 404 Not Found code: 404 - duration: 24.51101ms - - id: 106 + duration: 26.644756ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5265,7 +4550,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -5275,30 +4560,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f303499c-cf78-44e0-a10d-c83f2f9a8893", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:59.746359Z", "updated_at":"2025-10-29T22:53:59.746359Z", "references":[{"id":"cd67b352-1d7f-46c0-bab6-cc9782175eb4", "product_resource_type":"instance_server", "product_resource_id":"263f7377-0fc0-4825-bcc2-f6915828cdd4", "created_at":"2025-10-29T22:53:59.746359Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:05:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b981aadf-6af3-42d5-9da1-10349ad0a260 + - 6ba27ba3-4e83-4112-9539-d2b3f76c23bf status: 200 OK code: 200 - duration: 81.978687ms - - id: 107 + duration: 91.199156ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5314,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/b8233a74-4468-4118-b43f-d51e99bd5056/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/user_data method: GET response: proto: HTTP/2.0 @@ -5324,30 +4601,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 254ce709-8e44-435f-ae2c-322999b35ea8 + - 549f1ef1-6677-434a-8732-d943e5c4f7d8 status: 200 OK code: 200 - duration: 117.281994ms - - id: 108 + duration: 86.242327ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5363,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/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics method: GET response: proto: HTTP/2.0 @@ -5373,34 +4642,26 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "60269a0d-6487-4731-a46e-c204572aaf0b", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:17:d7:5a", "state": "available", "creation_date": "2025-10-29T22:55:12.180025+00:00", "modification_date": "2025-10-29T22:55:13.355221+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["1ce784b9-2e28-4f89-b646-6fc2c5dcbe3d", "626e32ad-2a52-4c2e-b274-a71e1770f219"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:55:18 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - be3783f6-a2b2-41d6-b47a-bb75a2ea9e60 + - f14a2b28-8f9a-4f71-b32c-0f7c7c585ebf X-Total-Count: - "1" status: 200 OK code: 200 - duration: 119.18418ms - - id: 109 + duration: 101.486023ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5412,11 +4673,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 60269a0d-6487-4731-a46e-c204572aaf0b + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=b4e1dc9b-98a9-4692-84fe-5a5aec652fe6&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=60269a0d-6487-4731-a46e-c204572aaf0b&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5424,32 +4693,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1081 + content_length: 1074 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"626e32ad-2a52-4c2e-b274-a71e1770f219", "address":"fd5f:519c:6d46:ea71:f0e:8387:c6a:83b4/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:55:12.654510Z", "updated_at":"2025-10-29T22:55:12.654510Z", "source":{"subnet_id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511"}, "resource":{"type":"instance_private_nic", "id":"60269a0d-6487-4731-a46e-c204572aaf0b", "mac_address":"02:00:00:17:D7:5A", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"1ce784b9-2e28-4f89-b646-6fc2c5dcbe3d", "address":"172.18.40.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:55:12.491892Z", "updated_at":"2025-10-29T22:55:12.491892Z", "source":{"subnet_id":"d0354818-f3f8-433e-906c-4e8fd32d5578"}, "resource":{"type":"instance_private_nic", "id":"60269a0d-6487-4731-a46e-c204572aaf0b", "mac_address":"02:00:00:17:D7:5A", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1081" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1074" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a5737aa1-50df-48af-a29b-fbdea5e9c6d9 + - 569d5849-3167-4aa4-b96c-067e0c24baef status: 200 OK code: 200 - duration: 29.866121ms - - id: 110 + duration: 22.149921ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5465,7 +4726,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 method: GET response: proto: HTTP/2.0 @@ -5475,30 +4736,22 @@ interactions: trailer: {} content_length: 437 uncompressed: false - 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"}' + body: '{"id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "name":"TestAccServer_PrivateNetworkMissingPNIC", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.092864Z", "updated_at":"2025-10-29T22:53:58.092864Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "437" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b3f21ac3-be10-4414-b481-8117c5e7e036 + - 96992069-004c-4fe1-8604-c38156964934 status: 200 OK code: 200 - duration: 25.559446ms - - id: 111 + duration: 25.439363ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5514,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/private-networks/e3fa1df0-5343-4b5b-b803-df025d422fab + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 method: GET response: proto: HTTP/2.0 @@ -5522,32 +4775,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1095 uncompressed: false - 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"}' + body: '{"id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "name":"tf-pn-xenodochial-satoshi", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d0354818-f3f8-433e-906c-4e8fd32d5578", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"172.18.40.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}, {"id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511", "created_at":"2025-10-29T22:53:58.211612Z", "updated_at":"2025-10-29T22:53:58.211612Z", "subnet":"fd5f:519c:6d46:ea71::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"5a567c90-21d3-4f8b-ba3f-93856863a772", "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144"}], "vpc_id":"e8fc4761-bea6-4677-848a-0c960cd1e144", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1089" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1095" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 53a92c3d-066e-4108-a39d-b7f3984531a9 + - 94ebc93d-fb7e-4019-98eb-327015044265 status: 200 OK code: 200 - duration: 29.863396ms - - id: 112 + duration: 26.732681ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5563,7 +4808,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -5571,32 +4816,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2370 + content_length: 2409 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "60269a0d-6487-4731-a46e-c204572aaf0b", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:17:d7:5a", "state": "available", "creation_date": "2025-10-29T22:55:12.180025+00:00", "modification_date": "2025-10-29T22:55:13.355221+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["1ce784b9-2e28-4f89-b646-6fc2c5dcbe3d", "626e32ad-2a52-4c2e-b274-a71e1770f219"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2409" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fb8f80a4-71f8-4f36-bbd9-b1a97c4b1df4 + - 9ea1c595-4ad1-4116-8746-939d27853e33 status: 200 OK code: 200 - duration: 137.561029ms - - id: 113 + duration: 140.332959ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -5612,7 +4849,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -5622,30 +4859,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b3eb1612-22d3-40d5-a357-cabf097fe30d + - ad2a80b6-f63d-4aa0-9b0f-dc86de7c68c2 status: 404 Not Found code: 404 - duration: 28.917122ms - - id: 114 + duration: 39.346861ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5661,7 +4890,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -5671,30 +4900,22 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"f303499c-cf78-44e0-a10d-c83f2f9a8893", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:59.746359Z", "updated_at":"2025-10-29T22:53:59.746359Z", "references":[{"id":"cd67b352-1d7f-46c0-bab6-cc9782175eb4", "product_resource_type":"instance_server", "product_resource_id":"263f7377-0fc0-4825-bcc2-f6915828cdd4", "created_at":"2025-10-29T22:53:59.746359Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:05:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4b80a33c-42f9-46c2-ab61-2da9fc05a274 + - 7c3f662e-5e11-4cc6-9fec-f09c0b66f4e5 status: 200 OK code: 200 - duration: 74.067824ms - - id: 115 + duration: 87.74643ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -5710,7 +4931,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/user_data method: GET response: proto: HTTP/2.0 @@ -5720,30 +4941,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5f113a18-b074-49e9-ac3b-96fd0ade01d3 + - 05abf55a-5ef3-4568-a462-d69028f09fab status: 200 OK code: 200 - duration: 105.556007ms - - id: 116 + duration: 89.430429ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -5759,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/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics method: GET response: proto: HTTP/2.0 @@ -5769,34 +4982,26 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "60269a0d-6487-4731-a46e-c204572aaf0b", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:17:d7:5a", "state": "available", "creation_date": "2025-10-29T22:55:12.180025+00:00", "modification_date": "2025-10-29T22:55:13.355221+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["1ce784b9-2e28-4f89-b646-6fc2c5dcbe3d", "626e32ad-2a52-4c2e-b274-a71e1770f219"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:55:19 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2d0ac75c-f6b7-4fdd-b71d-48d8de1fc57d + - ab693d36-995e-4edd-9808-795e12d1f9d4 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 95.608364ms - - id: 117 + duration: 99.267174ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -5808,11 +5013,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 60269a0d-6487-4731-a46e-c204572aaf0b + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=b4e1dc9b-98a9-4692-84fe-5a5aec652fe6&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=60269a0d-6487-4731-a46e-c204572aaf0b&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5820,32 +5033,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1081 + content_length: 1074 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"626e32ad-2a52-4c2e-b274-a71e1770f219", "address":"fd5f:519c:6d46:ea71:f0e:8387:c6a:83b4/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:55:12.654510Z", "updated_at":"2025-10-29T22:55:12.654510Z", "source":{"subnet_id":"43676705-a0ed-4f55-a5ff-7d7e78ba0511"}, "resource":{"type":"instance_private_nic", "id":"60269a0d-6487-4731-a46e-c204572aaf0b", "mac_address":"02:00:00:17:D7:5A", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"1ce784b9-2e28-4f89-b646-6fc2c5dcbe3d", "address":"172.18.40.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:55:12.491892Z", "updated_at":"2025-10-29T22:55:12.491892Z", "source":{"subnet_id":"d0354818-f3f8-433e-906c-4e8fd32d5578"}, "resource":{"type":"instance_private_nic", "id":"60269a0d-6487-4731-a46e-c204572aaf0b", "mac_address":"02:00:00:17:D7:5A", "name":"tf-srv-objective-snyder"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1081" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1074" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5829c2da-0878-4a17-b52d-51dea30d7402 + - 22b340ce-fb27-49a0-a894-3b848e6d1843 status: 200 OK code: 200 - duration: 23.443478ms - - id: 118 + duration: 33.07411ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -5861,7 +5066,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics method: GET response: proto: HTTP/2.0 @@ -5871,34 +5076,26 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "60269a0d-6487-4731-a46e-c204572aaf0b", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:17:d7:5a", "state": "available", "creation_date": "2025-10-29T22:55:12.180025+00:00", "modification_date": "2025-10-29T22:55:13.355221+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["1ce784b9-2e28-4f89-b646-6fc2c5dcbe3d", "626e32ad-2a52-4c2e-b274-a71e1770f219"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:55:20 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 96dcaf83-ede8-4ded-abe7-9895791e955b + - 054d264a-2d2e-4f1d-b208-b69e35061723 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 101.674699ms - - id: 119 + duration: 105.165304ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -5914,7 +5111,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics/b4e1dc9b-98a9-4692-84fe-5a5aec652fe6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/60269a0d-6487-4731-a46e-c204572aaf0b method: GET response: proto: HTTP/2.0 @@ -5924,30 +5121,22 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "60269a0d-6487-4731-a46e-c204572aaf0b", "private_network_id": "5a567c90-21d3-4f8b-ba3f-93856863a772", "server_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "mac_address": "02:00:00:17:d7:5a", "state": "available", "creation_date": "2025-10-29T22:55:12.180025+00:00", "modification_date": "2025-10-29T22:55:13.355221+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["1ce784b9-2e28-4f89-b646-6fc2c5dcbe3d", "626e32ad-2a52-4c2e-b274-a71e1770f219"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 94b494b7-b529-4353-93c6-bf465ff35a5d + - b9220ae4-9b03-4941-bf7c-14c53264268d status: 200 OK code: 200 - duration: 99.070727ms - - id: 120 + duration: 105.567777ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -5963,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/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/b4e1dc9b-98a9-4692-84fe-5a5aec652fe6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/60269a0d-6487-4731-a46e-c204572aaf0b method: DELETE response: proto: HTTP/2.0 @@ -5975,26 +5164,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:21 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 107eb061-5895-4053-9258-495d400febe2 + - de5a91ad-9666-4d35-a916-12948b4df6e8 status: 204 No Content code: 204 - duration: 385.262715ms - - id: 121 + duration: 450.483546ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -6010,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/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/b4e1dc9b-98a9-4692-84fe-5a5aec652fe6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/60269a0d-6487-4731-a46e-c204572aaf0b method: GET response: proto: HTTP/2.0 @@ -6020,30 +5201,22 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_private_nic", "resource_id": "60269a0d-6487-4731-a46e-c204572aaf0b"}' headers: Content-Length: - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:21 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9ae57121-955a-45b0-893d-189813dbe57e + - 45e0474f-c775-4686-9d03-5b9fa7ea58d4 status: 404 Not Found code: 404 - duration: 104.903033ms - - id: 122 + duration: 103.005726ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -6059,7 +5232,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics method: GET response: proto: HTTP/2.0 @@ -6069,34 +5242,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:21 GMT + - Wed, 29 Oct 2025 22:55:20 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5015ff13-ea2b-4d30-b0b4-1af6d6c28a46 + - de64b4eb-24b5-44cb-bc2e-b34a44706701 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 109.377293ms - - id: 123 + duration: 104.295247ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -6112,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/b8233a74-4468-4118-b43f-d51e99bd5056 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -6120,32 +5285,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + 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":"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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1951" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:21 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 60329f3d-796b-41cb-a10e-e8630fb596e2 + - 538b9f69-2ce0-4581-ba4b-0e874e74092b status: 200 OK code: 200 - duration: 155.469179ms - - id: 124 + duration: 149.042036ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -6161,7 +5318,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -6169,32 +5326,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + content_length: 1905 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:54:03.054329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1905" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:22 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 262959b2-359a-48a0-95c9-12bd2ae8fa2d + - 35c25463-9dea-4f3f-814c-579da06e0afd status: 200 OK code: 200 - duration: 457.911068ms - - id: 125 + duration: 148.17291ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -6212,7 +5361,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/b8233a74-4468-4118-b43f-d51e99bd5056/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/action method: POST response: proto: HTTP/2.0 @@ -6222,32 +5371,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "0fa4df79-e235-4cdd-b71b-ae39c8532afc", "description": "server_terminate", "status": "pending", "href_from": "/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/action", "href_result": "/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4", "started_at": "2025-10-29T22:55:21.541848+00:00", "terminated_at": null, "progress": 0, "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:22 GMT + - Wed, 29 Oct 2025 22:55:21 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8d3b387a-16c4-4df0-b3ea-773a19a2bbc4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0fa4df79-e235-4cdd-b71b-ae39c8532afc Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3a29137e-18f6-43ab-a6f2-92ab0a667447 + - cd383feb-abb5-4cea-bea9-f71f7df83816 status: 202 Accepted code: 202 - duration: 263.83615ms - - id: 126 + duration: 452.967361ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -6263,7 +5404,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -6271,32 +5412,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1875 + content_length: 1914 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: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"}}' + body: '{"server": {"id": "263f7377-0fc0-4825-bcc2-f6915828cdd4", "name": "tf-srv-objective-snyder", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-objective-snyder", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f303499c-cf78-44e0-a10d-c83f2f9a8893", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:59.602382+00:00", "modification_date": "2025-10-29T22:55:21.147345+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "7", "hypervisor_id": "801", "node_id": "66"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1875" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1914" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:22 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e99fe53-2517-460f-afbf-9465edc7ced0 + - 54eef2c3-99aa-42f1-8f23-03bf9c144b5a status: 200 OK code: 200 - duration: 141.844173ms - - id: 127 + duration: 125.346815ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -6312,7 +5445,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -6322,30 +5455,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b8233a74-4468-4118-b43f-d51e99bd5056","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ad823b65-21bc-4454-a859-dee5b15f3073 + - 55b84fd8-4f02-48d7-bd8f-9a2342a8f3a4 status: 404 Not Found code: 404 - duration: 44.259483ms - - id: 128 + duration: 42.991948ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -6361,7 +5486,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -6371,30 +5496,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e012de09-ac4f-4d3d-88d9-d8018156a358 + - e8df2dda-95ef-4e4f-899a-16feb9807c6b status: 404 Not Found code: 404 - duration: 25.489476ms - - id: 129 + duration: 29.652091ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -6410,7 +5527,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: GET response: proto: HTTP/2.0 @@ -6420,30 +5537,22 @@ interactions: trailer: {} content_length: 498 uncompressed: false - 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"}' + body: '{"id":"f303499c-cf78-44e0-a10d-c83f2f9a8893", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:59.746359Z", "updated_at":"2025-10-29T22:55:23.083980Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:23.083980Z", "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:05:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5e30ead2-6cb4-4cc4-898c-f37cf6f25d27 + - ada9fb35-5258-4da2-9479-bb40b08c4fdc status: 200 OK code: 200 - duration: 85.212145ms - - id: 130 + duration: 81.986099ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -6459,7 +5568,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 method: DELETE response: proto: HTTP/2.0 @@ -6471,26 +5580,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4055bc25-26ab-4f1d-9a6f-e8026a999321 + - 5d40f430-053c-443d-a05c-8db9346e779c status: 204 No Content code: 204 - duration: 178.362865ms - - id: 131 + duration: 177.355426ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -6506,7 +5607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/e3fa1df0-5343-4b5b-b803-df025d422fab + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 method: DELETE response: proto: HTTP/2.0 @@ -6518,26 +5619,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 69f1cc99-d527-47fc-8778-f18c38ebe783 + - d56597a7-f5b4-4e0d-a238-e8e35618ec6e status: 204 No Content code: 204 - duration: 1.160659387s - - id: 132 + duration: 1.081765761s + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -6553,7 +5646,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 method: DELETE response: proto: HTTP/2.0 @@ -6565,26 +5658,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b69352dc-e7f3-4640-a128-6b8d22f1954e + - 9f196fc0-2a2b-426d-8793-8fb74e2395c6 status: 204 No Content code: 204 - duration: 143.704298ms - - id: 133 + duration: 109.748888ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -6600,7 +5685,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 method: GET response: proto: HTTP/2.0 @@ -6610,26 +5695,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b8233a74-4468-4118-b43f-d51e99bd5056","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "263f7377-0fc0-4825-bcc2-f6915828cdd4"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:29 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e2a50e61-2ade-4217-80b1-69cec69d5ba2 + - 4a2cbfa3-f821-4546-aa65-1a582323cf29 status: 404 Not Found code: 404 - duration: 48.806119ms + duration: 44.439705ms diff --git a/internal/services/instance/testdata/server-private-network.cassette.yaml b/internal/services/instance/testdata/server-private-network.cassette.yaml index 416d51077..04cdcc6e8 100644 --- a/internal/services/instance/testdata/server-private-network.cassette.yaml +++ b/internal/services/instance/testdata/server-private-network.cassette.yaml @@ -29,29 +29,21 @@ interactions: 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":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:05.727253Z"}' + body: '{"id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "name":"TestAccServer_PrivateNetwork", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.849448Z", "updated_at":"2025-10-29T22:55:27.849448Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":0, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "426" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eca60270-f527-4dfa-9324-7a13de767012 + - dfefe6dc-eb24-4675-9c59-96e148c2b8d3 status: 200 OK code: 200 - duration: 82.070396ms + duration: 77.7515ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +60,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab method: GET response: proto: HTTP/2.0 @@ -78,29 +70,21 @@ interactions: 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":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:05.727253Z"}' + body: '{"id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "name":"TestAccServer_PrivateNetwork", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.849448Z", "updated_at":"2025-10-29T22:55:27.849448Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":0, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "426" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ea0bb1fc-99a3-45a1-a012-d68e9e5b210f + - 6e4a43aa-2817-4ef6-9735-f0f60dbff48f status: 200 OK code: 200 - duration: 27.055561ms + duration: 24.322064ms - id: 2 request: proto: HTTP/1.1 @@ -112,7 +96,7 @@ 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":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","default_route_propagation_enabled":false}' + body: '{"name":"private_network_instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab","default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -127,31 +111,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1095 + content_length: 1093 uncompressed: false - 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"}' + body: '{"id":"643122ae-3d61-498b-8c96-4942f49b3487", "name":"private_network_instance", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.962512Z", "updated_at":"2025-10-29T22:55:27.962512Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d90358f1-83d9-43a9-b53e-d3ce0b915a0a", "created_at":"2025-10-29T22:55:27.962512Z", "updated_at":"2025-10-29T22:55:27.962512Z", "subnet":"172.18.8.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"643122ae-3d61-498b-8c96-4942f49b3487", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"75d454ab-b0df-40b1-98f2-e9bad8e955ed", "created_at":"2025-10-29T22:55:27.962512Z", "updated_at":"2025-10-29T22:55:27.962512Z", "subnet":"fd5f:519c:6d46:ca51::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"643122ae-3d61-498b-8c96-4942f49b3487", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1095" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1093" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ff86c913-0bff-4a81-ba56-689ad00256ee + - 4aa617bd-dbd4-48a9-b39c-59bf94262f4e status: 200 OK code: 200 - duration: 602.222489ms + duration: 642.044046ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/643122ae-3d61-498b-8c96-4942f49b3487 method: GET response: proto: HTTP/2.0 @@ -176,31 +152,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1095 + content_length: 1093 uncompressed: false - 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"}' + body: '{"id":"643122ae-3d61-498b-8c96-4942f49b3487", "name":"private_network_instance", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.962512Z", "updated_at":"2025-10-29T22:55:27.962512Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d90358f1-83d9-43a9-b53e-d3ce0b915a0a", "created_at":"2025-10-29T22:55:27.962512Z", "updated_at":"2025-10-29T22:55:27.962512Z", "subnet":"172.18.8.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"643122ae-3d61-498b-8c96-4942f49b3487", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"75d454ab-b0df-40b1-98f2-e9bad8e955ed", "created_at":"2025-10-29T22:55:27.962512Z", "updated_at":"2025-10-29T22:55:27.962512Z", "subnet":"fd5f:519c:6d46:ca51::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"643122ae-3d61-498b-8c96-4942f49b3487", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1095" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1093" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eac63ef1-d586-4e87-84c8-214924a735de + - a66d813d-5a0d-423d-afe0-cc76a4402114 status: 200 OK code: 200 - duration: 25.311022ms + duration: 25.264807ms - id: 4 request: proto: HTTP/1.1 @@ -213,7 +181,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -225,35 +195,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 40272 + content_length: 40275 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}},"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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "GPU-3070-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "RTX-3070", "gpu_memory": 8589934592}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 715.4, "hourly_price": 0.98, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "H100-1-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 24, "ram": 257698037760, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3000000000000, "monthly_price": 1992.9, "hourly_price": 2.73, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "H100-1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 24, "ram": 257698037760, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3000000000000, "monthly_price": 3066.0, "hourly_price": 4.2, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "H100-2-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 515396075520, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6000000000000, "monthly_price": 3985.8, "hourly_price": 5.46, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 4194304000, "end_of_service": false}, "H100-2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 515396075520, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6000000000000, "monthly_price": 6132.0, "hourly_price": 8.4, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 4194304000, "end_of_service": false}, "H100-SXM-2-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 257698037760, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3200000000000, "monthly_price": 4393.14, "hourly_price": 6.018, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "H100-SXM-4-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 515396075520, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6400000000000, "monthly_price": 8475.3, "hourly_price": 11.61, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "H100-SXM-8-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 128, "ram": 1030792151040, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 12800000000000, "monthly_price": 16810.44, "hourly_price": 23.028, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "L40S-1-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 103079215104, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 1600000000000, "monthly_price": 1022.0, "hourly_price": 1.4, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L40S-2-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 206158430208, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3200000000000, "monthly_price": 2044.0, "hourly_price": 2.8, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L40S-4-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 412316860416, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6400000000000, "monthly_price": 4088.0, "hourly_price": 5.6, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L40S-8-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 824633720832, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 12800000000000, "monthly_price": 8176.0, "hourly_price": 11.2, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "40272" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "40275" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55:28 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e2c8c524-bc92-4caa-9f0d-1d246a3db170 + - ebf0005a-b75d-4e27-a166-ba715c83f5c8 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 69.702069ms + duration: 67.785794ms - id: 5 request: proto: HTTP/1.1 @@ -266,7 +228,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -280,33 +244,25 @@ interactions: trailer: {} content_length: 14060 uncompressed: false - 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}}}}' + body: '{"servers": {"POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}}}' headers: Content-Length: - "14060" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55:28 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c478721a-66ff-441e-b657-54e1c9293a93 + - f0610587-1b90-4465-9438-92487fcd0efb X-Total-Count: - "68" status: 200 OK code: 200 - duration: 65.546281ms + duration: 49.433805ms - id: 6 request: proto: HTTP/1.1 @@ -319,7 +275,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-2 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -331,43 +295,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1123 + content_length: 1266 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","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","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":"30a53856-64af-4159-be55-9c603243a48e","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-2"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"a943951b-5626-44e8-8653-a613743cd75c","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-2"}],"total_count":2}' + body: '{"local_images":[{"id":"30a53856-64af-4159-be55-9c603243a48e", "arch":"x86_64", "zone":"fr-par-2", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "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", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"a943951b-5626-44e8-8653-a613743cd75c", "arch":"arm64", "zone":"fr-par-2", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1123" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1266" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4121f70-65a7-47de-ad23-6ae48352c831 + - df6b3ea5-c2a0-4e06-a266-bc2e15acd5a7 status: 200 OK code: 200 - duration: 57.105253ms + duration: 48.615534ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 237 + content_length: 230 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-great-cori","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,33 +338,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1744 + content_length: 1730 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: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"}}' + body: '{"server": {"id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "name": "tf-srv-great-cori", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-great-cori", "image": {"id": "30a53856-64af-4159-be55-9c603243a48e", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "0de1a1bd-e99d-4301-a523-7c426dc5fa18", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.513001+00:00", "modification_date": "2025-09-12T09:19:27.513001+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51", "state": "available", "zone": "fr-par-2"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:8e:ed:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:29.535064+00:00", "modification_date": "2025-10-29T22:55:29.535064+00:00", "bootscript": null, "security_group": {"id": "eaabb9f4-fbdf-4310-9cb6-4d42934b673a", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1744" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1730" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:55:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e + - https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a9fac1a6-35c9-488a-abc6-090ec2e58192 + - 98c37be6-8d65-4abd-a6ff-6f91ea7259a0 status: 201 Created code: 201 - duration: 1.096044501s + duration: 1.441454381s - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1744 + content_length: 1730 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: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"}}' + body: '{"server": {"id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "name": "tf-srv-great-cori", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-great-cori", "image": {"id": "30a53856-64af-4159-be55-9c603243a48e", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "0de1a1bd-e99d-4301-a523-7c426dc5fa18", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.513001+00:00", "modification_date": "2025-09-12T09:19:27.513001+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51", "state": "available", "zone": "fr-par-2"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:8e:ed:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:29.535064+00:00", "modification_date": "2025-10-29T22:55:29.535064+00:00", "bootscript": null, "security_group": {"id": "eaabb9f4-fbdf-4310-9cb6-4d42934b673a", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1744" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1730" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1bab6992-6c4f-48b9-892c-b039834b47ac + - ad9f89ec-cbc8-4bc9-924d-6d6bdef79aa7 status: 200 OK code: 200 - duration: 130.285952ms + duration: 149.009337ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 method: GET response: proto: HTTP/2.0 @@ -482,31 +422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1744 + content_length: 1730 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: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"}}' + body: '{"server": {"id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "name": "tf-srv-great-cori", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-great-cori", "image": {"id": "30a53856-64af-4159-be55-9c603243a48e", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "0de1a1bd-e99d-4301-a523-7c426dc5fa18", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.513001+00:00", "modification_date": "2025-09-12T09:19:27.513001+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51", "state": "available", "zone": "fr-par-2"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:8e:ed:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:29.535064+00:00", "modification_date": "2025-10-29T22:55:29.535064+00:00", "bootscript": null, "security_group": {"id": "eaabb9f4-fbdf-4310-9cb6-4d42934b673a", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1744" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1730" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9827908d-ec09-498e-aaeb-b4f9b038786a + - d3fa4874-a639-4515-8b64-b52c42ee4f4c status: 200 OK code: 200 - duration: 135.281564ms + duration: 146.89804ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 method: GET response: proto: HTTP/2.0 @@ -533,29 +465,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"0551fc56-2b66-4f13-bf4e-b1c48e406a51", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:29.682781Z", "updated_at":"2025-10-29T22:55:29.682781Z", "references":[{"id":"7d2c48d5-e0ca-4a17-b745-634fa2f7683a", "product_resource_type":"instance_server", "product_resource_id":"e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "created_at":"2025-10-29T22:55:29.682781Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-2"}' headers: Content-Length: - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cbe019d6-f919-4530-819d-a50cec51ca32 + - 9f849e98-6726-42ac-884e-390b4b797020 status: 200 OK code: 200 - duration: 108.940111ms + duration: 89.70258ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +498,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/f64b4b40-d26e-44c4-bba6-a851d021dc6e/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/action method: POST response: proto: HTTP/2.0 @@ -584,31 +508,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "f3b98fd0-5c1d-4503-ac4a-b481fa535699", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/action", "href_result": "/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "started_at": "2025-10-29T22:55:30.844206+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-2"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:55:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/46715aca-4586-4290-bc5b-fce40c8e4fa7 + - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/f3b98fd0-5c1d-4503-ac4a-b481fa535699 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5ec43b40-cf64-42dd-87e5-10d8ff1b0e54 + - 74a5f991-2f1b-47a6-aa5e-01a209fb9298 status: 202 Accepted code: 202 - duration: 287.750048ms + duration: 272.243635ms - id: 12 request: proto: HTTP/1.1 @@ -625,7 +541,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 method: GET response: proto: HTTP/2.0 @@ -633,31 +549,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1766 + content_length: 1752 uncompressed: 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":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"}}' + body: '{"server": {"id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "name": "tf-srv-great-cori", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-great-cori", "image": {"id": "30a53856-64af-4159-be55-9c603243a48e", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "0de1a1bd-e99d-4301-a523-7c426dc5fa18", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.513001+00:00", "modification_date": "2025-09-12T09:19:27.513001+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51", "state": "available", "zone": "fr-par-2"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:8e:ed:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:29.535064+00:00", "modification_date": "2025-10-29T22:55:30.626255+00:00", "bootscript": null, "security_group": {"id": "eaabb9f4-fbdf-4310-9cb6-4d42934b673a", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1766" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1752" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 27f0df49-47dc-4021-9eef-8cac1f41b448 + - 054fc3ac-807a-4d7f-b6cb-821edc97d36f status: 200 OK code: 200 - duration: 178.149829ms + duration: 132.573803ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 method: GET response: proto: HTTP/2.0 @@ -682,31 +590,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1900 + 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-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"}}' + body: '{"server": {"id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "name": "tf-srv-great-cori", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-great-cori", "image": {"id": "30a53856-64af-4159-be55-9c603243a48e", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "0de1a1bd-e99d-4301-a523-7c426dc5fa18", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.513001+00:00", "modification_date": "2025-09-12T09:19:27.513001+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51", "state": "available", "zone": "fr-par-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:8e:ed:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:29.535064+00:00", "modification_date": "2025-10-29T22:55:34.299702+00:00", "bootscript": null, "security_group": {"id": "eaabb9f4-fbdf-4310-9cb6-4d42934b673a", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "14", "hypervisor_id": "1402", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1900" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1887" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e40d3dee-d96d-4a7d-afc3-63227377ea4b + - 4ce65abf-79ee-41db-8259-2461f0842886 status: 200 OK code: 200 - duration: 163.620299ms + duration: 150.236144ms - id: 14 request: proto: HTTP/1.1 @@ -723,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/vpc/v2/regions/fr-par/private-networks/cbf53a3f-26f6-4ccd-a1f5-22f2718b8135 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/643122ae-3d61-498b-8c96-4942f49b3487 method: GET response: proto: HTTP/2.0 @@ -731,31 +631,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1095 + content_length: 1093 uncompressed: false - 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"}' + body: '{"id":"643122ae-3d61-498b-8c96-4942f49b3487", "name":"private_network_instance", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.962512Z", "updated_at":"2025-10-29T22:55:27.962512Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d90358f1-83d9-43a9-b53e-d3ce0b915a0a", "created_at":"2025-10-29T22:55:27.962512Z", "updated_at":"2025-10-29T22:55:27.962512Z", "subnet":"172.18.8.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"643122ae-3d61-498b-8c96-4942f49b3487", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"75d454ab-b0df-40b1-98f2-e9bad8e955ed", "created_at":"2025-10-29T22:55:27.962512Z", "updated_at":"2025-10-29T22:55:27.962512Z", "subnet":"fd5f:519c:6d46:ca51::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"643122ae-3d61-498b-8c96-4942f49b3487", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1095" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1093" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f432720f-6fbd-4688-9cec-4e07abea375a + - 65b51e38-39cd-4904-95fa-29c8638d83df status: 200 OK code: 200 - duration: 31.353267ms + duration: 31.519845ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 method: GET response: proto: HTTP/2.0 @@ -780,31 +672,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1900 + 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-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"}}' + body: '{"server": {"id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "name": "tf-srv-great-cori", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-great-cori", "image": {"id": "30a53856-64af-4159-be55-9c603243a48e", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "0de1a1bd-e99d-4301-a523-7c426dc5fa18", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.513001+00:00", "modification_date": "2025-09-12T09:19:27.513001+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51", "state": "available", "zone": "fr-par-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:8e:ed:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:29.535064+00:00", "modification_date": "2025-10-29T22:55:34.299702+00:00", "bootscript": null, "security_group": {"id": "eaabb9f4-fbdf-4310-9cb6-4d42934b673a", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "14", "hypervisor_id": "1402", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1900" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1887" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 85894b6d-87ec-443f-9732-7b7e003000df + - 0c12c77b-5514-482c-a459-442884549ec3 status: 200 OK code: 200 - duration: 144.812222ms + duration: 154.597962ms - id: 16 request: proto: HTTP/1.1 @@ -816,14 +700,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135"}' + body: '{"private_network_id":"643122ae-3d61-498b-8c96-4942f49b3487"}' 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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics method: POST response: proto: HTTP/2.0 @@ -833,29 +717,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "syncing", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:55:36.615830+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 71d81be4-32a4-4428-9bef-2206099f68d8 + - 9d96f58b-8d2c-4dd0-9193-d5bc9081d9b7 status: 201 Created code: 201 - duration: 648.70722ms + duration: 740.879419ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +748,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 method: GET response: proto: HTTP/2.0 @@ -882,29 +758,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "syncing", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:55:36.615830+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b2a8374d-03f1-4d7d-83c8-44dc1e84a448 + - e51b4435-379d-40b3-8928-2560f864897a status: 200 OK code: 200 - duration: 101.607045ms + duration: 121.944067ms - id: 18 request: proto: HTTP/1.1 @@ -921,7 +789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 method: GET response: proto: HTTP/2.0 @@ -931,29 +799,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "syncing", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:55:36.615830+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a65cd9cf-34e1-4b5b-b4b4-6a2ca73743a0 + - e305da6a-6c11-4449-94ea-2efa4ecce5c5 status: 200 OK code: 200 - duration: 91.160473ms + duration: 108.861993ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +830,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 method: GET response: proto: HTTP/2.0 @@ -980,29 +840,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "syncing", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:55:36.615830+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:24 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 70cc2a73-a04e-482b-9fe2-d5b4299b089d + - 4f5293da-6fa9-4733-b6e4-fee3737f6204 status: 200 OK code: 200 - duration: 111.357328ms + duration: 110.463228ms - id: 20 request: proto: HTTP/1.1 @@ -1019,7 +871,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 method: GET response: proto: HTTP/2.0 @@ -1029,29 +881,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "syncing", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:55:36.615830+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:29 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1cde22d7-1c85-41b1-a7a6-3dd589db5b67 + - 5af9a02e-2449-4bfd-80f5-9c27b3735147 status: 200 OK code: 200 - duration: 92.708562ms + duration: 102.537718ms - id: 21 request: proto: HTTP/1.1 @@ -1068,7 +912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 method: GET response: proto: HTTP/2.0 @@ -1078,29 +922,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "syncing", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:55:36.615830+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 56a6f3ea-9551-4fa8-baf3-e6ab1a24c9d0 + - 5ecbba8f-7c00-4ea1-9643-f2643f9e28cb status: 200 OK code: 200 - duration: 109.028053ms + duration: 92.563396ms - id: 22 request: proto: HTTP/1.1 @@ -1117,7 +953,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 method: GET response: proto: HTTP/2.0 @@ -1127,29 +963,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "syncing", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:55:36.615830+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:40 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d06af613-a768-40aa-950d-53fe6701f397 + - 8077ba63-6766-44fc-ae7f-482daf684345 status: 200 OK code: 200 - duration: 120.41986ms + duration: 98.129427ms - id: 23 request: proto: HTTP/1.1 @@ -1166,7 +994,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 method: GET response: proto: HTTP/2.0 @@ -1176,29 +1004,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "syncing", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:55:36.615830+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:45 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45770ec3-34b9-4534-a270-b13385d7e090 + - 88c1cce9-8323-4c94-8657-b4e15a8cc037 status: 200 OK code: 200 - duration: 110.235035ms + duration: 107.411106ms - id: 24 request: proto: HTTP/1.1 @@ -1215,7 +1035,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 method: GET response: proto: HTTP/2.0 @@ -1225,29 +1045,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "syncing", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:55:36.615830+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:50 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0fbe642b-00da-4e7a-a6cb-c93958afea73 + - aa4ec77c-fbd5-4e91-a4b9-45099e7f6d75 status: 200 OK code: 200 - duration: 99.024628ms + duration: 110.408533ms - id: 25 request: proto: HTTP/1.1 @@ -1264,7 +1076,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 method: GET response: proto: HTTP/2.0 @@ -1274,29 +1086,21 @@ interactions: trailer: {} content_length: 473 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "syncing", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:55:36.615830+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}}' headers: Content-Length: - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 571b980c-2b3f-4913-b944-244ed19e068b + - 6991cdaf-dee1-4de7-b7ce-bb736a9e5b21 status: 200 OK code: 200 - duration: 112.813939ms + duration: 95.519669ms - id: 26 request: proto: HTTP/1.1 @@ -1313,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/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 method: GET response: proto: HTTP/2.0 @@ -1321,31 +1125,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "available", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:56:18.666015+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}}' headers: Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "475" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:00 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2fa57a5e-71c1-4ba1-93b0-7522c3eeda2a + - 81ca3772-60b6-492f-b931-6edc7f41b467 status: 200 OK code: 200 - duration: 116.445702ms + duration: 93.398954ms - id: 27 request: proto: HTTP/1.1 @@ -1362,7 +1158,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 method: GET response: proto: HTTP/2.0 @@ -1372,29 +1168,21 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "available", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:56:18.666015+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f3c86cba-1e46-46b7-9c49-6b01c0f82f71 + - b175f1c6-75ae-4757-8232-2877a9bc5322 status: 200 OK code: 200 - duration: 116.786626ms + duration: 110.951391ms - id: 28 request: proto: HTTP/1.1 @@ -1411,7 +1199,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 method: GET response: proto: HTTP/2.0 @@ -1419,31 +1207,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 2345 uncompressed: false - 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"}}' + body: '{"server": {"id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "name": "tf-srv-great-cori", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-great-cori", "image": {"id": "30a53856-64af-4159-be55-9c603243a48e", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "0de1a1bd-e99d-4301-a523-7c426dc5fa18", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.513001+00:00", "modification_date": "2025-09-12T09:19:27.513001+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51", "state": "available", "zone": "fr-par-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:8e:ed:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:29.535064+00:00", "modification_date": "2025-10-29T22:55:34.299702+00:00", "bootscript": null, "security_group": {"id": "eaabb9f4-fbdf-4310-9cb6-4d42934b673a", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "14", "hypervisor_id": "1402", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "available", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:56:18.666015+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2345" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:05 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d8e8c19d-050a-4bdb-9175-ea2086013668 + - 9086f517-6a21-451e-b501-2081ac4d8a65 status: 200 OK code: 200 - duration: 97.66397ms + duration: 153.897198ms - id: 29 request: proto: HTTP/1.1 @@ -1460,56 +1240,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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: 2358 - uncompressed: false - body: '{"server":{"allowed_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: - - "2358" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:04: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: - - 72a59524-93f8-420f-86d3-0cdb94e7f8d8 - status: 200 OK - code: 200 - duration: 165.894738ms - - 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-2/volumes/8947b8e2-8d15-433f-803c-8d52160780bf + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 method: GET response: proto: HTTP/2.0 @@ -1519,30 +1250,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4a29c401-da4b-443f-bda6-7d4478a21d5e + - 72cd9231-fc9c-4702-8e45-620fc8e1a9c0 status: 404 Not Found code: 404 - duration: 61.73917ms - - id: 31 + duration: 30.059988ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1558,7 +1281,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 method: GET response: proto: HTTP/2.0 @@ -1568,30 +1291,22 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"0551fc56-2b66-4f13-bf4e-b1c48e406a51", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:29.682781Z", "updated_at":"2025-10-29T22:55:29.682781Z", "references":[{"id":"7d2c48d5-e0ca-4a17-b745-634fa2f7683a", "product_resource_type":"instance_server", "product_resource_id":"e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "created_at":"2025-10-29T22:55:29.682781Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-2"}' headers: Content-Length: - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f989318e-e22e-4ec5-9d93-6880363ad5f4 + - 9b9da094-2e01-4321-848b-d53f90a2a326 status: 200 OK code: 200 - duration: 94.293143ms - - id: 32 + duration: 88.50405ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1607,7 +1322,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/user_data method: GET response: proto: HTTP/2.0 @@ -1617,30 +1332,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:06 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ac485294-ebc2-42a0-bcce-62708c49d197 + - c2a6d091-e990-4d5e-a7fc-da3d5ebfaff3 status: 200 OK code: 200 - duration: 98.604504ms - - id: 33 + duration: 92.071792ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1656,7 +1363,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics method: GET response: proto: HTTP/2.0 @@ -1666,34 +1373,26 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "available", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:56:18.666015+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:56:23 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9ba6deed-d130-4864-9287-d606a41cfa6c + - aca36c53-8c3c-4172-88a4-ff66b7f2e7cb X-Total-Count: - "1" status: 200 OK code: 200 - duration: 91.482223ms - - id: 34 + duration: 110.83406ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1705,11 +1404,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 9758daee-aef0-422b-b7ec-e87e496f7f18 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=df6c80b8-f070-4e90-9b73-4dae58506d35&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=9758daee-aef0-422b-b7ec-e87e496f7f18&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1717,32 +1424,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1063 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"2ccd09b7-7a07-421a-ab5f-f3af5ea39208", "address":"fd5f:519c:6d46:ca51:bb41:5a95:2ec0:c1a1/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:55:36.918789Z", "updated_at":"2025-10-29T22:55:36.918789Z", "source":{"subnet_id":"75d454ab-b0df-40b1-98f2-e9bad8e955ed"}, "resource":{"type":"instance_private_nic", "id":"9758daee-aef0-422b-b7ec-e87e496f7f18", "mac_address":"02:00:00:27:65:7E", "name":"tf-srv-great-cori"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"45784dc6-760a-4966-8d1b-03a6f3227d74", "address":"172.18.8.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:55:36.736421Z", "updated_at":"2025-10-29T22:55:36.736421Z", "source":{"subnet_id":"d90358f1-83d9-43a9-b53e-d3ce0b915a0a"}, "resource":{"type":"instance_private_nic", "id":"9758daee-aef0-422b-b7ec-e87e496f7f18", "mac_address":"02:00:00:27:65:7E", "name":"tf-srv-great-cori"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1063" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c888e5ea-867e-4ed3-af0b-a130e691f476 + - 3f4e179b-6d32-42c9-91b8-fb4a6859f54d status: 200 OK code: 200 - duration: 30.143734ms - - id: 35 + duration: 30.706859ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1758,7 +1457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics method: GET response: proto: HTTP/2.0 @@ -1768,34 +1467,26 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "available", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:56:18.666015+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22:56:23 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 739d2deb-4b59-4e72-8be6-06a1a8f61c03 + - cce51f1a-8c0b-4087-9a53-4c8bc27abfd2 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 113.528881ms - - id: 36 + duration: 99.113041ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1811,7 +1502,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab method: GET response: proto: HTTP/2.0 @@ -1821,30 +1512,22 @@ interactions: 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"}' + body: '{"id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "name":"TestAccServer_PrivateNetwork", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.849448Z", "updated_at":"2025-10-29T22:55:27.849448Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - "426" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f6883e5e-7706-4d7f-b1b2-eb57db415f0b + - 64c5d928-6c88-4d56-8a1a-00c0fb0584cb status: 200 OK code: 200 - duration: 28.073865ms - - id: 37 + duration: 28.470436ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1860,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/vpc/v2/regions/fr-par/private-networks/cbf53a3f-26f6-4ccd-a1f5-22f2718b8135 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/643122ae-3d61-498b-8c96-4942f49b3487 method: GET response: proto: HTTP/2.0 @@ -1868,32 +1551,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1095 + content_length: 1093 uncompressed: false - 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"}' + body: '{"id":"643122ae-3d61-498b-8c96-4942f49b3487", "name":"private_network_instance", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.962512Z", "updated_at":"2025-10-29T22:55:27.962512Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d90358f1-83d9-43a9-b53e-d3ce0b915a0a", "created_at":"2025-10-29T22:55:27.962512Z", "updated_at":"2025-10-29T22:55:27.962512Z", "subnet":"172.18.8.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"643122ae-3d61-498b-8c96-4942f49b3487", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"75d454ab-b0df-40b1-98f2-e9bad8e955ed", "created_at":"2025-10-29T22:55:27.962512Z", "updated_at":"2025-10-29T22:55:27.962512Z", "subnet":"fd5f:519c:6d46:ca51::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"643122ae-3d61-498b-8c96-4942f49b3487", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1095" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1093" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6d620583-abba-45b1-a92e-94c1f83b22bc + - a1e4f6b1-d677-4107-8a74-0338c305059d status: 200 OK code: 200 - duration: 24.873916ms - - id: 38 + duration: 26.587144ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1909,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-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 method: GET response: proto: HTTP/2.0 @@ -1917,32 +1592,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2358 + 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-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"}}' + body: '{"server": {"id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "name": "tf-srv-great-cori", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-great-cori", "image": {"id": "30a53856-64af-4159-be55-9c603243a48e", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "0de1a1bd-e99d-4301-a523-7c426dc5fa18", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.513001+00:00", "modification_date": "2025-09-12T09:19:27.513001+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51", "state": "available", "zone": "fr-par-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:8e:ed:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:29.535064+00:00", "modification_date": "2025-10-29T22:55:34.299702+00:00", "bootscript": null, "security_group": {"id": "eaabb9f4-fbdf-4310-9cb6-4d42934b673a", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "14", "hypervisor_id": "1402", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "available", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:56:18.666015+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2358" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2345" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - adb3b28b-d608-4f8d-bc93-b5a8eb156718 + - 1664b7dc-7524-409a-9df1-772987cfdcd7 status: 200 OK code: 200 - duration: 141.028218ms - - id: 39 + duration: 158.947824ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1958,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-2/volumes/8947b8e2-8d15-433f-803c-8d52160780bf + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 method: GET response: proto: HTTP/2.0 @@ -1968,30 +1635,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:06 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 700d720d-feca-4c98-a5f2-05e22f86f842 + - ac4fa0e8-f7b1-4c81-b83c-0778d98ea158 status: 404 Not Found code: 404 - duration: 26.738963ms - - id: 40 + duration: 28.361741ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2007,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-2/volumes/8947b8e2-8d15-433f-803c-8d52160780bf + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 method: GET response: proto: HTTP/2.0 @@ -2017,30 +1676,22 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"0551fc56-2b66-4f13-bf4e-b1c48e406a51", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:29.682781Z", "updated_at":"2025-10-29T22:55:29.682781Z", "references":[{"id":"7d2c48d5-e0ca-4a17-b745-634fa2f7683a", "product_resource_type":"instance_server", "product_resource_id":"e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "created_at":"2025-10-29T22:55:29.682781Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-2"}' headers: Content-Length: - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 49601964-26fa-40ca-a304-07cfefbe1419 + - 9876f39e-02cc-4d91-9798-f9e9b6cee206 status: 200 OK code: 200 - duration: 116.290037ms - - id: 41 + duration: 87.190013ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2056,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-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/user_data method: GET response: proto: HTTP/2.0 @@ -2066,30 +1717,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:07 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bb0f1df5-7322-4ded-925e-1401816727bf + - 801c5ae8-6868-42f6-8de4-c19448b63789 status: 200 OK code: 200 - duration: 118.504097ms - - id: 42 + duration: 97.901866ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2105,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/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics method: GET response: proto: HTTP/2.0 @@ -2115,34 +1758,26 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "available", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:56:18.666015+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:56:24 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2351c158-59a6-4f81-9994-5d1c779973e0 + - 1f170a54-a294-4fd1-981c-7c636c603114 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 134.060728ms - - id: 43 + duration: 121.817713ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2154,11 +1789,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 9758daee-aef0-422b-b7ec-e87e496f7f18 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=df6c80b8-f070-4e90-9b73-4dae58506d35&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=9758daee-aef0-422b-b7ec-e87e496f7f18&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2166,32 +1809,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1063 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"2ccd09b7-7a07-421a-ab5f-f3af5ea39208", "address":"fd5f:519c:6d46:ca51:bb41:5a95:2ec0:c1a1/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:55:36.918789Z", "updated_at":"2025-10-29T22:55:36.918789Z", "source":{"subnet_id":"75d454ab-b0df-40b1-98f2-e9bad8e955ed"}, "resource":{"type":"instance_private_nic", "id":"9758daee-aef0-422b-b7ec-e87e496f7f18", "mac_address":"02:00:00:27:65:7E", "name":"tf-srv-great-cori"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"45784dc6-760a-4966-8d1b-03a6f3227d74", "address":"172.18.8.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:55:36.736421Z", "updated_at":"2025-10-29T22:55:36.736421Z", "source":{"subnet_id":"d90358f1-83d9-43a9-b53e-d3ce0b915a0a"}, "resource":{"type":"instance_private_nic", "id":"9758daee-aef0-422b-b7ec-e87e496f7f18", "mac_address":"02:00:00:27:65:7E", "name":"tf-srv-great-cori"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1063" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4cdfecf8-8177-4cbf-bf18-228e906fa29e + - f1964135-b586-4e57-8482-ca3268caa64c status: 200 OK code: 200 - duration: 32.617151ms - - id: 44 + duration: 25.015103ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2207,7 +1842,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab method: GET response: proto: HTTP/2.0 @@ -2215,32 +1850,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1095 + content_length: 426 uncompressed: false - 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"}' + body: '{"id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "name":"TestAccServer_PrivateNetwork", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.849448Z", "updated_at":"2025-10-29T22:55:27.849448Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' headers: Content-Length: - - "1095" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "426" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dde267d9-c3bd-4308-b6af-14606608d12b + - ca49de87-8ad7-4f5d-8b7e-7ef150f6f2dc status: 200 OK code: 200 - duration: 21.843085ms - - id: 45 + duration: 27.115542ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2256,7 +1883,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/643122ae-3d61-498b-8c96-4942f49b3487 method: GET response: proto: HTTP/2.0 @@ -2264,32 +1891,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 1093 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"}' + body: '{"id":"643122ae-3d61-498b-8c96-4942f49b3487", "name":"private_network_instance", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.962512Z", "updated_at":"2025-10-29T22:55:27.962512Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d90358f1-83d9-43a9-b53e-d3ce0b915a0a", "created_at":"2025-10-29T22:55:27.962512Z", "updated_at":"2025-10-29T22:55:27.962512Z", "subnet":"172.18.8.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"643122ae-3d61-498b-8c96-4942f49b3487", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"75d454ab-b0df-40b1-98f2-e9bad8e955ed", "created_at":"2025-10-29T22:55:27.962512Z", "updated_at":"2025-10-29T22:55:27.962512Z", "subnet":"fd5f:519c:6d46:ca51::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"643122ae-3d61-498b-8c96-4942f49b3487", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "426" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1093" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 01f63a9d-f5fc-4062-8105-e4ed41b8b0f9 + - 97a6d325-c52a-48d1-9e87-4568a96a1fbe status: 200 OK code: 200 - duration: 26.053518ms - - id: 46 + duration: 26.761269ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2305,7 +1924,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 method: GET response: proto: HTTP/2.0 @@ -2313,32 +1932,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2358 + 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-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"}}' + body: '{"server": {"id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "name": "tf-srv-great-cori", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-great-cori", "image": {"id": "30a53856-64af-4159-be55-9c603243a48e", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "0de1a1bd-e99d-4301-a523-7c426dc5fa18", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.513001+00:00", "modification_date": "2025-09-12T09:19:27.513001+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51", "state": "available", "zone": "fr-par-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:8e:ed:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:29.535064+00:00", "modification_date": "2025-10-29T22:55:34.299702+00:00", "bootscript": null, "security_group": {"id": "eaabb9f4-fbdf-4310-9cb6-4d42934b673a", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "14", "hypervisor_id": "1402", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "available", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:56:18.666015+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2358" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2345" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 36451433-d47a-4d58-a33d-6731cabcac8b + - 756f9d13-83b2-4e98-ab3a-ab4c5339202a status: 200 OK code: 200 - duration: 143.458925ms - - id: 47 + duration: 149.313837ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2354,7 +1965,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 method: GET response: proto: HTTP/2.0 @@ -2364,30 +1975,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3e6d882c-7d8b-49fd-8b26-30e930a7c92c + - f5eb6c27-69bc-4e88-83b7-aa27972724d0 status: 404 Not Found code: 404 - duration: 28.62622ms - - id: 48 + duration: 26.517422ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2403,7 +2006,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 method: GET response: proto: HTTP/2.0 @@ -2413,30 +2016,22 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"0551fc56-2b66-4f13-bf4e-b1c48e406a51", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:29.682781Z", "updated_at":"2025-10-29T22:55:29.682781Z", "references":[{"id":"7d2c48d5-e0ca-4a17-b745-634fa2f7683a", "product_resource_type":"instance_server", "product_resource_id":"e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "created_at":"2025-10-29T22:55:29.682781Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-2"}' headers: Content-Length: - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:07 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5384f201-9160-4490-87f5-6f8360b5d6c3 + - 2f7aa397-644c-44f2-a824-519f7cd26ad9 status: 200 OK code: 200 - duration: 119.745975ms - - id: 49 + duration: 97.296805ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2452,7 +2047,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/user_data method: GET response: proto: HTTP/2.0 @@ -2462,30 +2057,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:07 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 27bae2bf-acf0-4729-baa0-b93f01dd2311 + - 7760a853-e207-4d61-b252-828da5ba13aa status: 200 OK code: 200 - duration: 105.917403ms - - id: 50 + duration: 102.07001ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2501,7 +2088,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics method: GET response: proto: HTTP/2.0 @@ -2511,34 +2098,26 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "available", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:56:18.666015+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:56:25 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4fe6f6d2-4e29-4f23-b187-c2d1126192bc + - d7d9aa06-a3ab-494d-ae72-f01c9354c8df X-Total-Count: - "1" status: 200 OK code: 200 - duration: 84.190116ms - - id: 51 + duration: 107.196339ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2550,11 +2129,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 9758daee-aef0-422b-b7ec-e87e496f7f18 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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=df6c80b8-f070-4e90-9b73-4dae58506d35&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=9758daee-aef0-422b-b7ec-e87e496f7f18&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2562,32 +2149,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1063 uncompressed: false - 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}' + body: '{"total_count":2, "ips":[{"id":"2ccd09b7-7a07-421a-ab5f-f3af5ea39208", "address":"fd5f:519c:6d46:ca51:bb41:5a95:2ec0:c1a1/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:55:36.918789Z", "updated_at":"2025-10-29T22:55:36.918789Z", "source":{"subnet_id":"75d454ab-b0df-40b1-98f2-e9bad8e955ed"}, "resource":{"type":"instance_private_nic", "id":"9758daee-aef0-422b-b7ec-e87e496f7f18", "mac_address":"02:00:00:27:65:7E", "name":"tf-srv-great-cori"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"45784dc6-760a-4966-8d1b-03a6f3227d74", "address":"172.18.8.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:55:36.736421Z", "updated_at":"2025-10-29T22:55:36.736421Z", "source":{"subnet_id":"d90358f1-83d9-43a9-b53e-d3ce0b915a0a"}, "resource":{"type":"instance_private_nic", "id":"9758daee-aef0-422b-b7ec-e87e496f7f18", "mac_address":"02:00:00:27:65:7E", "name":"tf-srv-great-cori"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1063" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6db304bc-6448-4178-8155-c9226b510784 + - a18cafde-5139-4630-a86d-10f9a2c71d16 status: 200 OK code: 200 - duration: 29.109837ms - - id: 52 + duration: 33.724061ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2603,7 +2182,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics method: GET response: proto: HTTP/2.0 @@ -2613,34 +2192,26 @@ interactions: trailer: {} content_length: 478 uncompressed: false - 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"}]}' + body: '{"private_nics": [{"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "available", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:56:18.666015+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}]}' headers: Content-Length: - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:56:25 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e4fa4dd8-7da2-487a-a62f-291673f73277 + - dd1d4fc9-d6c2-43bc-a044-901a7e84e7ba X-Total-Count: - "1" status: 200 OK code: 200 - duration: 104.001252ms - - id: 53 + duration: 104.531986ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2656,7 +2227,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 method: GET response: proto: HTTP/2.0 @@ -2666,30 +2237,22 @@ interactions: trailer: {} content_length: 475 uncompressed: false - 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"}}' + body: '{"private_nic": {"id": "9758daee-aef0-422b-b7ec-e87e496f7f18", "private_network_id": "643122ae-3d61-498b-8c96-4942f49b3487", "server_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "mac_address": "02:00:00:27:65:7e", "state": "available", "creation_date": "2025-10-29T22:55:36.365316+00:00", "modification_date": "2025-10-29T22:56:18.666015+00:00", "zone": "fr-par-2", "tags": [], "ipam_ip_ids": ["45784dc6-760a-4966-8d1b-03a6f3227d74", "2ccd09b7-7a07-421a-ab5f-f3af5ea39208"]}}' headers: Content-Length: - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e82cdbe1-2ddd-4dd1-986e-f7336de4b667 + - 44b98b66-415b-485e-bef7-6cbb97e9313f status: 200 OK code: 200 - duration: 99.719767ms - - id: 54 + duration: 101.396111ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2705,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-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 method: DELETE response: proto: HTTP/2.0 @@ -2717,26 +2280,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5a09a56c-9298-4cc3-bbec-bb8ce6f3affd + - 5adaee46-8963-4875-a833-899073625db8 status: 204 No Content code: 204 - duration: 414.567625ms - - id: 55 + duration: 453.976207ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2752,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-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 method: GET response: proto: HTTP/2.0 @@ -2762,30 +2317,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_private_nic", "resource_id": "9758daee-aef0-422b-b7ec-e87e496f7f18"}' 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 + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f256f8f5-5cc9-484a-b016-21fc0d13e611 + - 4e54245b-8afa-451a-a844-87857180443a status: 404 Not Found code: 404 - duration: 102.27676ms - - id: 56 + duration: 85.092369ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2801,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-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics method: GET response: proto: HTTP/2.0 @@ -2811,34 +2358,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 + - Wed, 29 Oct 2025 22:56:26 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 805e987b-8c5e-4c82-9e88-dfcd4765bf34 + - f1963953-27f0-4cb5-bb4a-81b718bd3da8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.363706ms - - id: 57 + duration: 95.624045ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2854,7 +2393,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 method: GET response: proto: HTTP/2.0 @@ -2862,32 +2401,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1900 + 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-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"}}' + body: '{"server": {"id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "name": "tf-srv-great-cori", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-great-cori", "image": {"id": "30a53856-64af-4159-be55-9c603243a48e", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "0de1a1bd-e99d-4301-a523-7c426dc5fa18", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.513001+00:00", "modification_date": "2025-09-12T09:19:27.513001+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51", "state": "available", "zone": "fr-par-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:8e:ed:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:29.535064+00:00", "modification_date": "2025-10-29T22:55:34.299702+00:00", "bootscript": null, "security_group": {"id": "eaabb9f4-fbdf-4310-9cb6-4d42934b673a", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "14", "hypervisor_id": "1402", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1900" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1887" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5b09f5f9-9708-4e07-a33c-2c34216e5734 + - 3fda148f-e499-45bc-93ba-8d3b9f44ffed status: 200 OK code: 200 - duration: 160.975042ms - - id: 58 + duration: 139.933255ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2903,7 +2434,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 method: GET response: proto: HTTP/2.0 @@ -2911,32 +2442,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1900 + 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-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"}}' + body: '{"server": {"id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "name": "tf-srv-great-cori", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-great-cori", "image": {"id": "30a53856-64af-4159-be55-9c603243a48e", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "0de1a1bd-e99d-4301-a523-7c426dc5fa18", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.513001+00:00", "modification_date": "2025-09-12T09:19:27.513001+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51", "state": "available", "zone": "fr-par-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:8e:ed:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:29.535064+00:00", "modification_date": "2025-10-29T22:55:34.299702+00:00", "bootscript": null, "security_group": {"id": "eaabb9f4-fbdf-4310-9cb6-4d42934b673a", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "14", "hypervisor_id": "1402", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1900" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1887" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e7d9ce2f-9fe9-4397-9475-59276a264bd9 + - 7e0c955b-b515-44b2-8a98-7d42aaa18958 status: 200 OK code: 200 - duration: 123.619959ms - - id: 59 + duration: 140.365851ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2954,7 +2477,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/f64b4b40-d26e-44c4-bba6-a851d021dc6e/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/action method: POST response: proto: HTTP/2.0 @@ -2964,32 +2487,24 @@ interactions: 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"}}' + body: '{"task": {"id": "11c6f6be-dbb3-4e8e-a2f7-407c57ad9617", "description": "server_terminate", "status": "pending", "href_from": "/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/action", "href_result": "/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "started_at": "2025-10-29T22:56:27.069023+00:00", "terminated_at": null, "progress": 0, "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 + - Wed, 29 Oct 2025 22:56:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/d32878a1-09f0-4ae4-b4a6-56ba4d71fc6b + - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/11c6f6be-dbb3-4e8e-a2f7-407c57ad9617 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f8746806-28f5-4e16-99f8-f57d4b20d358 + - cbfe99e1-e53b-4dc5-8e06-a4e1e1b0ac2f status: 202 Accepted code: 202 - duration: 275.193749ms - - id: 60 + duration: 261.400333ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3005,7 +2520,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 method: GET response: proto: HTTP/2.0 @@ -3013,32 +2528,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1863 + content_length: 1850 uncompressed: 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"}}' + body: '{"server": {"id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5", "name": "tf-srv-great-cori", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-great-cori", "image": {"id": "30a53856-64af-4159-be55-9c603243a48e", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "0de1a1bd-e99d-4301-a523-7c426dc5fa18", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.513001+00:00", "modification_date": "2025-09-12T09:19:27.513001+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51", "state": "available", "zone": "fr-par-2"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:8e:ed:95", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:29.535064+00:00", "modification_date": "2025-10-29T22:56:26.862795+00:00", "bootscript": null, "security_group": {"id": "eaabb9f4-fbdf-4310-9cb6-4d42934b673a", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "14", "hypervisor_id": "1402", "node_id": "22"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1863" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1850" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:09 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 50ec1572-ef60-4ae0-b032-2c3cea2e7d08 + - 2d710a22-c0e4-44d6-9d77-e18d25e7d690 status: 200 OK code: 200 - duration: 139.163987ms - - id: 61 + duration: 156.679743ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3054,7 +2561,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 method: GET response: proto: HTTP/2.0 @@ -3064,30 +2571,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5"}' 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 + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e3021a36-e0be-4a96-92ca-955341ff360d + - 3287c542-155b-4527-8330-e0d05d8ffb20 status: 404 Not Found code: 404 - duration: 48.912329ms - - id: 62 + duration: 52.188583ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3103,7 +2602,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 method: GET response: proto: HTTP/2.0 @@ -3113,30 +2612,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0551fc56-2b66-4f13-bf4e-b1c48e406a51"}' 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 + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a793e07b-6271-4ab7-9e5b-c420db56aca0 + - 093d74ea-0fa5-447c-a81b-05264c0cc82e status: 404 Not Found code: 404 - duration: 28.642312ms - - id: 63 + duration: 29.998684ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3152,7 +2643,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 method: GET response: proto: HTTP/2.0 @@ -3162,30 +2653,22 @@ interactions: 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"}' + body: '{"id":"0551fc56-2b66-4f13-bf4e-b1c48e406a51", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:29.682781Z", "updated_at":"2025-10-29T22:56:28.383118Z", "references":[], "parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:56:28.383118Z", "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 + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 46109533-3b5f-4688-8fd5-f243b19524dd + - 36ff25d7-673e-4a9a-a080-67924f78a22a status: 200 OK code: 200 - duration: 80.814953ms - - id: 64 + duration: 90.484606ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3201,7 +2684,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 method: DELETE response: proto: HTTP/2.0 @@ -3213,26 +2696,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e381984-69f8-4077-8781-94a8301ae144 + - 6d2d2f87-2963-4133-af5d-5621ee4c3f7a status: 204 No Content code: 204 - duration: 148.987859ms - - id: 65 + duration: 149.144301ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3243,7 +2718,7 @@ 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":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","default_route_propagation_enabled":false}' + body: '{"name":"private_network_instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab","default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -3260,30 +2735,22 @@ interactions: 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"}' + body: '{"id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "name":"private_network_instance", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d53bab04-5e69-442d-b770-4c3dff5a49ef", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"04c59f03-e125-4dc3-8f4f-1404c08df31d", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"fd5f:519c:6d46:dabe::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' 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 + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 33a098b8-530d-44fa-b0c5-6c671c5aa64a + - 6f091ace-334d-46a1-b53c-93d07843917a status: 200 OK code: 200 - duration: 660.572415ms - - id: 66 + duration: 668.767992ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3299,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/vpc/v2/regions/fr-par/private-networks/84d0bd91-8515-4104-a3d4-3952c3023512 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef method: GET response: proto: HTTP/2.0 @@ -3309,30 +2776,22 @@ interactions: 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"}' + body: '{"id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "name":"private_network_instance", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d53bab04-5e69-442d-b770-4c3dff5a49ef", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"04c59f03-e125-4dc3-8f4f-1404c08df31d", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"fd5f:519c:6d46:dabe::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' 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 + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 21585c04-0424-4f02-9e53-16c51e3105b2 + - c584094c-7909-42f3-8804-f8e4b21659df status: 200 OK code: 200 - duration: 25.877921ms - - id: 67 + duration: 27.532482ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3348,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/vpc/v2/regions/fr-par/private-networks/cbf53a3f-26f6-4ccd-a1f5-22f2718b8135 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/643122ae-3d61-498b-8c96-4942f49b3487 method: DELETE response: proto: HTTP/2.0 @@ -3360,26 +2819,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d2194350-aa0d-4682-b2de-cc4beb8cc393 + - ac1a4fb3-8fef-4af2-827b-c53e20003773 status: 204 No Content code: 204 - duration: 1.06901857s - - id: 68 + duration: 1.285757596s + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3391,7 +2842,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -3403,36 +2856,28 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:56:33 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ba629a72-dd9a-441f-aa6a-68f414b01bed + - 00fafef6-0762-437d-a8b3-307b445d3f72 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 39.349044ms - - id: 69 + duration: 44.44937ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3444,7 +2889,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -3458,34 +2905,26 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:56:33 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f2691df-5759-48f7-9a25-c4ff01a65101 + - 38ba660b-5b49-411a-a6a6-e91aae154bb4 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 48.06408ms - - id: 70 + duration: 41.670723ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3497,7 +2936,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -3509,43 +2956,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0cf5549b-d586-4ed7-918d-9519a3776cfe + - d90573ea-848c-417c-97fd-fe3dbe39ed6c status: 200 OK code: 200 - duration: 110.553492ms - - id: 71 + duration: 44.709996ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 238 + content_length: 236 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"}' + body: '{"name":"tf-srv-optimistic-haibt","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: @@ -3560,34 +2999,26 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1746 + content_length: 1788 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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:34.639329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1746" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1788" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:56:35 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae350ea1-c326-4176-8316-dd3e469c46ee + - 7db0b51e-3c56-4cb6-9f95-b45066c2470d status: 201 Created code: 201 - duration: 3.255601367s - - id: 72 + duration: 1.364717945s + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3603,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/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -3611,32 +3042,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1746 + 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-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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:34.639329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1746" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1742" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 124ff79e-8a66-4691-ad4c-7eeb3da9f4f8 + - 6ccb02db-134e-43ef-95bc-fe60e6d73622 status: 200 OK code: 200 - duration: 148.807717ms - - id: 73 + duration: 138.334126ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3652,7 +3075,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -3660,32 +3083,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1746 + content_length: 1788 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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:34.639329+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1746" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1788" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d557346e-d549-47c1-9a38-31c508ed6e20 + - 00d93727-aa0c-4c4f-a4cd-f93ffce33891 status: 200 OK code: 200 - duration: 133.976343ms - - id: 74 + duration: 152.86423ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3701,7 +3116,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -3711,30 +3126,22 @@ interactions: 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"}' + body: '{"id":"2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:34.771978Z", "updated_at":"2025-10-29T22:56:34.771978Z", "references":[{"id":"b97902ad-8903-42be-8235-9b4c694e5794", "product_resource_type":"instance_server", "product_resource_id":"80c85af0-da43-4fc3-bb9b-7089afdc8289", "created_at":"2025-10-29T22:56:34.771978Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0d9b484f-bb73-4fa9-a1ba-7543012295cb + - aa81a1fa-9ea3-4a26-865e-f0d2a3247c04 status: 200 OK code: 200 - duration: 72.730551ms - - id: 75 + duration: 81.496638ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3752,7 +3159,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/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/action method: POST response: proto: HTTP/2.0 @@ -3762,32 +3169,24 @@ interactions: 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"}}' + body: '{"task": {"id": "f748ba99-f800-46e9-8ddc-f4ec5a0f8133", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/action", "href_result": "/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289", "started_at": "2025-10-29T22:56:36.085804+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:56:36 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/65b4f3e6-7f88-4fbf-b0f5-10b0c845efc8 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f748ba99-f800-46e9-8ddc-f4ec5a0f8133 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7bab2af2-a598-482a-9baa-a7ca5934f887 + - 2a72a40f-a908-43ce-8528-bc4aa883801e status: 202 Accepted code: 202 - duration: 496.305133ms - - id: 76 + duration: 325.277392ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3803,7 +3202,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -3811,32 +3210,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1768 + 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-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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:35.817181+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1768" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1764" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:20 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 327947ce-21ea-4f2d-aefa-d134b31cbd1f + - 06afa74d-19f9-4800-8e55-74dfaee3d2c4 status: 200 OK code: 200 - duration: 153.063375ms - - id: 77 + duration: 133.231201ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3852,7 +3243,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -3860,32 +3251,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 1944 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1902" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1944" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c45c0fdf-17c1-4cd0-9c54-eb2de930f872 + - 9137d4f9-2963-49d5-a305-5f822a2b941a status: 200 OK code: 200 - duration: 156.617125ms - - id: 78 + duration: 147.015173ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3901,7 +3284,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef method: GET response: proto: HTTP/2.0 @@ -3911,30 +3294,22 @@ interactions: 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"}' + body: '{"id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "name":"private_network_instance", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d53bab04-5e69-442d-b770-4c3dff5a49ef", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"04c59f03-e125-4dc3-8f4f-1404c08df31d", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"fd5f:519c:6d46:dabe::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' 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 + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 973715a5-892a-4f33-9695-339af916c07c + - f704143e-89a4-4baa-9893-a3e31d63607d status: 200 OK code: 200 - duration: 27.571387ms - - id: 79 + duration: 24.138585ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -3950,7 +3325,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -3958,32 +3333,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + 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":"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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1902" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5d9c9531-151f-420c-9e20-3137d90a8cb4 + - 8633276b-621c-4f54-be82-cbd4ca257d1b status: 200 OK code: 200 - duration: 156.777034ms - - id: 80 + duration: 158.132485ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3994,14 +3361,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512"}' + body: '{"private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef"}' 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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: POST response: proto: HTTP/2.0 @@ -4011,29 +3378,62 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "syncing", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:56:41.839096+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}}' 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 + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 577738ae-daf1-4882-8cab-0fbb88a7cb7e + - 7515e979-2ff4-47a2-8ad8-4606b5d50883 status: 201 Created code: 201 - duration: 629.342689ms + duration: 631.728471ms + - 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/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic": {"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "syncing", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:56:41.839096+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}}' + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 61bede28-961b-4f9d-b6f9-027fdf572f6a + status: 200 OK + code: 200 + duration: 110.098862ms - id: 81 request: proto: HTTP/1.1 @@ -4050,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/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad method: GET response: proto: HTTP/2.0 @@ -4060,29 +3460,21 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "syncing", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:56:41.839096+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}}' 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 + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 127d1e1e-ad8d-4363-899f-d178258fe8c1 + - 71ed0f73-a441-48c4-b2f1-cbad52b03e09 status: 200 OK code: 200 - duration: 95.046531ms + duration: 95.602792ms - id: 82 request: proto: HTTP/1.1 @@ -4099,7 +3491,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad method: GET response: proto: HTTP/2.0 @@ -4109,29 +3501,21 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "syncing", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:56:41.839096+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}}' 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 + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a9af08da-242b-462d-8b12-df2801ca8325 + - 77abeda4-cae7-4759-b5a7-acff01f760c8 status: 200 OK code: 200 - duration: 111.942009ms + duration: 114.78059ms - id: 83 request: proto: HTTP/1.1 @@ -4148,7 +3532,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad method: GET response: proto: HTTP/2.0 @@ -4158,29 +3542,21 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "syncing", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:56:41.839096+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}}' 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 + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 305ab916-c663-41ca-abda-b1a95fb69f11 + - 0a3e0f97-3b83-4834-983c-5239242735e0 status: 200 OK code: 200 - duration: 88.356617ms + duration: 127.326234ms - id: 84 request: proto: HTTP/1.1 @@ -4197,7 +3573,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad method: GET response: proto: HTTP/2.0 @@ -4207,29 +3583,21 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "syncing", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:56:41.839096+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6a3752dc-271f-4dfc-87f5-69c7ce0b7524 + - 41186b22-9bd4-4d80-86a6-d516ed848684 status: 200 OK code: 200 - duration: 118.409092ms + duration: 113.841034ms - id: 85 request: proto: HTTP/1.1 @@ -4246,7 +3614,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad method: GET response: proto: HTTP/2.0 @@ -4256,29 +3624,21 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "syncing", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:56:41.839096+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4fd59208-b86d-4fc4-8a85-4f211035b01e + - ec6c37e5-acb6-4c1e-8c1d-4af5c75dc723 status: 200 OK code: 200 - duration: 90.822637ms + duration: 112.23897ms - id: 86 request: proto: HTTP/1.1 @@ -4295,7 +3655,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad method: GET response: proto: HTTP/2.0 @@ -4305,29 +3665,21 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "syncing", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:56:41.839096+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a51145c8-16fa-442e-b52e-16eedc911b4c + - 9afb8622-cd4b-4354-849c-bde87a723235 status: 200 OK code: 200 - duration: 109.523833ms + duration: 100.242154ms - id: 87 request: proto: HTTP/1.1 @@ -4344,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/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad method: GET response: proto: HTTP/2.0 @@ -4354,29 +3706,21 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "syncing", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:56:41.839096+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3e6ff2c4-71ae-456b-91b0-c917ceeb8a81 + - 291086b5-7c47-448c-8cc5-cf4960145599 status: 200 OK code: 200 - duration: 100.168687ms + duration: 92.040725ms - id: 88 request: proto: HTTP/1.1 @@ -4393,7 +3737,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad method: GET response: proto: HTTP/2.0 @@ -4403,29 +3747,21 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "syncing", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:56:41.839096+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1efb657c-61d5-4dc9-ad9b-43c1729e4ada + - ebaab352-2a90-4f22-aae6-ed51ec0a9624 status: 200 OK code: 200 - duration: 102.6742ms + duration: 98.134142ms - id: 89 request: proto: HTTP/1.1 @@ -4442,7 +3778,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad method: GET response: proto: HTTP/2.0 @@ -4452,29 +3788,21 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "syncing", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:56:41.839096+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b4fcbb55-bf7b-4bc3-b18a-696df9eab2a0 + - d126343d-5a9f-4882-aa46-b60a3d6322b7 status: 200 OK code: 200 - duration: 113.192866ms + duration: 93.418764ms - id: 90 request: proto: HTTP/1.1 @@ -4491,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/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad method: GET response: proto: HTTP/2.0 @@ -4499,31 +3827,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + 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: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"}}' + body: '{"private_nic": {"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "syncing", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:56:41.839096+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}}' headers: Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "473" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:12 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 189cdc0a-1e93-40e1-ba6d-dfb2d1f11dea + - 7d6475b2-c261-4625-af1e-310ae9ccf2d9 status: 200 OK code: 200 - duration: 85.199802ms + duration: 104.744498ms - id: 91 request: proto: HTTP/1.1 @@ -4540,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/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad method: GET response: proto: HTTP/2.0 @@ -4550,29 +3870,21 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "available", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:57:37.384999+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5143a5e0-63a1-4d91-aecf-4e800d03f5f2 + - a6ec7bff-c858-4213-82a8-c52037068200 status: 200 OK code: 200 - duration: 100.296779ms + duration: 107.12992ms - id: 92 request: proto: HTTP/1.1 @@ -4589,7 +3901,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad method: GET response: proto: HTTP/2.0 @@ -4597,31 +3909,23 @@ 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":"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"}}' + body: '{"private_nic": {"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "available", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:57:37.384999+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}}' headers: Content-Length: - - "2360" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "475" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:12 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 35b7526a-0a52-41cb-80a5-82a3b5cf996b + - 71d3051d-f75c-4000-97e2-38772fdf2716 status: 200 OK code: 200 - duration: 160.358958ms + duration: 101.891423ms - id: 93 request: proto: HTTP/1.1 @@ -4638,7 +3942,48 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2402 + uncompressed: false + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "available", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:57:37.384999+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "2402" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - b6fbe021-8cae-454e-8bf4-fa45bd8ef5ec + status: 200 OK + code: 200 + duration: 146.179777ms + - 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/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -4648,30 +3993,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 91407c7e-d399-4ee5-abd5-c53af14e99d1 + - a8123b77-26e1-4370-a0f8-bb77236eb44b status: 404 Not Found code: 404 - duration: 29.90871ms - - id: 94 + duration: 35.070445ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4687,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/block/v1alpha1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -4697,30 +4034,22 @@ interactions: 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"}' + body: '{"id":"2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:34.771978Z", "updated_at":"2025-10-29T22:56:34.771978Z", "references":[{"id":"b97902ad-8903-42be-8235-9b4c694e5794", "product_resource_type":"instance_server", "product_resource_id":"80c85af0-da43-4fc3-bb9b-7089afdc8289", "created_at":"2025-10-29T22:56:34.771978Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f2c356b1-3c65-4965-bfc8-4a241889ae48 + - 5431980a-66e7-4121-858e-1a670b7c50f7 status: 200 OK code: 200 - duration: 94.129275ms - - id: 95 + duration: 86.621984ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4736,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/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/user_data method: GET response: proto: HTTP/2.0 @@ -4746,30 +4075,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d0ee6317-cee1-4b1f-b1ce-51581dc9a005 + - 904b9bff-5601-47e2-a6e6-6b767038963d status: 200 OK code: 200 - duration: 122.524829ms - - id: 96 + duration: 101.882937ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -4785,7 +4106,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -4795,34 +4116,26 @@ interactions: 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"}]}' + body: '{"private_nics": [{"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "available", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:57:37.384999+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}]}' 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 + - Wed, 29 Oct 2025 22:57:39 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9a991b6b-c9ad-46fe-b5c0-ae6a5f070d22 + - fcbd1a26-16aa-4893-98db-708b1a71eb55 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 95.498874ms - - id: 97 + duration: 149.855263ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4834,11 +4147,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - adc4f975-a3df-497e-a5d4-744191eb6dad + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + 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=adc4f975-a3df-497e-a5d4-744191eb6dad&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4846,32 +4167,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1080 + content_length: 1074 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}' + body: '{"total_count":2, "ips":[{"id":"4fc5557d-1fb9-482f-b100-f1afaf9c5a9c", "address":"fd5f:519c:6d46:dabe:280e:a5c:cd1:dc45/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:56:42.053233Z", "updated_at":"2025-10-29T22:56:42.053233Z", "source":{"subnet_id":"04c59f03-e125-4dc3-8f4f-1404c08df31d"}, "resource":{"type":"instance_private_nic", "id":"adc4f975-a3df-497e-a5d4-744191eb6dad", "mac_address":"02:00:00:14:65:62", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:56:41.913381Z", "updated_at":"2025-10-29T22:56:41.913381Z", "source":{"subnet_id":"d53bab04-5e69-442d-b770-4c3dff5a49ef"}, "resource":{"type":"instance_private_nic", "id":"adc4f975-a3df-497e-a5d4-744191eb6dad", "mac_address":"02:00:00:14:65:62", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1080" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1074" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:13 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 20b32a73-f71b-4459-b60f-9e7b5505ceac + - 7c54d5d2-b16f-42fe-a51a-cc16c1db5c0c status: 200 OK code: 200 - duration: 23.181016ms - - id: 98 + duration: 31.550361ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -4887,7 +4200,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -4897,34 +4210,26 @@ interactions: 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"}]}' + body: '{"private_nics": [{"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "available", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:57:37.384999+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}]}' 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 + - Wed, 29 Oct 2025 22:57:39 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0bede2aa-3300-46a8-9b74-aa952d1dfe5e + - ef63db32-e51c-4e02-97e6-9b292238fb52 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 116.045489ms - - id: 99 + duration: 102.094272ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -4940,7 +4245,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab method: GET response: proto: HTTP/2.0 @@ -4950,30 +4255,22 @@ interactions: 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"}' + body: '{"id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "name":"TestAccServer_PrivateNetwork", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.849448Z", "updated_at":"2025-10-29T22:55:27.849448Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3f5419ad-f106-4176-83dd-23df7fb84395 + - 418a5e04-cf20-4c21-b58f-67f0d073edff status: 200 OK code: 200 - duration: 26.749066ms - - id: 100 + duration: 35.140706ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -4989,7 +4286,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef method: GET response: proto: HTTP/2.0 @@ -4999,30 +4296,22 @@ interactions: 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"}' + body: '{"id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "name":"private_network_instance", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d53bab04-5e69-442d-b770-4c3dff5a49ef", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"04c59f03-e125-4dc3-8f4f-1404c08df31d", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"fd5f:519c:6d46:dabe::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d724d724-9b81-4cab-835c-41178007f97f + - e2ce11b7-4900-4513-ba1d-9b16f1ab45e3 status: 200 OK code: 200 - duration: 26.074401ms - - id: 101 + duration: 28.647241ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5038,7 +4327,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -5046,32 +4335,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 2402 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "available", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:57:37.384999+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2360" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2402" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:13 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ba367b3d-8c3a-4a90-a588-55cf9d6e9e4a + - e6f81528-dff5-4eb8-a4c4-df4252bb9b12 status: 200 OK code: 200 - duration: 158.764529ms - - id: 102 + duration: 147.871021ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5087,7 +4368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -5097,30 +4378,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - efea8a31-83b0-40fd-a061-ec3aee0ac06b + - 2efc91c4-8472-4be3-b404-34257e2d478a status: 404 Not Found code: 404 - duration: 30.782999ms - - id: 103 + duration: 37.398369ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5136,7 +4409,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -5146,30 +4419,22 @@ interactions: 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"}' + body: '{"id":"2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:34.771978Z", "updated_at":"2025-10-29T22:56:34.771978Z", "references":[{"id":"b97902ad-8903-42be-8235-9b4c694e5794", "product_resource_type":"instance_server", "product_resource_id":"80c85af0-da43-4fc3-bb9b-7089afdc8289", "created_at":"2025-10-29T22:56:34.771978Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 91c15bb6-11a6-4270-a533-616b010bd39d + - 218e375f-c775-4123-ab97-16169ecfc4a4 status: 200 OK code: 200 - duration: 96.417547ms - - id: 104 + duration: 80.173222ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5185,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/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/user_data method: GET response: proto: HTTP/2.0 @@ -5195,30 +4460,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 813fd45c-13f4-4a09-87ee-83d3a9a72e68 + - 5061c7ec-bd1f-47c4-9897-279f820caa84 status: 200 OK code: 200 - duration: 90.12649ms - - id: 105 + duration: 92.694002ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5234,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/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -5244,34 +4501,26 @@ interactions: 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"}]}' + body: '{"private_nics": [{"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "available", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:57:37.384999+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}]}' 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 + - Wed, 29 Oct 2025 22:57:40 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e0e444e9-b181-488b-875f-858e6099fa40 + - 821cf412-2012-4171-a671-c4b704020cab X-Total-Count: - "1" status: 200 OK code: 200 - duration: 110.390277ms - - id: 106 + duration: 99.660029ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5283,11 +4532,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - adc4f975-a3df-497e-a5d4-744191eb6dad + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + 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=adc4f975-a3df-497e-a5d4-744191eb6dad&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5295,32 +4552,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1080 + content_length: 1074 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}' + body: '{"total_count":2, "ips":[{"id":"4fc5557d-1fb9-482f-b100-f1afaf9c5a9c", "address":"fd5f:519c:6d46:dabe:280e:a5c:cd1:dc45/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:56:42.053233Z", "updated_at":"2025-10-29T22:56:42.053233Z", "source":{"subnet_id":"04c59f03-e125-4dc3-8f4f-1404c08df31d"}, "resource":{"type":"instance_private_nic", "id":"adc4f975-a3df-497e-a5d4-744191eb6dad", "mac_address":"02:00:00:14:65:62", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:56:41.913381Z", "updated_at":"2025-10-29T22:56:41.913381Z", "source":{"subnet_id":"d53bab04-5e69-442d-b770-4c3dff5a49ef"}, "resource":{"type":"instance_private_nic", "id":"adc4f975-a3df-497e-a5d4-744191eb6dad", "mac_address":"02:00:00:14:65:62", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1080" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1074" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:14 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 347a4f5e-846a-41bc-8e52-ecba3b44d570 + - 2124d839-94aa-4ebb-b99f-f35f2d7b9ad7 status: 200 OK code: 200 - duration: 26.796324ms - - id: 107 + duration: 30.32027ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5336,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/vpc/v2/regions/fr-par/vpcs/e66ecda9-bd5f-4fe6-8b52-18c578e9aa22 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab method: GET response: proto: HTTP/2.0 @@ -5346,30 +4595,22 @@ interactions: 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"}' + body: '{"id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "name":"TestAccServer_PrivateNetwork", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.849448Z", "updated_at":"2025-10-29T22:55:27.849448Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":1, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 68c78af7-3911-4bed-ba9a-9b6e8bfba655 + - 8cf2e68c-9fd9-4ded-85d0-3eef3ab33761 status: 200 OK code: 200 - duration: 35.734384ms - - id: 108 + duration: 51.592116ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5385,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/vpc/v2/regions/fr-par/private-networks/84d0bd91-8515-4104-a3d4-3952c3023512 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef method: GET response: proto: HTTP/2.0 @@ -5395,30 +4636,22 @@ interactions: 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"}' + body: '{"id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "name":"private_network_instance", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d53bab04-5e69-442d-b770-4c3dff5a49ef", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"04c59f03-e125-4dc3-8f4f-1404c08df31d", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"fd5f:519c:6d46:dabe::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6d7a935c-0ffc-4b32-836e-f1c84953d51e + - 9d123108-9de4-45ab-8368-d2b08b83806d status: 200 OK code: 200 - duration: 22.934082ms - - id: 109 + duration: 30.749022ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5434,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/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -5442,32 +4675,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 2442 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "available", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:57:37.384999+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "2360" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2442" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:14 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 70c8ca9b-8086-4578-8199-f607489a34e4 + - 9dde8a7f-ac42-4f5b-ab99-cf5e33f7c781 status: 200 OK code: 200 - duration: 133.568496ms - - id: 110 + duration: 130.601392ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5483,7 +4708,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -5493,30 +4718,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3df73a68-0a8a-4e03-b574-402389e63381 + - 68920c1f-002e-402b-9ba4-0fd078cf5d84 status: 404 Not Found code: 404 - duration: 30.913715ms - - id: 111 + duration: 27.803262ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5532,7 +4749,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -5542,30 +4759,22 @@ interactions: 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"}' + body: '{"id":"2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:34.771978Z", "updated_at":"2025-10-29T22:56:34.771978Z", "references":[{"id":"b97902ad-8903-42be-8235-9b4c694e5794", "product_resource_type":"instance_server", "product_resource_id":"80c85af0-da43-4fc3-bb9b-7089afdc8289", "created_at":"2025-10-29T22:56:34.771978Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 787886ac-df4d-49d6-abff-0296eacf7a01 + - 3bedd216-c340-4abe-99fd-8d30de2e9165 status: 200 OK code: 200 - duration: 88.315746ms - - id: 112 + duration: 96.513774ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5581,7 +4790,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/user_data method: GET response: proto: HTTP/2.0 @@ -5591,30 +4800,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dbcbe365-8567-42d8-81b4-8e056420d45c + - ce89e8a9-f627-4d64-80f5-a291ef4873b8 status: 200 OK code: 200 - duration: 85.579195ms - - id: 113 + duration: 131.511353ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -5630,7 +4831,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -5640,34 +4841,26 @@ interactions: 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"}]}' + body: '{"private_nics": [{"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "available", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:57:37.384999+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}]}' 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 + - Wed, 29 Oct 2025 22:57:40 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8594ea92-3afa-4160-bcc2-e12bf8960ff8 + - 4593b869-446a-4a75-8210-57f8af617177 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 94.869835ms - - id: 114 + duration: 107.335346ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5679,11 +4872,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - adc4f975-a3df-497e-a5d4-744191eb6dad + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + 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=adc4f975-a3df-497e-a5d4-744191eb6dad&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5691,32 +4892,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1080 + content_length: 1074 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}' + body: '{"total_count":2, "ips":[{"id":"4fc5557d-1fb9-482f-b100-f1afaf9c5a9c", "address":"fd5f:519c:6d46:dabe:280e:a5c:cd1:dc45/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:56:42.053233Z", "updated_at":"2025-10-29T22:56:42.053233Z", "source":{"subnet_id":"04c59f03-e125-4dc3-8f4f-1404c08df31d"}, "resource":{"type":"instance_private_nic", "id":"adc4f975-a3df-497e-a5d4-744191eb6dad", "mac_address":"02:00:00:14:65:62", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:56:41.913381Z", "updated_at":"2025-10-29T22:56:41.913381Z", "source":{"subnet_id":"d53bab04-5e69-442d-b770-4c3dff5a49ef"}, "resource":{"type":"instance_private_nic", "id":"adc4f975-a3df-497e-a5d4-744191eb6dad", "mac_address":"02:00:00:14:65:62", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1080" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1074" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:14 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bb0b89ac-734e-4d4a-9499-eb8c8a018db3 + - f364e424-5bae-4d50-9020-7403180136c3 status: 200 OK code: 200 - duration: 25.092549ms - - id: 115 + duration: 29.784007ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -5727,7 +4920,7 @@ interactions: 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}' + body: '{"name":"private_network_instance_02","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab","default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -5742,32 +4935,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 1098 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"}' + body: '{"id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "name":"private_network_instance_02", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"1b8fb22e-6b5b-491a-80d0-6921b151cd03", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "subnet":"172.17.108.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"8b6ce337-ac46-4d88-ad84-9d5f6b8fb22e", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "subnet":"fd5f:519c:6d46:1571::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:15 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0e1446e7-b88d-4529-8926-1cc0d83011cc + - 39e56d16-a16b-40fc-bd78-06bfaff2956f status: 200 OK code: 200 - duration: 609.637742ms - - id: 116 + duration: 624.206831ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -5783,7 +4968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3c55b96-528f-49af-95f1-bafdf4e557a4 method: GET response: proto: HTTP/2.0 @@ -5791,32 +4976,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 1098 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"}' + body: '{"id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "name":"private_network_instance_02", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"1b8fb22e-6b5b-491a-80d0-6921b151cd03", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "subnet":"172.17.108.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"8b6ce337-ac46-4d88-ad84-9d5f6b8fb22e", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "subnet":"fd5f:519c:6d46:1571::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:15 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9d022c41-6e32-478c-9c35-a7391cde96c6 + - c6b10a01-8024-42c4-9ef9-715b88e90c08 status: 200 OK code: 200 - duration: 26.695666ms - - id: 117 + duration: 27.520963ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -5832,7 +5009,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -5840,32 +5017,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 2356 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "available", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:57:37.384999+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2360" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2356" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:15 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 59a4f0b3-fbd1-47f5-9415-727662f16599 + - 1eec6aac-0df2-4ba7-af64-f66fd8bd3a22 status: 200 OK code: 200 - duration: 152.366265ms - - id: 118 + duration: 151.149493ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -5881,7 +5050,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -5891,34 +5060,26 @@ interactions: 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"}]}' + body: '{"private_nics": [{"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "available", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:57:37.384999+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}]}' 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 + - Wed, 29 Oct 2025 22:57:42 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f1fc9d96-4ab0-4090-b45b-48a1979d6472 + - b5172ee0-8464-4d16-8cb7-307bc9ffd633 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 111.130816ms - - id: 119 + duration: 133.973279ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -5934,7 +5095,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -5942,32 +5103,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 2356 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "available", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:57:37.384999+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2360" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2356" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:15 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2cfa3a05-8a34-4fe6-9a68-e18adf187c6d + - 27259eb5-a546-4d6e-8549-4a6bfa034255 status: 200 OK code: 200 - duration: 136.273921ms - - id: 120 + duration: 148.542217ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -5983,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/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad method: GET response: proto: HTTP/2.0 @@ -5993,30 +5146,22 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "adc4f975-a3df-497e-a5d4-744191eb6dad", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:14:65:62", "state": "available", "creation_date": "2025-10-29T22:56:41.606502+00:00", "modification_date": "2025-10-29T22:57:37.384999+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["f85c2e64-6b17-4ade-88e9-ae93c69d9e5f", "4fc5557d-1fb9-482f-b100-f1afaf9c5a9c"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d38ec25f-3606-4502-be51-1f3237624acf + - 90ba705d-8e08-498f-8166-d5d29b60be83 status: 200 OK code: 200 - duration: 97.853812ms - - id: 121 + duration: 103.028531ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -6032,7 +5177,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad method: DELETE response: proto: HTTP/2.0 @@ -6044,26 +5189,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae19f3dc-19c2-4101-8490-2c9995ee4f1c + - b14ca35b-8ea4-4b7c-ba7d-a8b594e17392 status: 204 No Content code: 204 - duration: 370.555173ms - - id: 122 + duration: 409.763173ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -6079,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/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad method: GET response: proto: HTTP/2.0 @@ -6089,30 +5226,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_private_nic", "resource_id": "adc4f975-a3df-497e-a5d4-744191eb6dad"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 61cc0827-c7c0-4009-907a-71472c99ca94 + - 2c5718a6-8215-4a42-b36f-bf0bd1b8c37a status: 404 Not Found code: 404 - duration: 96.085586ms - - id: 123 + duration: 95.973193ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -6123,14 +5252,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3"}' + body: '{"private_network_id":"f3c55b96-528f-49af-95f1-bafdf4e557a4"}' 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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: POST response: proto: HTTP/2.0 @@ -6140,30 +5269,22 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "syncing", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:43.204543+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5c0d88b4-4a71-4845-a0d0-18b4ad7f84c2 + - ca2578b9-ba69-43fe-8a36-0534f3cc5242 status: 201 Created code: 201 - duration: 633.903558ms - - id: 124 + duration: 697.919251ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -6179,7 +5300,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 method: GET response: proto: HTTP/2.0 @@ -6189,30 +5310,22 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "syncing", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:43.204543+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e26e236-632b-4f9b-b826-2615dac9e0ac + - 1dca76eb-c3d7-4f83-b86f-0238be11dc26 status: 200 OK code: 200 - duration: 128.195725ms - - id: 125 + duration: 94.276612ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -6228,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/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/5c947d93-5348-4fe3-821c-ca93b62f8b5c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 method: GET response: proto: HTTP/2.0 @@ -6238,30 +5351,22 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a61010a7-5902-44a8-94e3-b1d90c43e7b3 + - ee126000-61d0-432b-92a4-5060828ae039 status: 200 OK code: 200 - duration: 87.775238ms - - id: 126 + duration: 96.094792ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -6277,7 +5382,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 method: GET response: proto: HTTP/2.0 @@ -6287,30 +5392,22 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 850d6633-7762-453e-8a7a-fd426244deeb + - 1733348e-5eed-498b-a688-98e7c86ad52a status: 200 OK code: 200 - duration: 102.584447ms - - id: 127 + duration: 99.951827ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -6326,7 +5423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -6334,32 +5431,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 2356 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2360" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2356" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:22 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 70323837-a6c0-40fb-a984-96d62beb8fc8 + - 27c08b9f-f93e-41f3-a419-94f1f68a69a1 status: 200 OK code: 200 - duration: 142.208105ms - - id: 128 + duration: 160.670855ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -6375,7 +5464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -6383,32 +5472,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 2402 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2360" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2402" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:22 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7d67254c-b912-4052-868c-1cc1454e9315 + - 796c525a-1646-43fc-892a-109ba7a22181 status: 200 OK code: 200 - duration: 150.887479ms - - id: 129 + duration: 140.182524ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -6424,7 +5505,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -6434,30 +5515,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2194fe3b-761f-46bb-a5fe-6c0de3757e88 + - 8d57e4f5-8bca-43f1-b11c-4564a7c0452c status: 404 Not Found code: 404 - duration: 31.884457ms - - id: 130 + duration: 39.917992ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -6473,7 +5546,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -6483,30 +5556,22 @@ interactions: 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"}' + body: '{"id":"2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:34.771978Z", "updated_at":"2025-10-29T22:56:34.771978Z", "references":[{"id":"b97902ad-8903-42be-8235-9b4c694e5794", "product_resource_type":"instance_server", "product_resource_id":"80c85af0-da43-4fc3-bb9b-7089afdc8289", "created_at":"2025-10-29T22:56:34.771978Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6af8a933-405b-4721-a589-ed47f2451d35 + - f80c4b8a-245f-4433-a5c0-4ac95bcac574 status: 200 OK code: 200 - duration: 92.710492ms - - id: 131 + duration: 92.315685ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -6522,7 +5587,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/user_data method: GET response: proto: HTTP/2.0 @@ -6532,30 +5597,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7f48a522-a351-470c-a9d9-e7d3ec72fb5a + - 0e292f44-9ae0-42de-b0f5-26fd1be67f50 status: 200 OK code: 200 - duration: 128.341243ms - - id: 132 + duration: 96.54249ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -6571,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/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -6581,34 +5638,26 @@ interactions: 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"}]}' + body: '{"private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}]}' 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 + - Wed, 29 Oct 2025 22:57:49 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1d6e3ab9-8655-4382-90fa-b63aaca34cd1 + - bdeb1474-f544-4e06-b3d3-1a5ce7c84e1a X-Total-Count: - "1" status: 200 OK code: 200 - duration: 109.827439ms - - id: 133 + duration: 113.291789ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -6620,11 +5669,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + 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=855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -6632,32 +5689,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1077 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}' + body: '{"total_count":2, "ips":[{"id":"9f5aa989-9843-49c3-abbc-c8dce80ea870", "address":"fd5f:519c:6d46:1571:f106:1515:3146:ffd5/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:57:43.454224Z", "updated_at":"2025-10-29T22:57:43.454224Z", "source":{"subnet_id":"8b6ce337-ac46-4d88-ad84-9d5f6b8fb22e"}, "resource":{"type":"instance_private_nic", "id":"855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "mac_address":"02:00:00:15:84:90", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fd86d6e6-b295-40b6-8faf-dcde1d782468", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:57:43.321330Z", "updated_at":"2025-10-29T22:57:43.321330Z", "source":{"subnet_id":"1b8fb22e-6b5b-491a-80d0-6921b151cd03"}, "resource":{"type":"instance_private_nic", "id":"855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "mac_address":"02:00:00:15:84:90", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1077" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:23 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 96e882d3-3b5f-4582-a38e-5476cbd9cb68 + - 8779704f-06cb-4a9c-a16a-170ec1008152 status: 200 OK code: 200 - duration: 36.013679ms - - id: 134 + duration: 77.385501ms + - id: 135 request: proto: HTTP/1.1 proto_major: 1 @@ -6673,7 +5722,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -6683,34 +5732,26 @@ interactions: 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"}]}' + body: '{"private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}]}' 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 + - Wed, 29 Oct 2025 22:57:49 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bea4a292-edb2-4331-b74c-fcacbe1d3ba1 + - 8fc38734-bfc9-4e26-8e48-88f3e3e4dbd4 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 105.683608ms - - id: 135 + duration: 107.350546ms + - id: 136 request: proto: HTTP/1.1 proto_major: 1 @@ -6726,7 +5767,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab method: GET response: proto: HTTP/2.0 @@ -6736,30 +5777,22 @@ interactions: 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"}' + body: '{"id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "name":"TestAccServer_PrivateNetwork", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.849448Z", "updated_at":"2025-10-29T22:55:27.849448Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":2, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 01b91570-1540-47ff-98ff-765a11e400fa + - 58d12e50-6d77-4fc8-8e90-41bd195b2eef status: 200 OK code: 200 - duration: 28.296199ms - - id: 136 + duration: 27.416519ms + - id: 137 request: proto: HTTP/1.1 proto_major: 1 @@ -6775,7 +5808,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef method: GET response: proto: HTTP/2.0 @@ -6783,32 +5816,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 1094 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"}' + body: '{"id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "name":"private_network_instance", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d53bab04-5e69-442d-b770-4c3dff5a49ef", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"04c59f03-e125-4dc3-8f4f-1404c08df31d", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"fd5f:519c:6d46:dabe::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1094" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:23 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6fa3239c-25b0-4360-85da-2fd66adb3d38 + - 551a2b10-edf7-409a-8caa-d1f1b1eaaf99 status: 200 OK code: 200 - duration: 24.082197ms - - id: 137 + duration: 28.487332ms + - id: 138 request: proto: HTTP/1.1 proto_major: 1 @@ -6824,7 +5849,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3c55b96-528f-49af-95f1-bafdf4e557a4 method: GET response: proto: HTTP/2.0 @@ -6832,32 +5857,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1094 + content_length: 1098 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"}' + body: '{"id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "name":"private_network_instance_02", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"1b8fb22e-6b5b-491a-80d0-6921b151cd03", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "subnet":"172.17.108.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"8b6ce337-ac46-4d88-ad84-9d5f6b8fb22e", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "subnet":"fd5f:519c:6d46:1571::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1094" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:23 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4dc5588a-a99f-4964-95d4-02dc38939122 + - b1aa6903-38d3-4d48-b06c-e4e564b499fa status: 200 OK code: 200 - duration: 48.737208ms - - id: 138 + duration: 28.009939ms + - id: 139 request: proto: HTTP/1.1 proto_major: 1 @@ -6873,7 +5890,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -6881,32 +5898,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 2402 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2360" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2402" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:23 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d8f26439-2c73-43b2-a4b0-70cc6472848a + - 4f3897b7-2124-442f-a58b-10dd3f360446 status: 200 OK code: 200 - duration: 158.26801ms - - id: 139 + duration: 147.800964ms + - id: 140 request: proto: HTTP/1.1 proto_major: 1 @@ -6922,7 +5931,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -6932,30 +5941,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 323b35e8-fe2a-4675-b7dc-c5a26c1f6a32 + - 1f5341a3-ca42-4721-bdd4-34262d98cceb status: 404 Not Found code: 404 - duration: 38.26957ms - - id: 140 + duration: 31.404658ms + - id: 141 request: proto: HTTP/1.1 proto_major: 1 @@ -6971,7 +5972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -6981,30 +5982,22 @@ interactions: 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"}' + body: '{"id":"2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:34.771978Z", "updated_at":"2025-10-29T22:56:34.771978Z", "references":[{"id":"b97902ad-8903-42be-8235-9b4c694e5794", "product_resource_type":"instance_server", "product_resource_id":"80c85af0-da43-4fc3-bb9b-7089afdc8289", "created_at":"2025-10-29T22:56:34.771978Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 19302a04-b690-4fd2-bd15-6ff5fa55deb6 + - 0718f0dc-718f-4b8d-8d59-5692e32f1bba status: 200 OK code: 200 - duration: 83.182636ms - - id: 141 + duration: 96.332358ms + - id: 142 request: proto: HTTP/1.1 proto_major: 1 @@ -7020,7 +6013,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/user_data method: GET response: proto: HTTP/2.0 @@ -7030,30 +6023,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3b77a5c2-695c-4fa2-aba9-d337fd255ee4 + - 8671f497-f290-4153-aa1b-e50ef1ae2aed status: 200 OK code: 200 - duration: 137.671219ms - - id: 142 + duration: 96.847772ms + - id: 143 request: proto: HTTP/1.1 proto_major: 1 @@ -7069,7 +6054,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -7079,34 +6064,26 @@ interactions: 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"}]}' + body: '{"private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}]}' 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 + - Wed, 29 Oct 2025 22:57:50 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bf447638-45e1-4738-a9b4-ffe94a6b14b4 + - 527255b6-0676-4b3e-8337-3784550a101b X-Total-Count: - "1" status: 200 OK code: 200 - duration: 134.920622ms - - id: 143 + duration: 110.69964ms + - id: 144 request: proto: HTTP/1.1 proto_major: 1 @@ -7118,11 +6095,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + 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=855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -7130,32 +6115,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1077 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}' + body: '{"total_count":2, "ips":[{"id":"9f5aa989-9843-49c3-abbc-c8dce80ea870", "address":"fd5f:519c:6d46:1571:f106:1515:3146:ffd5/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:57:43.454224Z", "updated_at":"2025-10-29T22:57:43.454224Z", "source":{"subnet_id":"8b6ce337-ac46-4d88-ad84-9d5f6b8fb22e"}, "resource":{"type":"instance_private_nic", "id":"855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "mac_address":"02:00:00:15:84:90", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fd86d6e6-b295-40b6-8faf-dcde1d782468", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:57:43.321330Z", "updated_at":"2025-10-29T22:57:43.321330Z", "source":{"subnet_id":"1b8fb22e-6b5b-491a-80d0-6921b151cd03"}, "resource":{"type":"instance_private_nic", "id":"855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "mac_address":"02:00:00:15:84:90", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1077" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:24 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6caf12af-eae5-4fe9-88e0-a51108a70eb0 + - 0f600f5f-9274-4894-93c9-bcd616689890 status: 200 OK code: 200 - duration: 22.479572ms - - id: 144 + duration: 34.980577ms + - id: 145 request: proto: HTTP/1.1 proto_major: 1 @@ -7171,7 +6148,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab method: GET response: proto: HTTP/2.0 @@ -7181,30 +6158,22 @@ interactions: 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"}' + body: '{"id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "name":"TestAccServer_PrivateNetwork", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.849448Z", "updated_at":"2025-10-29T22:55:27.849448Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":2, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 49583cb8-ad40-42df-a166-0c91518ef058 + - 6daed32e-c5df-4032-8f1a-d154b17b9422 status: 200 OK code: 200 - duration: 28.203565ms - - id: 145 + duration: 25.376824ms + - id: 146 request: proto: HTTP/1.1 proto_major: 1 @@ -7220,7 +6189,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef method: GET response: proto: HTTP/2.0 @@ -7228,32 +6197,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 1094 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"}' + body: '{"id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "name":"private_network_instance", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d53bab04-5e69-442d-b770-4c3dff5a49ef", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"04c59f03-e125-4dc3-8f4f-1404c08df31d", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"fd5f:519c:6d46:dabe::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1094" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:24 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ed4f2c06-4f8f-40de-88e0-4c586a72e9a7 + - 3c554afd-27fc-4302-ad01-a3fced82272c status: 200 OK code: 200 - duration: 20.875995ms - - id: 146 + duration: 23.675563ms + - id: 147 request: proto: HTTP/1.1 proto_major: 1 @@ -7269,7 +6230,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3c55b96-528f-49af-95f1-bafdf4e557a4 method: GET response: proto: HTTP/2.0 @@ -7277,32 +6238,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1094 + content_length: 1098 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"}' + body: '{"id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "name":"private_network_instance_02", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"1b8fb22e-6b5b-491a-80d0-6921b151cd03", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "subnet":"172.17.108.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"8b6ce337-ac46-4d88-ad84-9d5f6b8fb22e", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "subnet":"fd5f:519c:6d46:1571::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1094" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:24 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b90c26ff-f8ff-4968-9907-b1cea0ff1efa + - 980e91a1-2f94-4581-bb1c-6b7d0d531e5a status: 200 OK code: 200 - duration: 28.404903ms - - id: 147 + duration: 26.275325ms + - id: 148 request: proto: HTTP/1.1 proto_major: 1 @@ -7318,7 +6271,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -7326,32 +6279,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 2402 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2360" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2402" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:24 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 79f829a6-f7c4-4513-ac1d-dc7a87f8c101 + - 086d9c7b-7d0d-46ec-ab33-85c4bbe34135 status: 200 OK code: 200 - duration: 138.088753ms - - id: 148 + duration: 164.933969ms + - id: 149 request: proto: HTTP/1.1 proto_major: 1 @@ -7367,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/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -7377,30 +6322,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 487cae1e-43c6-4cf3-8857-5a8ec300ff92 + - 4280db82-c0f6-47e8-9160-0cdcaff0869d status: 404 Not Found code: 404 - duration: 26.443024ms - - id: 149 + duration: 29.97712ms + - id: 150 request: proto: HTTP/1.1 proto_major: 1 @@ -7416,7 +6353,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -7426,30 +6363,22 @@ interactions: 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"}' + body: '{"id":"2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:34.771978Z", "updated_at":"2025-10-29T22:56:34.771978Z", "references":[{"id":"b97902ad-8903-42be-8235-9b4c694e5794", "product_resource_type":"instance_server", "product_resource_id":"80c85af0-da43-4fc3-bb9b-7089afdc8289", "created_at":"2025-10-29T22:56:34.771978Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3a023e1b-fb2d-4239-b50d-bdb0b9205fdb + - 54de3f7a-9674-4fec-a398-64e3fba5a259 status: 200 OK code: 200 - duration: 97.477982ms - - id: 150 + duration: 82.338684ms + - id: 151 request: proto: HTTP/1.1 proto_major: 1 @@ -7465,7 +6394,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/user_data method: GET response: proto: HTTP/2.0 @@ -7475,30 +6404,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9e12918c-b586-4084-9fed-cb3c9220efba + - 9bf84b07-985d-4daa-a110-af0e316bf477 status: 200 OK code: 200 - duration: 120.165535ms - - id: 151 + duration: 103.431426ms + - id: 152 request: proto: HTTP/1.1 proto_major: 1 @@ -7514,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/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -7524,34 +6445,26 @@ interactions: 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"}]}' + body: '{"private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}]}' 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 + - Wed, 29 Oct 2025 22:57:51 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d38a563a-98c9-44a6-aed8-906b61dc1a52 + - 58f8670b-240f-449b-88bd-3a5f98441788 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 119.771085ms - - id: 152 + duration: 121.289807ms + - id: 153 request: proto: HTTP/1.1 proto_major: 1 @@ -7563,11 +6476,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + 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=855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -7575,32 +6496,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1077 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}' + body: '{"total_count":2, "ips":[{"id":"9f5aa989-9843-49c3-abbc-c8dce80ea870", "address":"fd5f:519c:6d46:1571:f106:1515:3146:ffd5/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:57:43.454224Z", "updated_at":"2025-10-29T22:57:43.454224Z", "source":{"subnet_id":"8b6ce337-ac46-4d88-ad84-9d5f6b8fb22e"}, "resource":{"type":"instance_private_nic", "id":"855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "mac_address":"02:00:00:15:84:90", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fd86d6e6-b295-40b6-8faf-dcde1d782468", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:57:43.321330Z", "updated_at":"2025-10-29T22:57:43.321330Z", "source":{"subnet_id":"1b8fb22e-6b5b-491a-80d0-6921b151cd03"}, "resource":{"type":"instance_private_nic", "id":"855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "mac_address":"02:00:00:15:84:90", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1077" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:24 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0e43f061-4bb1-4fd4-9b99-77cd2f97b086 + - 7a32cbb8-8241-44b3-8972-54f8599efb25 status: 200 OK code: 200 - duration: 24.76142ms - - id: 153 + duration: 29.722212ms + - id: 154 request: proto: HTTP/1.1 proto_major: 1 @@ -7616,7 +6529,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -7624,32 +6537,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 2442 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "2360" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2442" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:25 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1a6f8eb9-03b8-4423-9286-88c289946088 + - beef2dba-96fa-4ea8-a555-09ab8a5816db status: 200 OK code: 200 - duration: 153.077339ms - - id: 154 + duration: 157.480999ms + - id: 155 request: proto: HTTP/1.1 proto_major: 1 @@ -7665,7 +6570,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -7675,34 +6580,26 @@ interactions: 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"}]}' + body: '{"private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}]}' 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 + - Wed, 29 Oct 2025 22:57:51 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fc89ec26-120b-4818-8fc9-6d574484d789 + - 9b1f85be-4116-46a0-ba45-6dda29240f30 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 98.138943ms - - id: 155 + duration: 100.747016ms + - id: 156 request: proto: HTTP/1.1 proto_major: 1 @@ -7718,7 +6615,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -7726,32 +6623,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 2402 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2360" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2402" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:25 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0403594c-5c2e-4c1a-814c-acd3847469ef + - 0a28192d-bcd5-4eb3-9d4b-c3856966f2fa status: 200 OK code: 200 - duration: 152.129823ms - - id: 156 + duration: 146.412167ms + - id: 157 request: proto: HTTP/1.1 proto_major: 1 @@ -7762,14 +6651,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512"}' + body: '{"private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef"}' 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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: POST response: proto: HTTP/2.0 @@ -7779,30 +6668,22 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "syncing", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:52.383828+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f0b01138-a087-4d3b-9c6b-77a1fa6710ec + - 9daa0eea-d5ef-44f5-862b-da255900fd59 status: 201 Created code: 201 - duration: 510.014551ms - - id: 157 + duration: 638.764533ms + - id: 158 request: proto: HTTP/1.1 proto_major: 1 @@ -7818,7 +6699,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/bfa71825-f835-4642-a841-3fca02d9f73e method: GET response: proto: HTTP/2.0 @@ -7828,30 +6709,22 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "syncing", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:52.383828+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7d9a1828-b3c3-48de-80fa-ae589bdd2534 + - 2d07bb80-df22-4994-ac79-d3f59bc2d455 status: 200 OK code: 200 - duration: 101.493783ms - - id: 158 + duration: 93.760228ms + - id: 159 request: proto: HTTP/1.1 proto_major: 1 @@ -7867,7 +6740,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/bfa71825-f835-4642-a841-3fca02d9f73e method: GET response: proto: HTTP/2.0 @@ -7877,30 +6750,22 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "available", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:53.477020+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 623850e0-309a-4c2a-b5ac-4cc9abc52d5b + - e96e75d6-ca59-4c27-ae2a-ea7ab000aec2 status: 200 OK code: 200 - duration: 100.553204ms - - id: 159 + duration: 115.752541ms + - id: 160 request: proto: HTTP/1.1 proto_major: 1 @@ -7916,7 +6781,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/bfa71825-f835-4642-a841-3fca02d9f73e method: GET response: proto: HTTP/2.0 @@ -7926,30 +6791,22 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "available", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:53.477020+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9f829465-e178-44dd-b4e7-b146b58335ff + - d15b5302-71bc-4b1b-acee-2d44e2449686 status: 200 OK code: 200 - duration: 109.380226ms - - id: 160 + duration: 93.34949ms + - id: 161 request: proto: HTTP/1.1 proto_major: 1 @@ -7965,7 +6822,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -7973,32 +6830,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2820 + content_length: 2902 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}, {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "available", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:53.477020+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "2820" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2902" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:31 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 104d53c3-1349-4973-b241-939a5a7888b5 + - d3747115-eae8-423e-8753-98e81ecf8434 status: 200 OK code: 200 - duration: 167.665862ms - - id: 161 + duration: 152.407643ms + - id: 162 request: proto: HTTP/1.1 proto_major: 1 @@ -8014,7 +6863,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -8022,32 +6871,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2820 + content_length: 2816 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}, {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "available", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:53.477020+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2820" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2816" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:31 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 41582162-903c-47c4-b737-f26a95044dde + - 6b5ddb46-fa90-4e92-a541-50926532d507 status: 200 OK code: 200 - duration: 157.951756ms - - id: 162 + duration: 131.683419ms + - id: 163 request: proto: HTTP/1.1 proto_major: 1 @@ -8063,7 +6904,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -8073,30 +6914,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7d0a942a-95b9-4cad-b849-5441f32731b7 + - b8ae0c56-8021-4139-9004-a509615378e4 status: 404 Not Found code: 404 - duration: 31.775103ms - - id: 163 + duration: 31.339117ms + - id: 164 request: proto: HTTP/1.1 proto_major: 1 @@ -8112,7 +6945,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -8122,30 +6955,22 @@ interactions: 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"}' + body: '{"id":"2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:34.771978Z", "updated_at":"2025-10-29T22:56:34.771978Z", "references":[{"id":"b97902ad-8903-42be-8235-9b4c694e5794", "product_resource_type":"instance_server", "product_resource_id":"80c85af0-da43-4fc3-bb9b-7089afdc8289", "created_at":"2025-10-29T22:56:34.771978Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 33bf241d-8b62-47a4-82f0-58984bc15a87 + - d9bddea3-8fab-4158-b1e4-55a90514efe2 status: 200 OK code: 200 - duration: 515.123805ms - - id: 164 + duration: 95.89432ms + - id: 165 request: proto: HTTP/1.1 proto_major: 1 @@ -8161,7 +6986,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/user_data method: GET response: proto: HTTP/2.0 @@ -8171,30 +6996,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 64bbe4ab-d748-42c7-a131-979a0c8d0d83 + - a45eb237-a340-44ed-8307-397f19f184b2 status: 200 OK code: 200 - duration: 92.360503ms - - id: 165 + duration: 121.586594ms + - id: 166 request: proto: HTTP/1.1 proto_major: 1 @@ -8210,7 +7027,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -8220,34 +7037,26 @@ interactions: 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"}]}' + body: '{"private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}, {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "available", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:53.477020+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}]}' 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 + - Wed, 29 Oct 2025 22:57:58 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e30c927b-591a-4ac5-9fb7-ac95e8ae6152 + - 5bfda61a-046e-416a-ba58-8968da0cf02e X-Total-Count: - "2" status: 200 OK code: 200 - duration: 107.794754ms - - id: 166 + duration: 113.658796ms + - id: 167 request: proto: HTTP/1.1 proto_major: 1 @@ -8259,11 +7068,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + 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=855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -8271,32 +7088,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1077 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}' + body: '{"total_count":2, "ips":[{"id":"9f5aa989-9843-49c3-abbc-c8dce80ea870", "address":"fd5f:519c:6d46:1571:f106:1515:3146:ffd5/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:57:43.454224Z", "updated_at":"2025-10-29T22:57:43.454224Z", "source":{"subnet_id":"8b6ce337-ac46-4d88-ad84-9d5f6b8fb22e"}, "resource":{"type":"instance_private_nic", "id":"855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "mac_address":"02:00:00:15:84:90", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fd86d6e6-b295-40b6-8faf-dcde1d782468", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:57:43.321330Z", "updated_at":"2025-10-29T22:57:43.321330Z", "source":{"subnet_id":"1b8fb22e-6b5b-491a-80d0-6921b151cd03"}, "resource":{"type":"instance_private_nic", "id":"855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "mac_address":"02:00:00:15:84:90", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1077" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:32 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1d5d9b6a-c4a9-4dd5-8498-ed562cbca25e + - f892c517-bb5d-4727-819c-919c7d806830 status: 200 OK code: 200 - duration: 21.831849ms - - id: 167 + duration: 25.677276ms + - id: 168 request: proto: HTTP/1.1 proto_major: 1 @@ -8308,11 +7117,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - bfa71825-f835-4642-a841-3fca02d9f73e + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + 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=bfa71825-f835-4642-a841-3fca02d9f73e&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -8320,32 +7137,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1076 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}' + body: '{"total_count":2, "ips":[{"id":"5e1017ed-fa7e-4049-806a-075eb4628797", "address":"fd5f:519c:6d46:dabe:eef9:21e1:e787:18f1/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:57:52.595105Z", "updated_at":"2025-10-29T22:57:52.595105Z", "source":{"subnet_id":"04c59f03-e125-4dc3-8f4f-1404c08df31d"}, "resource":{"type":"instance_private_nic", "id":"bfa71825-f835-4642-a841-3fca02d9f73e", "mac_address":"02:00:00:12:E3:2D", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"816ba9c0-89fe-4011-af22-a3047634cd62", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:57:52.479824Z", "updated_at":"2025-10-29T22:57:52.479824Z", "source":{"subnet_id":"d53bab04-5e69-442d-b770-4c3dff5a49ef"}, "resource":{"type":"instance_private_nic", "id":"bfa71825-f835-4642-a841-3fca02d9f73e", "mac_address":"02:00:00:12:E3:2D", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:32 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3d380c61-4282-4edd-afb3-2417d2893a37 + - 2ebcb336-e90d-486d-b577-5e9bb8c8cf26 status: 200 OK code: 200 - duration: 27.73093ms - - id: 168 + duration: 53.770081ms + - id: 169 request: proto: HTTP/1.1 proto_major: 1 @@ -8361,7 +7170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -8371,34 +7180,26 @@ interactions: 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"}]}' + body: '{"private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}, {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "available", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:53.477020+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}]}' 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 + - Wed, 29 Oct 2025 22:57:59 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d9bb131e-d651-4f0e-8f45-f4d88881c338 + - b272c1d5-0e28-4540-ae9f-975536ba7f16 X-Total-Count: - "2" status: 200 OK code: 200 - duration: 101.32907ms - - id: 169 + duration: 116.241737ms + - id: 170 request: proto: HTTP/1.1 proto_major: 1 @@ -8414,7 +7215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab method: GET response: proto: HTTP/2.0 @@ -8424,30 +7225,22 @@ interactions: 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"}' + body: '{"id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "name":"TestAccServer_PrivateNetwork", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.849448Z", "updated_at":"2025-10-29T22:55:27.849448Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":2, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1d763467-3d9f-4a07-99b5-ee20a60e858f + - 95ee55e8-fdc5-40e4-840e-df022bde184a status: 200 OK code: 200 - duration: 25.975028ms - - id: 170 + duration: 33.969056ms + - id: 171 request: proto: HTTP/1.1 proto_major: 1 @@ -8463,7 +7256,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3c55b96-528f-49af-95f1-bafdf4e557a4 method: GET response: proto: HTTP/2.0 @@ -8471,32 +7264,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1094 + content_length: 1098 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"}' + body: '{"id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "name":"private_network_instance_02", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"1b8fb22e-6b5b-491a-80d0-6921b151cd03", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "subnet":"172.17.108.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"8b6ce337-ac46-4d88-ad84-9d5f6b8fb22e", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "subnet":"fd5f:519c:6d46:1571::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1094" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:32 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6ef25c1d-eeb2-413e-bbfc-a613baf205ce + - 17ff5d3f-2d91-4377-b945-4e6ef1761707 status: 200 OK code: 200 - duration: 20.84097ms - - id: 171 + duration: 25.063679ms + - id: 172 request: proto: HTTP/1.1 proto_major: 1 @@ -8512,7 +7297,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef method: GET response: proto: HTTP/2.0 @@ -8520,32 +7305,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 1094 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"}' + body: '{"id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "name":"private_network_instance", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d53bab04-5e69-442d-b770-4c3dff5a49ef", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"04c59f03-e125-4dc3-8f4f-1404c08df31d", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"fd5f:519c:6d46:dabe::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1094" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:32 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 08b81439-269f-49d7-bf02-fec340198cf7 + - b1ea7390-cdaf-4e7f-a5bb-68dcd2dd8d91 status: 200 OK code: 200 - duration: 26.514179ms - - id: 172 + duration: 25.151934ms + - id: 173 request: proto: HTTP/1.1 proto_major: 1 @@ -8561,7 +7338,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -8569,32 +7346,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2820 + content_length: 2816 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}, {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "available", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:53.477020+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2820" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2816" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:32 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f09a307c-54bd-45c1-8530-08a3d9de48f5 + - 4b035a18-abf0-4a46-8e5d-8b8d13534143 status: 200 OK code: 200 - duration: 152.024703ms - - id: 173 + duration: 135.393369ms + - id: 174 request: proto: HTTP/1.1 proto_major: 1 @@ -8610,7 +7379,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -8620,30 +7389,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e6ae9d8-80b0-4a83-91b4-aa20240be174 + - 8d726b58-2516-4de6-8d8b-969fb1f4209e status: 404 Not Found code: 404 - duration: 26.118306ms - - id: 174 + duration: 32.197181ms + - id: 175 request: proto: HTTP/1.1 proto_major: 1 @@ -8659,7 +7420,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -8669,30 +7430,22 @@ interactions: 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"}' + body: '{"id":"2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:34.771978Z", "updated_at":"2025-10-29T22:56:34.771978Z", "references":[{"id":"b97902ad-8903-42be-8235-9b4c694e5794", "product_resource_type":"instance_server", "product_resource_id":"80c85af0-da43-4fc3-bb9b-7089afdc8289", "created_at":"2025-10-29T22:56:34.771978Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f8d049f4-e041-4c34-9a24-b398c6f123f7 + - 053a4875-fd23-4ed1-8ecc-c8594e60e684 status: 200 OK code: 200 - duration: 107.473883ms - - id: 175 + duration: 104.302066ms + - id: 176 request: proto: HTTP/1.1 proto_major: 1 @@ -8708,7 +7461,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/user_data method: GET response: proto: HTTP/2.0 @@ -8718,30 +7471,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f5ca21ca-536f-4bff-9a4a-0f044e6418ac + - b5f35890-d5e8-4a53-bc8e-c28ab1c3124c status: 200 OK code: 200 - duration: 111.453245ms - - id: 176 + duration: 99.399176ms + - id: 177 request: proto: HTTP/1.1 proto_major: 1 @@ -8757,7 +7502,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -8767,34 +7512,26 @@ interactions: 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"}]}' + body: '{"private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}, {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "available", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:53.477020+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}]}' 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 + - Wed, 29 Oct 2025 22:57:59 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2c8feb26-ac47-4eef-81b2-ecc0169d6d69 + - dd465ea2-e09d-40d7-bde2-a6e09bcfc92d X-Total-Count: - "2" status: 200 OK code: 200 - duration: 98.997268ms - - id: 177 + duration: 108.446137ms + - id: 178 request: proto: HTTP/1.1 proto_major: 1 @@ -8806,11 +7543,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + 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=855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -8818,32 +7563,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1077 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}' + body: '{"total_count":2, "ips":[{"id":"9f5aa989-9843-49c3-abbc-c8dce80ea870", "address":"fd5f:519c:6d46:1571:f106:1515:3146:ffd5/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:57:43.454224Z", "updated_at":"2025-10-29T22:57:43.454224Z", "source":{"subnet_id":"8b6ce337-ac46-4d88-ad84-9d5f6b8fb22e"}, "resource":{"type":"instance_private_nic", "id":"855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "mac_address":"02:00:00:15:84:90", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fd86d6e6-b295-40b6-8faf-dcde1d782468", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:57:43.321330Z", "updated_at":"2025-10-29T22:57:43.321330Z", "source":{"subnet_id":"1b8fb22e-6b5b-491a-80d0-6921b151cd03"}, "resource":{"type":"instance_private_nic", "id":"855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "mac_address":"02:00:00:15:84:90", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1077" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:33 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f0b41700-9cb3-44dd-a397-d83e2881fd68 + - 8d82894c-8317-44bb-ae4c-f6adea4eb76d status: 200 OK code: 200 - duration: 32.573321ms - - id: 178 + duration: 30.640059ms + - id: 179 request: proto: HTTP/1.1 proto_major: 1 @@ -8855,11 +7592,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - bfa71825-f835-4642-a841-3fca02d9f73e + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + 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=bfa71825-f835-4642-a841-3fca02d9f73e&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -8867,32 +7612,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1076 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}' + body: '{"total_count":2, "ips":[{"id":"5e1017ed-fa7e-4049-806a-075eb4628797", "address":"fd5f:519c:6d46:dabe:eef9:21e1:e787:18f1/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:57:52.595105Z", "updated_at":"2025-10-29T22:57:52.595105Z", "source":{"subnet_id":"04c59f03-e125-4dc3-8f4f-1404c08df31d"}, "resource":{"type":"instance_private_nic", "id":"bfa71825-f835-4642-a841-3fca02d9f73e", "mac_address":"02:00:00:12:E3:2D", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"816ba9c0-89fe-4011-af22-a3047634cd62", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:57:52.479824Z", "updated_at":"2025-10-29T22:57:52.479824Z", "source":{"subnet_id":"d53bab04-5e69-442d-b770-4c3dff5a49ef"}, "resource":{"type":"instance_private_nic", "id":"bfa71825-f835-4642-a841-3fca02d9f73e", "mac_address":"02:00:00:12:E3:2D", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:33 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ec937288-387e-4925-8f18-5a7fd86c7b93 + - ae9f0e27-e379-4f26-97be-050383d43429 status: 200 OK code: 200 - duration: 27.509094ms - - id: 179 + duration: 25.146905ms + - id: 180 request: proto: HTTP/1.1 proto_major: 1 @@ -8908,7 +7645,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab method: GET response: proto: HTTP/2.0 @@ -8918,30 +7655,22 @@ interactions: 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"}' + body: '{"id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "name":"TestAccServer_PrivateNetwork", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.849448Z", "updated_at":"2025-10-29T22:55:27.849448Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":2, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' 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 + - Wed, 29 Oct 2025 22:58:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e56a3aef-67dc-40d3-9cec-68e8eaa7b526 + - 2acc4cc1-69e0-467f-8be1-3650096ee34c status: 200 OK code: 200 - duration: 22.656124ms - - id: 180 + duration: 266.047595ms + - id: 181 request: proto: HTTP/1.1 proto_major: 1 @@ -8957,7 +7686,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef method: GET response: proto: HTTP/2.0 @@ -8965,32 +7694,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 1094 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"}' + body: '{"id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "name":"private_network_instance", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d53bab04-5e69-442d-b770-4c3dff5a49ef", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"04c59f03-e125-4dc3-8f4f-1404c08df31d", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"fd5f:519c:6d46:dabe::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1094" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:33 GMT + - Wed, 29 Oct 2025 22:58:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 369e629e-c946-47dc-a3ab-5ad15a77f873 + - f33dbe6b-a3a2-4bd1-aa38-6c476f5e095f status: 200 OK code: 200 - duration: 28.903659ms - - id: 181 + duration: 23.142787ms + - id: 182 request: proto: HTTP/1.1 proto_major: 1 @@ -9006,7 +7727,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3c55b96-528f-49af-95f1-bafdf4e557a4 method: GET response: proto: HTTP/2.0 @@ -9014,32 +7735,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1094 + content_length: 1098 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"}' + body: '{"id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "name":"private_network_instance_02", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"1b8fb22e-6b5b-491a-80d0-6921b151cd03", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "subnet":"172.17.108.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"8b6ce337-ac46-4d88-ad84-9d5f6b8fb22e", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "subnet":"fd5f:519c:6d46:1571::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1094" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:33 GMT + - Wed, 29 Oct 2025 22:58:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 25dc1531-4043-452a-8847-f88fa096d902 + - 3a87dcae-1fd0-4926-b3fa-3ae7afb00794 status: 200 OK code: 200 - duration: 28.835471ms - - id: 182 + duration: 33.054334ms + - id: 183 request: proto: HTTP/1.1 proto_major: 1 @@ -9055,7 +7768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -9063,32 +7776,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2820 + content_length: 2902 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}, {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "available", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:53.477020+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "2820" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2902" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:33 GMT + - Wed, 29 Oct 2025 22:58:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b7f80548-6381-4af2-8c52-1f458eed500e + - 817518e3-b775-4f13-ab84-829df81f9629 status: 200 OK code: 200 - duration: 141.610195ms - - id: 183 + duration: 383.951832ms + - id: 184 request: proto: HTTP/1.1 proto_major: 1 @@ -9104,7 +7809,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -9114,30 +7819,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' 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 + - Wed, 29 Oct 2025 22:58:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6ca5c33f-6beb-435b-bada-d7543c73379c + - bc2439e9-0fa6-42eb-9944-ae6074fac1b4 status: 404 Not Found code: 404 - duration: 39.618652ms - - id: 184 + duration: 30.31421ms + - id: 185 request: proto: HTTP/1.1 proto_major: 1 @@ -9153,7 +7850,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -9163,30 +7860,22 @@ interactions: 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"}' + body: '{"id":"2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:34.771978Z", "updated_at":"2025-10-29T22:56:34.771978Z", "references":[{"id":"b97902ad-8903-42be-8235-9b4c694e5794", "product_resource_type":"instance_server", "product_resource_id":"80c85af0-da43-4fc3-bb9b-7089afdc8289", "created_at":"2025-10-29T22:56:34.771978Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:58:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 824c7a96-5e68-41b0-9ba3-779527ab1334 + - 6ec6b36e-fceb-4ac3-bc0a-a40104fbca71 status: 200 OK code: 200 - duration: 85.218501ms - - id: 185 + duration: 78.359003ms + - id: 186 request: proto: HTTP/1.1 proto_major: 1 @@ -9202,7 +7891,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/user_data method: GET response: proto: HTTP/2.0 @@ -9212,30 +7901,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:58:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 03229821-8ab9-447b-9790-20f8e27f9b4c + - c3513870-b771-429d-839c-b4b3d9fb56a2 status: 200 OK code: 200 - duration: 93.007486ms - - id: 186 + duration: 97.820423ms + - id: 187 request: proto: HTTP/1.1 proto_major: 1 @@ -9251,7 +7932,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -9261,34 +7942,26 @@ interactions: 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"}]}' + body: '{"private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}, {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "available", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:53.477020+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}]}' 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 + - Wed, 29 Oct 2025 22:58:00 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9859ed40-80c9-423b-8d9b-d215a3fa0a1c + - 967d975c-5ea3-4400-8fef-aedbd7e75842 X-Total-Count: - "2" status: 200 OK code: 200 - duration: 108.95981ms - - id: 187 + duration: 96.505864ms + - id: 188 request: proto: HTTP/1.1 proto_major: 1 @@ -9300,11 +7973,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + 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=855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -9312,32 +7993,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1077 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}' + body: '{"total_count":2, "ips":[{"id":"9f5aa989-9843-49c3-abbc-c8dce80ea870", "address":"fd5f:519c:6d46:1571:f106:1515:3146:ffd5/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:57:43.454224Z", "updated_at":"2025-10-29T22:57:43.454224Z", "source":{"subnet_id":"8b6ce337-ac46-4d88-ad84-9d5f6b8fb22e"}, "resource":{"type":"instance_private_nic", "id":"855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "mac_address":"02:00:00:15:84:90", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"fd86d6e6-b295-40b6-8faf-dcde1d782468", "address":"172.17.108.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:57:43.321330Z", "updated_at":"2025-10-29T22:57:43.321330Z", "source":{"subnet_id":"1b8fb22e-6b5b-491a-80d0-6921b151cd03"}, "resource":{"type":"instance_private_nic", "id":"855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "mac_address":"02:00:00:15:84:90", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1077" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:33 GMT + - Wed, 29 Oct 2025 22:58:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a4875ecd-a603-4d63-9084-f6dc35869dfe + - b35bf394-ff7b-4320-b89c-29a38cdd9c73 status: 200 OK code: 200 - duration: 21.13381ms - - id: 188 + duration: 24.245018ms + - id: 189 request: proto: HTTP/1.1 proto_major: 1 @@ -9349,11 +8022,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - bfa71825-f835-4642-a841-3fca02d9f73e + resource_type: + - instance_private_nic headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + 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=bfa71825-f835-4642-a841-3fca02d9f73e&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -9361,32 +8042,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1076 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}' + body: '{"total_count":2, "ips":[{"id":"5e1017ed-fa7e-4049-806a-075eb4628797", "address":"fd5f:519c:6d46:dabe:eef9:21e1:e787:18f1/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":true, "created_at":"2025-10-29T22:57:52.595105Z", "updated_at":"2025-10-29T22:57:52.595105Z", "source":{"subnet_id":"04c59f03-e125-4dc3-8f4f-1404c08df31d"}, "resource":{"type":"instance_private_nic", "id":"bfa71825-f835-4642-a841-3fca02d9f73e", "mac_address":"02:00:00:12:E3:2D", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"816ba9c0-89fe-4011-af22-a3047634cd62", "address":"172.18.36.2/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_ipv6":false, "created_at":"2025-10-29T22:57:52.479824Z", "updated_at":"2025-10-29T22:57:52.479824Z", "source":{"subnet_id":"d53bab04-5e69-442d-b770-4c3dff5a49ef"}, "resource":{"type":"instance_private_nic", "id":"bfa71825-f835-4642-a841-3fca02d9f73e", "mac_address":"02:00:00:12:E3:2D", "name":"tf-srv-optimistic-haibt"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1076" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:33 GMT + - Wed, 29 Oct 2025 22:58:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c6999eef-a5d6-4a60-b65e-ab6b9565e3b3 + - 9a7d3d26-ab62-4083-80df-4e64b4886b1c status: 200 OK code: 200 - duration: 23.688721ms - - id: 189 + duration: 26.042059ms + - id: 190 request: proto: HTTP/1.1 proto_major: 1 @@ -9402,7 +8075,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -9410,32 +8083,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2820 + content_length: 2816 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}, {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "available", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:53.477020+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2820" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2816" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:34 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4184696-301a-4b58-afd7-86849fdb6184 + - 7e69baf2-1317-44e0-8500-55a26c63132f status: 200 OK code: 200 - duration: 154.002434ms - - id: 190 + duration: 162.032245ms + - id: 191 request: proto: HTTP/1.1 proto_major: 1 @@ -9451,7 +8116,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -9461,34 +8126,26 @@ interactions: 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"}]}' + body: '{"private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}, {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "available", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:53.477020+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}]}' 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 + - Wed, 29 Oct 2025 22:58:01 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 55ca93c1-2a5b-4eb9-a838-f534480acdcd + - 1af53d4b-a1f6-43e8-9dff-5691b54cc498 X-Total-Count: - "2" status: 200 OK code: 200 - duration: 97.401997ms - - id: 191 + duration: 132.013117ms + - id: 192 request: proto: HTTP/1.1 proto_major: 1 @@ -9504,7 +8161,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -9512,32 +8169,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2820 + content_length: 2816 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}, {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "available", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:53.477020+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2820" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2816" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:34 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2679428d-c243-41a7-a5c7-2216ba030edb + - 9fbfae33-410e-4232-a3e2-29a5f66408ea status: 200 OK code: 200 - duration: 152.798005ms - - id: 192 + duration: 145.115433ms + - id: 193 request: proto: HTTP/1.1 proto_major: 1 @@ -9553,7 +8202,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 method: GET response: proto: HTTP/2.0 @@ -9563,30 +8212,22 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1", "private_network_id": "f3c55b96-528f-49af-95f1-bafdf4e557a4", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:15:84:90", "state": "available", "creation_date": "2025-10-29T22:57:42.948784+00:00", "modification_date": "2025-10-29T22:57:44.181910+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["fd86d6e6-b295-40b6-8faf-dcde1d782468", "9f5aa989-9843-49c3-abbc-c8dce80ea870"]}}' 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b1bc40d6-f76d-414e-9d08-d89555e79fb0 + - 48c86362-dbd4-489b-b2a7-5d7e4be54aff status: 200 OK code: 200 - duration: 119.67299ms - - id: 193 + duration: 112.957415ms + - id: 194 request: proto: HTTP/1.1 proto_major: 1 @@ -9602,7 +8243,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 method: DELETE response: proto: HTTP/2.0 @@ -9614,26 +8255,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4756b21b-770e-42dc-aac3-7a1db2efbfdc + - 4e0e6a74-700d-4632-9762-593a1947d24f status: 204 No Content code: 204 - duration: 420.094638ms - - id: 194 + duration: 438.347033ms + - id: 195 request: proto: HTTP/1.1 proto_major: 1 @@ -9649,7 +8282,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 method: GET response: proto: HTTP/2.0 @@ -9659,30 +8292,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_private_nic", "resource_id": "855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1"}' 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d5805fa4-817d-4430-8ab6-a2aa3a8059ab + - d0d308d9-6065-4859-bf45-675c972dd219 status: 404 Not Found code: 404 - duration: 90.879117ms - - id: 195 + duration: 115.74566ms + - id: 196 request: proto: HTTP/1.1 proto_major: 1 @@ -9698,7 +8323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -9706,32 +8331,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 2356 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "available", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:53.477020+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2360" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2356" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:35 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ea727195-8648-4faf-a2cc-833d2ad58ba3 + - 0878e90e-6a91-4eef-95f5-08e95515d146 status: 200 OK code: 200 - duration: 180.423049ms - - id: 196 + duration: 140.024853ms + - id: 197 request: proto: HTTP/1.1 proto_major: 1 @@ -9747,7 +8364,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/bfa71825-f835-4642-a841-3fca02d9f73e method: GET response: proto: HTTP/2.0 @@ -9757,30 +8374,22 @@ interactions: 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"}}' + body: '{"private_nic": {"id": "bfa71825-f835-4642-a841-3fca02d9f73e", "private_network_id": "55c55c2c-e481-4d0c-9bca-132a1b4215ef", "server_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "mac_address": "02:00:00:12:e3:2d", "state": "available", "creation_date": "2025-10-29T22:57:52.160587+00:00", "modification_date": "2025-10-29T22:57:53.477020+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["816ba9c0-89fe-4011-af22-a3047634cd62", "5e1017ed-fa7e-4049-806a-075eb4628797"]}}' 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cb67f41a-5dc2-4f7e-a1a0-4609cd525ae2 + - a59d4e3e-2600-4e67-92dc-84e17748b53a status: 200 OK code: 200 - duration: 80.448497ms - - id: 197 + duration: 90.521933ms + - id: 198 request: proto: HTTP/1.1 proto_major: 1 @@ -9796,7 +8405,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/bfa71825-f835-4642-a841-3fca02d9f73e method: DELETE response: proto: HTTP/2.0 @@ -9808,26 +8417,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eb507967-5d39-49ae-b43b-522c0efd00c9 + - 4158c9bb-36e4-4721-a2ac-9e7b31b7e30b status: 204 No Content code: 204 - duration: 435.448552ms - - id: 198 + duration: 446.721596ms + - id: 199 request: proto: HTTP/1.1 proto_major: 1 @@ -9843,7 +8444,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/bfa71825-f835-4642-a841-3fca02d9f73e method: GET response: proto: HTTP/2.0 @@ -9853,30 +8454,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_private_nic", "resource_id": "bfa71825-f835-4642-a841-3fca02d9f73e"}' 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1efacdae-b4ca-4b8f-91b1-1494d97ba571 + - 435c574f-fe3a-45a8-b6cb-c4c5ad21ff64 status: 404 Not Found code: 404 - duration: 110.408157ms - - id: 199 + duration: 118.731495ms + - id: 200 request: proto: HTTP/1.1 proto_major: 1 @@ -9892,7 +8485,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -9900,32 +8493,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + 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":"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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1902" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:36 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - da6d8a1d-c85e-4c6f-bc42-a5f8bd223105 + - 95693ec6-e4a5-4d7c-9b80-a660eaae8b90 status: 200 OK code: 200 - duration: 169.716543ms - - id: 200 + duration: 152.781342ms + - id: 201 request: proto: HTTP/1.1 proto_major: 1 @@ -9941,7 +8526,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -9949,32 +8534,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 1944 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1902" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1944" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:36 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a1ae4dea-86d5-4aba-93ca-d6095d6c5b7f + - 6e96d05c-8488-4d0b-840c-e5341cda150f status: 200 OK code: 200 - duration: 156.876275ms - - id: 201 + duration: 135.883967ms + - id: 202 request: proto: HTTP/1.1 proto_major: 1 @@ -9990,7 +8567,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -10000,30 +8577,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d987aab1-2696-4c9a-b360-c5b8ffe81f22 + - 17d68986-2040-4fc0-a2fa-12a747ad3d9c status: 404 Not Found code: 404 - duration: 27.048732ms - - id: 202 + duration: 33.124807ms + - id: 203 request: proto: HTTP/1.1 proto_major: 1 @@ -10039,7 +8608,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -10049,30 +8618,22 @@ interactions: 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"}' + body: '{"id":"2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:34.771978Z", "updated_at":"2025-10-29T22:56:34.771978Z", "references":[{"id":"b97902ad-8903-42be-8235-9b4c694e5794", "product_resource_type":"instance_server", "product_resource_id":"80c85af0-da43-4fc3-bb9b-7089afdc8289", "created_at":"2025-10-29T22:56:34.771978Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ca640e08-2f1c-4c58-b379-e8460957c2e1 + - 296f948f-b023-4966-8329-331c444c2af9 status: 200 OK code: 200 - duration: 88.151282ms - - id: 203 + duration: 81.890929ms + - id: 204 request: proto: HTTP/1.1 proto_major: 1 @@ -10088,7 +8649,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/user_data method: GET response: proto: HTTP/2.0 @@ -10098,30 +8659,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fe144d18-96ad-49c6-91d9-e95f0dfab116 + - 05aec47c-3a50-4fb1-a029-aecb634fc08f status: 200 OK code: 200 - duration: 111.543176ms - - id: 204 + duration: 88.094061ms + - id: 205 request: proto: HTTP/1.1 proto_major: 1 @@ -10137,7 +8690,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -10147,34 +8700,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 + - Wed, 29 Oct 2025 22:58:03 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c484a07e-f5b9-4299-aa71-98a97b9b286b + - 5b001c3a-b197-4f27-8bb4-47c556e3f891 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 85.835429ms - - id: 205 + duration: 93.361323ms + - id: 206 request: proto: HTTP/1.1 proto_major: 1 @@ -10190,7 +8735,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -10198,32 +8743,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 1984 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "1902" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1984" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:36 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b780e95e-45d8-4f34-9453-7f0cde2ed742 + - 0a7360b1-bd5c-4edc-88c8-0fa655131927 status: 200 OK code: 200 - duration: 163.237243ms - - id: 206 + duration: 153.968413ms + - id: 207 request: proto: HTTP/1.1 proto_major: 1 @@ -10239,7 +8776,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab method: GET response: proto: HTTP/2.0 @@ -10249,30 +8786,22 @@ interactions: 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"}' + body: '{"id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "name":"TestAccServer_PrivateNetwork", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:27.849448Z", "updated_at":"2025-10-29T22:55:27.849448Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "is_default":false, "private_network_count":2, "routing_enabled":true, "custom_routes_propagation_enabled":true, "region":"fr-par"}' 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9710721c-038c-4b5e-97a0-c4d80fa3a4dc + - 74c363f2-e594-4d75-bf01-ad3d74955e3d status: 200 OK code: 200 - duration: 27.625584ms - - id: 207 + duration: 29.841546ms + - id: 208 request: proto: HTTP/1.1 proto_major: 1 @@ -10288,7 +8817,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3c55b96-528f-49af-95f1-bafdf4e557a4 method: GET response: proto: HTTP/2.0 @@ -10296,32 +8825,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1096 + content_length: 1098 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"}' + body: '{"id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "name":"private_network_instance_02", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"1b8fb22e-6b5b-491a-80d0-6921b151cd03", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "subnet":"172.17.108.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"8b6ce337-ac46-4d88-ad84-9d5f6b8fb22e", "created_at":"2025-10-29T22:57:41.241608Z", "updated_at":"2025-10-29T22:57:41.241608Z", "subnet":"fd5f:519c:6d46:1571::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"f3c55b96-528f-49af-95f1-bafdf4e557a4", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1096" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1098" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:37 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2f51686c-1157-462f-8883-b55dfafd8327 + - d56626ce-dd78-490b-8fd7-2b048186e605 status: 200 OK code: 200 - duration: 20.290629ms - - id: 208 + duration: 26.752307ms + - id: 209 request: proto: HTTP/1.1 proto_major: 1 @@ -10337,7 +8858,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef method: GET response: proto: HTTP/2.0 @@ -10347,30 +8868,22 @@ interactions: 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"}' + body: '{"id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "name":"private_network_instance", "tags":[], "organization_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "subnets":[{"id":"d53bab04-5e69-442d-b770-4c3dff5a49ef", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"172.18.36.0/22", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}, {"id":"04c59f03-e125-4dc3-8f4f-1404c08df31d", "created_at":"2025-10-29T22:56:32.657200Z", "updated_at":"2025-10-29T22:56:32.657200Z", "subnet":"fd5f:519c:6d46:dabe::/64", "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "private_network_id":"55c55c2c-e481-4d0c-9bca-132a1b4215ef", "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab"}], "vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - abe1490b-2cbd-4c11-bed2-d85699d2e3a2 + - 2673b6eb-2050-4676-b860-f98ae5cb373b status: 200 OK code: 200 - duration: 26.22617ms - - id: 209 + duration: 26.692937ms + - id: 210 request: proto: HTTP/1.1 proto_major: 1 @@ -10386,7 +8899,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -10394,32 +8907,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 1984 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "1902" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1984" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:37 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 08ec6aed-5247-4540-b8e7-6679434d81b8 + - 735955c1-46e6-4337-a8a2-c9140c652424 status: 200 OK code: 200 - duration: 142.139201ms - - id: 210 + duration: 143.824139ms + - id: 211 request: proto: HTTP/1.1 proto_major: 1 @@ -10435,7 +8940,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -10445,30 +8950,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d94aa814-7c3a-40a0-af61-ee76744a8260 + - d44ed799-91a4-4cff-93cd-ef8e32caad16 status: 404 Not Found code: 404 - duration: 25.599434ms - - id: 211 + duration: 25.906235ms + - id: 212 request: proto: HTTP/1.1 proto_major: 1 @@ -10484,7 +8981,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -10494,30 +8991,22 @@ interactions: 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"}' + body: '{"id":"2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:34.771978Z", "updated_at":"2025-10-29T22:56:34.771978Z", "references":[{"id":"b97902ad-8903-42be-8235-9b4c694e5794", "product_resource_type":"instance_server", "product_resource_id":"80c85af0-da43-4fc3-bb9b-7089afdc8289", "created_at":"2025-10-29T22:56:34.771978Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 165f9441-a0e4-42c5-9345-b699827106b0 + - b54524f3-6839-4a43-9e3c-e66e757601a2 status: 200 OK code: 200 - duration: 86.842809ms - - id: 212 + duration: 82.092285ms + - id: 213 request: proto: HTTP/1.1 proto_major: 1 @@ -10533,7 +9022,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/user_data method: GET response: proto: HTTP/2.0 @@ -10543,30 +9032,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f0fcce67-f5eb-4b7e-91c9-7b00b81d560a + - a38bfa7c-c3c2-4bd5-9417-ab663272895e status: 200 OK code: 200 - duration: 106.899699ms - - id: 213 + duration: 101.521656ms + - id: 214 request: proto: HTTP/1.1 proto_major: 1 @@ -10582,7 +9063,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics method: GET response: proto: HTTP/2.0 @@ -10592,34 +9073,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 + - Wed, 29 Oct 2025 22:58:04 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8c88d8f6-6708-4876-a679-59f32fc8e9bb + - 1988280d-6c9a-4a9f-b9ff-d1145e485b46 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 89.230205ms - - id: 214 + duration: 101.073088ms + - id: 215 request: proto: HTTP/1.1 proto_major: 1 @@ -10635,7 +9108,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -10643,32 +9116,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 1984 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "1902" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1984" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:37 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d471ceec-7f97-4125-8abd-b2d17a872b07 + - 17b9e6d0-4d24-4ff1-8bcb-cd0dfc108a14 status: 200 OK code: 200 - duration: 144.684794ms - - id: 215 + duration: 140.432786ms + - id: 216 request: proto: HTTP/1.1 proto_major: 1 @@ -10684,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/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -10692,32 +9157,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + 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":"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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:56:38.484051+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1902" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1898" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:37 GMT + - Wed, 29 Oct 2025 22:58:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b8d8a4e2-866e-4da8-acf6-144f45f79a65 + - 0565afaa-e405-4c0b-a4fa-3ec1fba2f444 status: 200 OK code: 200 - duration: 167.163547ms - - id: 216 + duration: 151.177172ms + - id: 217 request: proto: HTTP/1.1 proto_major: 1 @@ -10735,7 +9192,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/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/action method: POST response: proto: HTTP/2.0 @@ -10745,32 +9202,24 @@ interactions: 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"}}' + body: '{"task": {"id": "0e07e64e-56ec-4a06-b42e-076bc773780f", "description": "server_terminate", "status": "pending", "href_from": "/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/action", "href_result": "/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289", "started_at": "2025-10-29T22:58:05.332334+00:00", "terminated_at": null, "progress": 0, "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 + - Wed, 29 Oct 2025 22:58:05 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ff403cb7-0c89-45de-8ab2-8704faa31ea8 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0e07e64e-56ec-4a06-b42e-076bc773780f Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bd8e0005-f04b-4146-94b7-149ddf69ea94 + - 93552c76-4e05-40ed-952b-de344b656d8e status: 202 Accepted code: 202 - duration: 254.663661ms - - id: 217 + duration: 282.649078ms + - id: 218 request: proto: HTTP/1.1 proto_major: 1 @@ -10786,7 +9235,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -10794,32 +9243,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1865 + 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-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"}}' + body: '{"server": {"id": "80c85af0-da43-4fc3-bb9b-7089afdc8289", "name": "tf-srv-optimistic-haibt", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-optimistic-haibt", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:56:34.639329+00:00", "modification_date": "2025-10-29T22:58:05.110924+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "302", "node_id": "16"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1865" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1861" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:38 GMT + - Wed, 29 Oct 2025 22:58:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 473842d1-fd83-4772-abee-a6e631e241d2 + - 4e03d6e0-b5e4-404b-8ee1-eea27bfbc3f8 status: 200 OK code: 200 - duration: 164.677136ms - - id: 218 + duration: 160.469252ms + - id: 219 request: proto: HTTP/1.1 proto_major: 1 @@ -10835,7 +9276,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef method: DELETE response: proto: HTTP/2.0 @@ -10847,26 +9288,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:58:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 63e541b8-011c-4173-9810-9132447547d0 + - 18aee5f0-9f7d-45df-9318-882f269e258c status: 204 No Content code: 204 - duration: 1.191169151s - - id: 219 + duration: 1.178135829s + - id: 220 request: proto: HTTP/1.1 proto_major: 1 @@ -10882,7 +9315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3c55b96-528f-49af-95f1-bafdf4e557a4 method: DELETE response: proto: HTTP/2.0 @@ -10894,26 +9327,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:58:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1987d501-2051-4a06-8cff-2a7a7552d89f + - 91fca9e7-e7ef-4317-9e27-8ae344b6e066 status: 204 No Content code: 204 - duration: 1.238299871s - - id: 220 + duration: 1.178060449s + - id: 221 request: proto: HTTP/1.1 proto_major: 1 @@ -10929,7 +9354,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-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 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab method: DELETE response: proto: HTTP/2.0 @@ -10941,74 +9366,17 @@ interactions: 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 61476eb5-a7e6-41b7-9724-0b96ef9ad310 + - b0c961f1-465e-4aa7-a4e1-daff09ad6f3e 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 + duration: 193.364499ms - id: 222 request: proto: HTTP/1.1 @@ -11025,56 +9393,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -11084,30 +9403,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289"}' 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3553d7d7-0413-4409-a6f5-87b403d7fa46 + - 7250b6cf-273b-4d2a-b206-9bcf65a2aa11 status: 404 Not Found code: 404 - duration: 46.938795ms - - id: 224 + duration: 52.299863ms + - id: 223 request: proto: HTTP/1.1 proto_major: 1 @@ -11123,7 +9434,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -11133,30 +9444,22 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2290f50c-0362-42b1-99bf-6bc1e5d94c91 + - e0ce7f1c-6747-46b4-84c3-1a5ff9047528 status: 404 Not Found code: 404 - duration: 27.276352ms - - id: 225 + duration: 27.986647ms + - id: 224 request: proto: HTTP/1.1 proto_major: 1 @@ -11172,7 +9475,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: GET response: proto: HTTP/2.0 @@ -11182,30 +9485,22 @@ interactions: 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"}' + body: '{"id":"2d0309e3-1094-4d29-b4b6-d5aac84ba4b5", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:56:34.771978Z", "updated_at":"2025-10-29T22:58:06.858790Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:58:06.858790Z", "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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d97cb210-ee7f-4bbd-8cfe-1de3bc0df78b + - edf72887-0e96-49c7-a463-33db2b6f3f33 status: 200 OK code: 200 - duration: 92.392827ms - - id: 226 + duration: 102.290335ms + - id: 225 request: proto: HTTP/1.1 proto_major: 1 @@ -11221,7 +9516,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 method: DELETE response: proto: HTTP/2.0 @@ -11233,26 +9528,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3da121ab-758a-48ed-b00a-ee108f0784c9 + - 60d112d3-b2ad-4d28-a7ff-1b3fcaa8ebd0 status: 204 No Content code: 204 - duration: 175.835269ms - - id: 227 + duration: 156.595869ms + - id: 226 request: proto: HTTP/1.1 proto_major: 1 @@ -11268,7 +9555,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 method: GET response: proto: HTTP/2.0 @@ -11278,26 +9565,18 @@ interactions: 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:54 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa94adbb-ec83-448c-94cd-a77949a24800 + - d1703bed-188f-4dc6-a4a3-79165b21740b status: 404 Not Found code: 404 - duration: 45.959239ms + duration: 62.562858ms 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 57a8c27b7..ce57d109d 100644 --- a/internal/services/instance/testdata/server-root-volume-boot.cassette.yaml +++ b/internal/services/instance/testdata/server-root-volume-boot.cassette.yaml @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:35 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c44aa1a8-3c21-40cc-8e62-cd74cd06cc9b + - a5d07cd4-3c35-42ab-839a-f567119c232f X-Total-Count: - "68" status: 200 OK code: 200 - duration: 44.16566ms + duration: 47.012392ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:35 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b266274e-dac5-4893-892a-1bdc24bcaa9e + - 2202d504-461e-4a88-a2b8-6ef90a5a5fac X-Total-Count: - "68" status: 200 OK code: 200 - duration: 49.309903ms + duration: 94.961335ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,43 +127,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:35 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e3ddad3-08b2-4c1b-bbc1-ea46232cd4a9 + - 9da08e1d-05b5-4d40-adf5-d529673f41ed status: 200 OK code: 200 - duration: 55.388289ms + duration: 36.539039ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 300 + content_length: 301 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"]}' + body: '{"name":"tf-srv-serene-lovelace","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,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1796 + 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-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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": true, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:38.392521+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1796" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1798" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:36 GMT + - Wed, 29 Oct 2025 22:53:39 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 54f8fb70-452d-44e6-afea-23038497a915 + - 9371e71f-a775-442e-8766-d80f81c1560e status: 201 Created code: 201 - duration: 1.287937866s + duration: 1.700502223s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1796 + 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-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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": true, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:38.392521+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1796" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1798" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:36 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e952a737-51a8-4b91-885e-c692f90ea019 + - 7160a82e-5b8c-4178-b443-ac4cf7f9691f status: 200 OK code: 200 - duration: 174.241128ms + duration: 159.17526ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1796 + content_length: 1844 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: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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": true, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:38.392521+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1796" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1844" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:36 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2b9ff8c0-fb17-4fb7-82a1-0c447eb81a1c + - 6d953766-4622-4f8d-b133-3d643d4dca99 status: 200 OK code: 200 - duration: 158.248577ms + duration: 152.684544ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -331,31 +295,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1796 + 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-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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": true, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:38.392521+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1796" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1798" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:36 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cbb8984c-d2ef-4025-b9db-13a034b67a08 + - 1a39b843-cfd3-43fb-84c9-a4fa0295e834 status: 200 OK code: 200 - duration: 117.916865ms + duration: 127.211426ms - id: 7 request: proto: HTTP/1.1 @@ -372,7 +328,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c method: GET response: proto: HTTP/2.0 @@ -382,29 +338,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:37 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 802830e3-240b-4358-9f27-879e50c0ce70 + - 3fc4cd22-8c31-4250-851e-17de3ac6b225 status: 404 Not Found code: 404 - duration: 26.730693ms + duration: 25.937798ms - id: 8 request: proto: HTTP/1.1 @@ -421,7 +369,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c method: GET response: proto: HTTP/2.0 @@ -431,29 +379,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.564651Z", "updated_at":"2025-10-29T22:53:38.564651Z", "references":[{"id":"94a1f02a-2cef-44d3-b6c7-722382d70c10", "product_resource_type":"instance_server", "product_resource_id":"77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "created_at":"2025-10-29T22:53:38.564651Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:37 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 684b1874-0fc5-47e9-a1f4-72c82de2191d + - c7037bd2-9c14-4e13-831e-fa5acabe233b status: 200 OK code: 200 - duration: 78.019758ms + duration: 100.581694ms - id: 9 request: proto: HTTP/1.1 @@ -470,7 +410,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/user_data method: GET response: proto: HTTP/2.0 @@ -480,29 +420,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:37 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 48f9130e-18b6-4fe8-8b2f-b17a83d45030 + - eb667795-68be-4071-a4d5-d5d26d3bc914 status: 200 OK code: 200 - duration: 85.919338ms + duration: 109.087157ms - id: 10 request: proto: HTTP/1.1 @@ -519,7 +451,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/private_nics method: GET response: proto: HTTP/2.0 @@ -529,33 +461,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:37 GMT + - Wed, 29 Oct 2025 22:53:40 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fb285433-e4a5-4a0c-a3f4-62497b7bd93b + - 1635a543-d018-48de-93da-5cd9e47ef193 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 110.143553ms + duration: 109.498707ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -580,31 +504,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1796 + content_length: 1844 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: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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": true, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:38.392521+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1796" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1844" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:37 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e1ae0fc7-3545-400c-ac47-c17d92404274 + - 1715bb40-1cbe-4003-a763-a59ba0f79e70 status: 200 OK code: 200 - duration: 154.246455ms + duration: 153.676239ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -629,31 +545,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1796 + content_length: 1844 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: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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": true, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:38.392521+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1796" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1844" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:37 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c01fca50-19ec-439c-aa1a-4ffaa8dbcfb3 + - a6376a24-8e58-4fe3-83d6-0b82ad201a8d status: 200 OK code: 200 - duration: 157.025555ms + duration: 141.724492ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c method: GET response: proto: HTTP/2.0 @@ -680,29 +588,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:37 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2bf97743-b111-44b2-9cd5-129578d1aedc + - b7c02165-e493-4033-b7ae-10c75f721530 status: 404 Not Found code: 404 - duration: 22.686912ms + duration: 30.86972ms - id: 14 request: proto: HTTP/1.1 @@ -719,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/6a12b373-2654-43f2-9bf2-a11e3e6d0968 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c method: GET response: proto: HTTP/2.0 @@ -729,29 +629,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.564651Z", "updated_at":"2025-10-29T22:53:38.564651Z", "references":[{"id":"94a1f02a-2cef-44d3-b6c7-722382d70c10", "product_resource_type":"instance_server", "product_resource_id":"77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "created_at":"2025-10-29T22:53:38.564651Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:37 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 34fc0f6b-5a49-4e71-9958-6cc2c8aa2e4b + - 67a8e04e-9000-4c53-9287-4a8722aac63a status: 200 OK code: 200 - duration: 102.085245ms + duration: 87.258182ms - id: 15 request: proto: HTTP/1.1 @@ -768,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/servers/47fab70a-e617-499b-81ff-e10f35c9363e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/user_data method: GET response: proto: HTTP/2.0 @@ -778,29 +670,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:38 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cad231bc-915d-443f-99ec-66de93ac012c + - c0a502af-b5c9-4bb2-a608-047ffec8f32b status: 200 OK code: 200 - duration: 95.58567ms + duration: 94.09735ms - id: 16 request: proto: HTTP/1.1 @@ -817,7 +701,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/private_nics method: GET response: proto: HTTP/2.0 @@ -827,33 +711,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:38 GMT + - Wed, 29 Oct 2025 22:53:41 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6057f5ad-26e0-485a-99e2-57d73b9640c5 + - 56a48ed0-0a14-47d5-9f90-7eb5a63449fd X-Total-Count: - "0" status: 200 OK code: 200 - duration: 102.547633ms + duration: 101.752714ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -878,31 +754,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1796 + 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-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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": true, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:38.392521+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1796" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1798" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:38 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6c368172-534d-4dc7-8e6f-3d75a3a9e8dc + - 114ea557-d8c0-4d0c-aa6d-6805e7c63703 status: 200 OK code: 200 - duration: 136.409316ms + duration: 165.44808ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c method: GET response: proto: HTTP/2.0 @@ -929,29 +797,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:38 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9256ee65-81a3-45cb-b9f9-547730fe34e7 + - b11e3646-6555-4a39-b958-dcbc8d6ab737 status: 404 Not Found code: 404 - duration: 31.650127ms + duration: 29.338325ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +828,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c method: GET response: proto: HTTP/2.0 @@ -978,29 +838,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.564651Z", "updated_at":"2025-10-29T22:53:38.564651Z", "references":[{"id":"94a1f02a-2cef-44d3-b6c7-722382d70c10", "product_resource_type":"instance_server", "product_resource_id":"77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "created_at":"2025-10-29T22:53:38.564651Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:38 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c0757016-d431-4b03-9052-0b79e5dcad5c + - 277bd161-77fe-42e3-8d90-57a10196fce8 status: 200 OK code: 200 - duration: 102.919029ms + duration: 86.281156ms - id: 20 request: proto: HTTP/1.1 @@ -1017,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/47fab70a-e617-499b-81ff-e10f35c9363e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/user_data method: GET response: proto: HTTP/2.0 @@ -1027,29 +879,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:38 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 29d54840-88f0-4948-a6c7-bc123dde5f9a + - 605c9ff7-db0a-4b2f-aae0-4bdba7b48a7c status: 200 OK code: 200 - duration: 155.826147ms + duration: 84.005731ms - id: 21 request: proto: HTTP/1.1 @@ -1066,7 +910,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/private_nics method: GET response: proto: HTTP/2.0 @@ -1076,33 +920,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:38 GMT + - Wed, 29 Oct 2025 22:53:41 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3c886875-66b1-4a28-9c46-f54f3ae90515 + - 62ed5e9f-3abb-4fb1-b395-23847e85cb3d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 94.280745ms + duration: 98.615628ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -1127,50 +963,42 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1796 + content_length: 1844 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: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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": true, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:38.392521+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1796" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1844" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ebef7ca8-4cbc-4b70-8265-50a821fd2ffb + - 93dd8896-2927-4fbd-af15-26d2e28f5758 status: 200 OK code: 200 - duration: 147.016683ms + duration: 173.775019ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 111 + content_length: 112 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volumes":{"0":{"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","boot":false,"name":"tf-vol-xenodochial-banach"}}}' + body: '{"volumes":{"0":{"id":"3e3a0f1a-3cc3-41b6-a148-2f03370b493c","boot":false,"name":"tf-vol-intelligent-feistel"}}}' 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/47fab70a-e617-499b-81ff-e10f35c9363e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: PATCH response: proto: HTTP/2.0 @@ -1178,31 +1006,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + 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-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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:42.211519+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1799" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1607f2bc-57ad-4ef1-a36a-0d9be4d434ea + - fd48c125-cd73-4143-8834-867af9e24314 status: 200 OK code: 200 - duration: 247.428773ms + duration: 317.842925ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1039,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -1227,31 +1047,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 1845 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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:42.211519+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1845" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7be1a6f9-c455-4a37-9d87-b58eae55cbfd + - b965d8de-65b5-4a19-a564-998b5bdf42ce status: 200 OK code: 200 - duration: 153.476523ms + duration: 130.21901ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1080,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -1276,31 +1088,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 1885 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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:42.211519+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1885" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d7498c71-54fe-46e7-97c9-3056eb9b6890 + - d5405749-b830-4acf-adc0-ec1830af1d11 status: 200 OK code: 200 - duration: 161.141805ms + duration: 140.877479ms - id: 26 request: proto: HTTP/1.1 @@ -1317,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/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c method: GET response: proto: HTTP/2.0 @@ -1327,29 +1131,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4f3a844c-53c3-46ac-aaa5-d0878df5f733 + - c33e8841-dd0f-4994-8bed-4c46899cdd3e status: 404 Not Found code: 404 - duration: 27.13899ms + duration: 30.466285ms - id: 27 request: proto: HTTP/1.1 @@ -1366,7 +1162,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c method: GET response: proto: HTTP/2.0 @@ -1376,29 +1172,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.564651Z", "updated_at":"2025-10-29T22:53:38.564651Z", "references":[{"id":"94a1f02a-2cef-44d3-b6c7-722382d70c10", "product_resource_type":"instance_server", "product_resource_id":"77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "created_at":"2025-10-29T22:53:38.564651Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:39 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae876d4f-37fa-481b-a77d-996ad272031f + - d6339aa3-5150-43e6-af9a-99ec5181e8b5 status: 200 OK code: 200 - duration: 84.461626ms + duration: 78.692006ms - id: 28 request: proto: HTTP/1.1 @@ -1415,7 +1203,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/user_data method: GET response: proto: HTTP/2.0 @@ -1425,29 +1213,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:39 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c626b6f7-5014-47b3-bd4a-0a78b1f67ec5 + - a9c03e1b-1549-40b7-8e14-af3eb5fe1eb7 status: 200 OK code: 200 - duration: 111.998011ms + duration: 82.458189ms - id: 29 request: proto: HTTP/1.1 @@ -1464,7 +1244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/private_nics method: GET response: proto: HTTP/2.0 @@ -1474,33 +1254,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:39 GMT + - Wed, 29 Oct 2025 22:53:43 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 05e53a51-fe6b-459c-9aa0-56e5c3f4a4f1 + - 1b009732-aa77-434e-9bea-2aa4e4d5d0c7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 102.690452ms + duration: 100.705847ms - id: 30 request: proto: HTTP/1.1 @@ -1517,7 +1289,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -1525,31 +1297,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 1845 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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:42.211519+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1845" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9e1916c7-9e28-4e44-9ece-8c486b297211 + - a1fcdc0c-4715-4fd9-970b-ee6a2f2c22e0 status: 200 OK code: 200 - duration: 163.050153ms + duration: 117.905107ms - id: 31 request: proto: HTTP/1.1 @@ -1566,7 +1330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -1574,31 +1338,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 1845 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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:42.211519+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1845" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 42754680-bb55-425e-a5c9-f10a9aca652e + - d0eecc3a-1c3c-4ebf-8017-dc650add2648 status: 200 OK code: 200 - duration: 150.862684ms + duration: 146.074506ms - id: 32 request: proto: HTTP/1.1 @@ -1615,7 +1371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c method: GET response: proto: HTTP/2.0 @@ -1625,29 +1381,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 05f13717-1fed-4f09-b419-b4bf56af500e + - e44f791f-253d-40ba-878b-4d78a62f49e6 status: 404 Not Found code: 404 - duration: 26.876608ms + duration: 27.10509ms - id: 33 request: proto: HTTP/1.1 @@ -1664,7 +1412,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c method: GET response: proto: HTTP/2.0 @@ -1674,29 +1422,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.564651Z", "updated_at":"2025-10-29T22:53:38.564651Z", "references":[{"id":"94a1f02a-2cef-44d3-b6c7-722382d70c10", "product_resource_type":"instance_server", "product_resource_id":"77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "created_at":"2025-10-29T22:53:38.564651Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:40 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7a4f1097-c5db-4736-90a7-f22786a3fdf5 + - b7db242d-43d4-4641-82d7-e1b703707b9e status: 200 OK code: 200 - duration: 83.011238ms + duration: 100.986612ms - id: 34 request: proto: HTTP/1.1 @@ -1713,7 +1453,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/user_data method: GET response: proto: HTTP/2.0 @@ -1723,29 +1463,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:40 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f81c6353-2822-4725-adbf-8b2d2709c237 + - 0c4f2490-18fb-43f9-8881-7acb7b9de36f status: 200 OK code: 200 - duration: 117.575028ms + duration: 113.48434ms - id: 35 request: proto: HTTP/1.1 @@ -1762,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/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/private_nics method: GET response: proto: HTTP/2.0 @@ -1772,33 +1504,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:40 GMT + - Wed, 29 Oct 2025 22:53:43 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2911941c-c08c-4f0b-8e14-6bc1fb9a5ba8 + - ff9e9f6a-7387-4cd5-8d0b-84d7586061a8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.487002ms + duration: 112.416444ms - id: 36 request: proto: HTTP/1.1 @@ -1815,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/47fab70a-e617-499b-81ff-e10f35c9363e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -1823,31 +1547,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 1885 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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:42.211519+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1885" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9aa68627-bc17-4bf8-9e1e-51cd9c880979 + - f6dd1130-3391-4f77-bc81-9c9ffb4ebbb9 status: 200 OK code: 200 - duration: 193.342676ms + duration: 155.289146ms - id: 37 request: proto: HTTP/1.1 @@ -1864,7 +1580,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -1872,31 +1588,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 1845 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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:42.211519+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1797" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1845" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9644cff1-825e-49df-99e8-4a56f5954347 + - dd5a9ba8-66d6-4595-9892-667b9bfdcb70 status: 200 OK code: 200 - duration: 151.303182ms + duration: 146.12438ms - id: 38 request: proto: HTTP/1.1 @@ -1913,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/block/v1alpha1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c method: GET response: proto: HTTP/2.0 @@ -1923,29 +1631,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.564651Z", "updated_at":"2025-10-29T22:53:38.564651Z", "references":[{"id":"94a1f02a-2cef-44d3-b6c7-722382d70c10", "product_resource_type":"instance_server", "product_resource_id":"77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "created_at":"2025-10-29T22:53:38.564651Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:41 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 67596593-1347-41c7-b0b0-fefae231d5ea + - bb546a25-87e7-447a-9948-ea95e9f836ca status: 200 OK code: 200 - duration: 73.570399ms + duration: 105.872909ms - id: 39 request: proto: HTTP/1.1 @@ -1964,7 +1664,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/47fab70a-e617-499b-81ff-e10f35c9363e/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/action method: POST response: proto: HTTP/2.0 @@ -1974,31 +1674,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "bee19097-94cf-417d-b88f-1809bdc9cded", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/action", "href_result": "/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "started_at": "2025-10-29T22:53:44.719729+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:53:44 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bcbf2512-c096-424b-a16f-17d186aee337 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bee19097-94cf-417d-b88f-1809bdc9cded Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0343307e-f480-4afe-b7b3-0e956a34b4d8 + - e14517d7-b33d-4e93-8792-86031a22624d status: 202 Accepted code: 202 - duration: 291.140948ms + duration: 244.078583ms - id: 40 request: proto: HTTP/1.1 @@ -2015,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/47fab70a-e617-499b-81ff-e10f35c9363e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -2023,31 +1715,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1819 + 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-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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:44.534523+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1819" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1821" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 85511274-ad0c-48be-83ed-6f2b3bd18c1a + - 07cb7c90-73e9-4f23-8774-62bc5a15d061 status: 200 OK code: 200 - duration: 178.372051ms + duration: 157.789431ms - id: 41 request: proto: HTTP/1.1 @@ -2064,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/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -2072,31 +1756,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1953 + content_length: 2001 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:48.224581+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "303", "node_id": "19"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1953" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2001" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:47 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e6f72986-e4ec-46dc-af0e-23b38f12c127 + - b54ca7dc-9c10-4dbf-85d9-a6ce369f0818 status: 200 OK code: 200 - duration: 148.192757ms + duration: 147.462395ms - id: 42 request: proto: HTTP/1.1 @@ -2115,7 +1791,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/47fab70a-e617-499b-81ff-e10f35c9363e/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/action method: POST response: proto: HTTP/2.0 @@ -2125,31 +1801,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "43a8e107-c5ff-4b20-a0eb-d0125e4a50f0", "description": "server_terminate", "status": "pending", "href_from": "/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/action", "href_result": "/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "started_at": "2025-10-29T22:53:50.323914+00:00", "terminated_at": null, "progress": 0, "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:47 GMT + - Wed, 29 Oct 2025 22:53:50 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cfcca3ef-77fd-4a68-9d17-7ee518715594 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/43a8e107-c5ff-4b20-a0eb-d0125e4a50f0 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fa5b930f-1321-4c79-9b36-447c0ff51e4f + - 3263e045-c233-4a91-ad71-f81b1357fac7 status: 202 Accepted code: 202 - duration: 340.992415ms + duration: 287.1754ms - id: 43 request: proto: HTTP/1.1 @@ -2166,7 +1834,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -2174,31 +1842,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1916 + 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-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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:50.090294+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "303", "node_id": "19"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1916" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1918" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:47 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0a0df0e6-f7eb-416e-ac4d-28a33eee71ad + - e51a69cb-1212-4857-adf5-1321c0d16f26 status: 200 OK code: 200 - duration: 144.083644ms + duration: 129.428956ms - id: 44 request: proto: HTTP/1.1 @@ -2215,7 +1875,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -2223,31 +1883,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1916 + 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-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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:50.090294+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "303", "node_id": "19"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1916" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1918" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:52 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 339008c1-46c5-4368-976c-46604f19fce1 + - 3c8f339b-79ee-4fde-9455-599f5a334f08 status: 200 OK code: 200 - duration: 158.264206ms + duration: 141.069544ms - id: 45 request: proto: HTTP/1.1 @@ -2264,7 +1916,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -2272,31 +1924,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1916 + content_length: 1964 uncompressed: 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"}}' + body: '{"server": {"id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687", "name": "tf-srv-serene-lovelace", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-serene-lovelace", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.392521+00:00", "modification_date": "2025-10-29T22:53:50.090294+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "303", "node_id": "19"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1916" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1964" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:57 GMT + - Wed, 29 Oct 2025 22:54:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa2be3d9-673f-4a48-bbce-55b35d05b85a + - bd071d50-22af-46dd-9acd-6acd2eb1563c status: 200 OK code: 200 - duration: 134.911447ms + duration: 190.343639ms - id: 46 request: proto: HTTP/1.1 @@ -2313,7 +1957,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -2323,29 +1967,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"47fab70a-e617-499b-81ff-e10f35c9363e","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:02 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 415573e9-b1c6-4c09-a7b5-665b28832c9f + - f5ff4d7f-72f8-4af6-81ab-a6805f881b5f status: 404 Not Found code: 404 - duration: 47.798079ms + duration: 46.363543ms - id: 47 request: proto: HTTP/1.1 @@ -2362,7 +1998,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c method: GET response: proto: HTTP/2.0 @@ -2372,29 +2008,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:02 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c7ce094f-df9e-4439-9346-bf5dc2acbe43 + - 6438169e-315e-43f8-9ed5-4c67b8f52ff1 status: 404 Not Found code: 404 - duration: 22.415708ms + duration: 27.674626ms - id: 48 request: proto: HTTP/1.1 @@ -2411,7 +2039,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c method: GET response: proto: HTTP/2.0 @@ -2421,29 +2049,21 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"3e3a0f1a-3cc3-41b6-a148-2f03370b493c", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:38.564651Z", "updated_at":"2025-10-29T22:54:02.393838Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:54:02.393838Z", "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:03 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eb03bccb-f2f7-44a9-87b6-1ae8fac040fc + - d1bc4a3f-8845-42bd-8c9c-70d44676929a status: 200 OK code: 200 - duration: 104.919319ms + duration: 88.9805ms - id: 49 request: proto: HTTP/1.1 @@ -2460,7 +2080,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c method: DELETE response: proto: HTTP/2.0 @@ -2472,25 +2092,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0881c41b-1e5d-49c1-90b7-013714daec4b + - 355822a1-01fe-445f-bcee-a273857743e9 status: 204 No Content code: 204 - duration: 150.667907ms + duration: 146.31741ms - id: 50 request: proto: HTTP/1.1 @@ -2507,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/47fab70a-e617-499b-81ff-e10f35c9363e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 method: GET response: proto: HTTP/2.0 @@ -2517,26 +2129,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"47fab70a-e617-499b-81ff-e10f35c9363e","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - afc41ba8-9bc1-4105-b117-15433984d760 + - c355dd75-d777-4a81-bc3a-6f6ea9997065 status: 404 Not Found code: 404 - duration: 44.456494ms + duration: 70.004418ms 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 ce70ee8ad..5d17d8652 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 @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:54:04 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fc9f7fdc-0b4a-4db8-a743-3b8e6180a807 + - 5fb6945a-7104-47a2-b99f-1e2563d5564b X-Total-Count: - "68" status: 200 OK code: 200 - duration: 50.43808ms + duration: 45.719488ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:54:04 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 336080cd-bd1e-4b8b-b119-f8b8f78a8121 + - d0448e21-6684-4bf1-9fa8-b2ad54a164ff X-Total-Count: - "68" status: 200 OK code: 200 - duration: 63.248715ms + duration: 43.244751ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_jammy + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,31 +127,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 706f932a-ded0-467c-a29f-e8ca4ee4ee3f + - f437f9aa-03a3-4049-bd51-a4c4037c7e7b status: 200 OK code: 200 - duration: 46.988453ms + duration: 41.441199ms - id: 3 request: proto: HTTP/1.1 @@ -182,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1808 + content_length: 1854 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: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"}}' + body: '{"server": {"id": "b57275a4-7953-432e-9d54-556db2e0b80b", "name": "tf-tests-instance-root-volume-from-external-snapshot", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5254dc93-fbc2-4095-8997-689bdf3ccfca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:04.948127+00:00", "modification_date": "2025-10-29T22:54:04.948127+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1854" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 67f66511-3dea-42ce-b11a-4ab704f29434 + - 427f7f78-83b2-4892-a0f2-455a7c6e32fe status: 201 Created code: 201 - duration: 4.495229501s + duration: 1.111996947s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b method: GET response: proto: HTTP/2.0 @@ -235,29 +215,21 @@ 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-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"}}' + body: '{"server": {"id": "b57275a4-7953-432e-9d54-556db2e0b80b", "name": "tf-tests-instance-root-volume-from-external-snapshot", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5254dc93-fbc2-4095-8997-689bdf3ccfca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:04.948127+00:00", "modification_date": "2025-10-29T22:54:04.948127+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:18 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f0365087-a353-471f-a8ad-37edc01db295 + - 428612e7-effc-4cf0-a193-09d0c22cf617 status: 200 OK code: 200 - duration: 160.323152ms + duration: 128.12773ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b method: GET response: proto: HTTP/2.0 @@ -284,29 +256,21 @@ 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-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"}}' + body: '{"server": {"id": "b57275a4-7953-432e-9d54-556db2e0b80b", "name": "tf-tests-instance-root-volume-from-external-snapshot", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5254dc93-fbc2-4095-8997-689bdf3ccfca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:04.948127+00:00", "modification_date": "2025-10-29T22:54:04.948127+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a3edc676-a202-44e0-a669-f266bd09ccaa + - 04edb49b-87c9-42d0-ae04-728fa6e289ec status: 200 OK code: 200 - duration: 145.26228ms + duration: 133.824811ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +289,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/2908b234-85fa-4ff3-b91d-a152424794f6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca method: PATCH response: proto: HTTP/2.0 @@ -335,29 +299,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:05.076395Z", "updated_at":"2025-10-29T22:54:05.076395Z", "references":[{"id":"0872b304-3fa6-44a3-a2ce-a0e6949e9f9a", "product_resource_type":"instance_server", "product_resource_id":"b57275a4-7953-432e-9d54-556db2e0b80b", "created_at":"2025-10-29T22:54:05.076395Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:19 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2d49747e-60ae-41dc-90b8-266d10b4ad2e + - c68cfcda-9e05-42ce-bb4b-83dbd9922cef status: 200 OK code: 200 - duration: 127.98934ms + duration: 112.681697ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b method: GET response: proto: HTTP/2.0 @@ -382,31 +338,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1808 + content_length: 1854 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: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"}}' + body: '{"server": {"id": "b57275a4-7953-432e-9d54-556db2e0b80b", "name": "tf-tests-instance-root-volume-from-external-snapshot", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5254dc93-fbc2-4095-8997-689bdf3ccfca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:04.948127+00:00", "modification_date": "2025-10-29T22:54:04.948127+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1854" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bb5d79bb-4703-4186-aef5-b37192755c45 + - f580698c-b878-433b-96ea-0c24dd81fb26 status: 200 OK code: 200 - duration: 149.427949ms + duration: 144.137394ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca method: GET response: proto: HTTP/2.0 @@ -433,29 +381,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:05.076395Z", "updated_at":"2025-10-29T22:54:05.076395Z", "references":[{"id":"0872b304-3fa6-44a3-a2ce-a0e6949e9f9a", "product_resource_type":"instance_server", "product_resource_id":"b57275a4-7953-432e-9d54-556db2e0b80b", "created_at":"2025-10-29T22:54:05.076395Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 87f62e35-03b3-4b20-b733-cda6949652dc + - a9e832cf-45f7-47d4-8266-b4fca5455388 status: 200 OK code: 200 - duration: 80.634158ms + duration: 82.069978ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,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/f1fdbec6-0d99-4809-843f-8fe44d6426d0/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/action method: POST response: proto: HTTP/2.0 @@ -484,31 +424,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "48f742bc-7597-4c66-b9ad-2850c2a7b564", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/b57275a4-7953-432e-9d54-556db2e0b80b/action", "href_result": "/servers/b57275a4-7953-432e-9d54-556db2e0b80b", "started_at": "2025-10-29T22:54:06.488058+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:54:06 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4cab8ec5-4570-40db-acf1-57af795c3a15 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/48f742bc-7597-4c66-b9ad-2850c2a7b564 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b4934a29-0996-4c9a-9dc8-f153e042c66f + - 32dd319a-5040-42e7-ac19-284ea42d2c9c status: 202 Accepted code: 202 - duration: 283.955607ms + duration: 447.040476ms - id: 10 request: proto: HTTP/1.1 @@ -525,7 +457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b method: GET response: proto: HTTP/2.0 @@ -533,31 +465,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1830 + content_length: 1876 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: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"}}' + body: '{"server": {"id": "b57275a4-7953-432e-9d54-556db2e0b80b", "name": "tf-tests-instance-root-volume-from-external-snapshot", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5254dc93-fbc2-4095-8997-689bdf3ccfca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:04.948127+00:00", "modification_date": "2025-10-29T22:54:06.094299+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1830" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1876" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7abe27e4-315b-426f-8f74-2f361ea47d0f + - 0cf2daf0-99fb-4bda-894c-b934a7e99d27 status: 200 OK code: 200 - duration: 138.18858ms + duration: 138.809752ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b method: GET response: proto: HTTP/2.0 @@ -582,31 +506,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1965 + content_length: 2011 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"}}' + body: '{"server": {"id": "b57275a4-7953-432e-9d54-556db2e0b80b", "name": "tf-tests-instance-root-volume-from-external-snapshot", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5254dc93-fbc2-4095-8997-689bdf3ccfca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:04.948127+00:00", "modification_date": "2025-10-29T22:54:09.057715+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "131"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1965" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2011" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ff8eac8c-1908-4aac-9864-205d4228a113 + - f898ad56-4a74-4984-841c-be01aadaaddc status: 200 OK code: 200 - duration: 158.930821ms + duration: 160.447675ms - id: 12 request: proto: HTTP/1.1 @@ -623,7 +539,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b method: GET response: proto: HTTP/2.0 @@ -631,31 +547,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1965 + content_length: 2011 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"}}' + body: '{"server": {"id": "b57275a4-7953-432e-9d54-556db2e0b80b", "name": "tf-tests-instance-root-volume-from-external-snapshot", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5254dc93-fbc2-4095-8997-689bdf3ccfca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:04.948127+00:00", "modification_date": "2025-10-29T22:54:09.057715+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "131"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1965" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2011" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e0d32bf3-098a-4d9f-94b6-c9a65cee18b9 + - ae736e3f-c8ea-4bc3-9f52-7df7e737d43e status: 200 OK code: 200 - duration: 150.847127ms + duration: 139.734344ms - id: 13 request: proto: HTTP/1.1 @@ -672,7 +580,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca method: GET response: proto: HTTP/2.0 @@ -682,29 +590,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2908b234-85fa-4ff3-b91d-a152424794f6","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5254dc93-fbc2-4095-8997-689bdf3ccfca"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 167ddcbc-da34-48ea-ae0c-f8461c6ba1f8 + - 3deae7f2-45c1-423f-a542-3df5ec699b2b status: 404 Not Found code: 404 - duration: 32.765765ms + duration: 25.158042ms - id: 14 request: proto: HTTP/1.1 @@ -721,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/2908b234-85fa-4ff3-b91d-a152424794f6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca method: GET response: proto: HTTP/2.0 @@ -731,29 +631,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:05.076395Z", "updated_at":"2025-10-29T22:54:05.076395Z", "references":[{"id":"0872b304-3fa6-44a3-a2ce-a0e6949e9f9a", "product_resource_type":"instance_server", "product_resource_id":"b57275a4-7953-432e-9d54-556db2e0b80b", "created_at":"2025-10-29T22:54:05.076395Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b20b4f63-cb7f-4b19-8ae8-a4d61054d408 + - 74986503-7132-4b5e-850e-36d58e8111e2 status: 200 OK code: 200 - duration: 80.356912ms + duration: 103.723218ms - id: 15 request: proto: HTTP/1.1 @@ -770,7 +662,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/user_data method: GET response: proto: HTTP/2.0 @@ -780,29 +672,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:25 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b84e4c5d-f34b-4e40-b479-d36091792291 + - d48aac5a-8cfb-4857-ad42-8c779812f7ef status: 200 OK code: 200 - duration: 110.081245ms + duration: 114.713007ms - id: 16 request: proto: HTTP/1.1 @@ -819,7 +703,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/private_nics method: GET response: proto: HTTP/2.0 @@ -829,45 +713,37 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:25 GMT + - Wed, 29 Oct 2025 22:54:12 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - db5ca825-477e-4d11-baf9-1c70a148405a + - 84e89f27-63af-4894-acad-7705f589ff6d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 99.914807ms + duration: 112.736111ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 153 + content_length: 152 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"tf-snapshot-priceless-germain","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + body: '{"volume_id":"5254dc93-fbc2-4095-8997-689bdf3ccfca","name":"tf-snapshot-charming-shannon","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' form: {} headers: Content-Type: @@ -882,31 +758,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 480 + content_length: 479 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":[],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' + body: '{"id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "name":"tf-snapshot-charming-shannon", "parent_volume":{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:12.496290Z", "updated_at":"2025-10-29T22:54:12.496290Z", "references":[], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "480" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "479" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fb6f1dd7-c503-48b8-81e0-7e2a107c265f + - eb05d2ec-d9b9-4c81-a142-49f45a295190 status: 200 OK code: 200 - duration: 905.037824ms + duration: 355.528209ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +791,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 method: GET response: proto: HTTP/2.0 @@ -931,31 +799,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 711 + content_length: 710 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"}' + body: '{"id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "name":"tf-snapshot-charming-shannon", "parent_volume":{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:12.496290Z", "updated_at":"2025-10-29T22:54:12.496290Z", "references":[{"id":"6f035f61-3f65-46f8-a4ff-5b0a756012d5", "product_resource_type":"internal", "product_resource_id":"00000000-0000-0000-0000-000000000000", "created_at":"2025-10-29T22:54:12.539210Z", "type":"unknown_type", "status":"attached"}], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "711" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "710" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4fc03c57-7660-4ddd-bc35-cd4e5cf2082c + - 78132dad-f0de-4ad5-b99c-e512e2409083 status: 200 OK code: 200 - duration: 430.243093ms + duration: 235.700788ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 method: GET response: proto: HTTP/2.0 @@ -980,31 +840,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 481 + content_length: 480 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":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' + body: '{"id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "name":"tf-snapshot-charming-shannon", "parent_volume":{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:12.496290Z", "updated_at":"2025-10-29T22:54:12.496290Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "480" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f012fcad-c068-4b97-aee5-fadbd8d80a0b + - 9093a18b-6484-4fde-9dfe-5c58f55410d9 status: 200 OK code: 200 - duration: 193.702224ms + duration: 538.240392ms - id: 20 request: proto: HTTP/1.1 @@ -1021,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/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 method: GET response: proto: HTTP/2.0 @@ -1029,31 +881,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 481 + content_length: 480 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":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' + body: '{"id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "name":"tf-snapshot-charming-shannon", "parent_volume":{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:12.496290Z", "updated_at":"2025-10-29T22:54:12.496290Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "480" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:56 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 05790a21-0630-42d8-8b47-08f68e812112 + - 26119b33-6711-42d7-a4a0-74b2d15b90f3 status: 200 OK code: 200 - duration: 210.290145ms + duration: 428.5938ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b method: GET response: proto: HTTP/2.0 @@ -1080,29 +924,21 @@ interactions: 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"}}' + body: '{"server": {"id": "b57275a4-7953-432e-9d54-556db2e0b80b", "name": "tf-tests-instance-root-volume-from-external-snapshot", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5254dc93-fbc2-4095-8997-689bdf3ccfca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:04.948127+00:00", "modification_date": "2025-10-29T22:54:09.057715+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "131"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1965" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:57 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 83a04620-6734-41a9-b144-11e14308e2bc + - 34f84736-1c55-4486-a0a6-b2968b3b3c94 status: 200 OK code: 200 - duration: 136.412662ms + duration: 147.076225ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca method: GET response: proto: HTTP/2.0 @@ -1129,29 +965,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2908b234-85fa-4ff3-b91d-a152424794f6","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5254dc93-fbc2-4095-8997-689bdf3ccfca"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:57 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 07f92099-c09e-4bd8-8824-18c09a25e85e + - e2058e1f-4fca-4543-83ef-aa42dbfbd944 status: 404 Not Found code: 404 - duration: 24.759792ms + duration: 113.054126ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +996,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca method: GET response: proto: HTTP/2.0 @@ -1178,29 +1006,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:05.076395Z", "updated_at":"2025-10-29T22:54:05.076395Z", "references":[{"id":"0872b304-3fa6-44a3-a2ce-a0e6949e9f9a", "product_resource_type":"instance_server", "product_resource_id":"b57275a4-7953-432e-9d54-556db2e0b80b", "created_at":"2025-10-29T22:54:05.076395Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:57 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2bf38d2a-9fc4-4926-8e5c-34c42ba7b171 + - e6d01321-94fc-4293-a5b2-7c61c8cd80f6 status: 200 OK code: 200 - duration: 98.940134ms + duration: 99.635213ms - id: 24 request: proto: HTTP/1.1 @@ -1217,7 +1037,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/user_data method: GET response: proto: HTTP/2.0 @@ -1227,29 +1047,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:57 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2041f489-aece-4d79-8f33-b1ec6d03e750 + - f73caff6-f32f-41e3-a374-62486be1290f status: 200 OK code: 200 - duration: 84.609034ms + duration: 103.748776ms - id: 25 request: proto: HTTP/1.1 @@ -1266,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/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/private_nics method: GET response: proto: HTTP/2.0 @@ -1276,33 +1088,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:57 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e45a55eb-43b4-437c-ad21-07e1db53995f + - 9bc074d4-48ab-44eb-867d-4fc3dcdafab8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 95.594551ms + duration: 184.185359ms - id: 26 request: proto: HTTP/1.1 @@ -1319,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/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 method: GET response: proto: HTTP/2.0 @@ -1327,31 +1131,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 481 + content_length: 480 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":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' + body: '{"id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "name":"tf-snapshot-charming-shannon", "parent_volume":{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:12.496290Z", "updated_at":"2025-10-29T22:54:12.496290Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "480" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:58 GMT + - Wed, 29 Oct 2025 22:54:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fd3352b6-dc54-44d0-8557-df3bf94b57bf + - 9cdf21ad-7dc0-4556-8cfd-1f68eb72738b status: 200 OK code: 200 - duration: 376.34255ms + duration: 424.873585ms - id: 27 request: proto: HTTP/1.1 @@ -1368,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/f1fdbec6-0d99-4809-843f-8fe44d6426d0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b method: GET response: proto: HTTP/2.0 @@ -1378,29 +1174,21 @@ interactions: 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"}}' + body: '{"server": {"id": "b57275a4-7953-432e-9d54-556db2e0b80b", "name": "tf-tests-instance-root-volume-from-external-snapshot", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5254dc93-fbc2-4095-8997-689bdf3ccfca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:04.948127+00:00", "modification_date": "2025-10-29T22:54:09.057715+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "131"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1965" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5e95450b-ade1-41be-be53-d030f9cf7e27 + - e1a8aeae-0865-4813-b6a9-fb42178c0dc8 status: 200 OK code: 200 - duration: 135.849417ms + duration: 154.815989ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca method: GET response: proto: HTTP/2.0 @@ -1427,29 +1215,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2908b234-85fa-4ff3-b91d-a152424794f6","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5254dc93-fbc2-4095-8997-689bdf3ccfca"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c6dded6c-6248-4d96-aea3-37fdca291838 + - 8c22cdba-66ee-4311-9799-529421bfe9bd status: 404 Not Found code: 404 - duration: 29.069423ms + duration: 35.709886ms - id: 29 request: proto: HTTP/1.1 @@ -1466,7 +1246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca method: GET response: proto: HTTP/2.0 @@ -1476,29 +1256,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:05.076395Z", "updated_at":"2025-10-29T22:54:05.076395Z", "references":[{"id":"0872b304-3fa6-44a3-a2ce-a0e6949e9f9a", "product_resource_type":"instance_server", "product_resource_id":"b57275a4-7953-432e-9d54-556db2e0b80b", "created_at":"2025-10-29T22:54:05.076395Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:04:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae164f56-7cf9-4b94-8d8b-ca900b61e48a + - 81865177-e664-4abb-970d-cd9db63a4457 status: 200 OK code: 200 - duration: 95.984524ms + duration: 76.195232ms - id: 30 request: proto: HTTP/1.1 @@ -1515,7 +1287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/user_data method: GET response: proto: HTTP/2.0 @@ -1525,29 +1297,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1a28bd54-602c-47cb-b8d6-1031ef3d803c + - 0f0e6724-3ee6-44df-b2e1-04dcdfb10a03 status: 200 OK code: 200 - duration: 94.818757ms + duration: 85.080146ms - id: 31 request: proto: HTTP/1.1 @@ -1564,7 +1328,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/private_nics method: GET response: proto: HTTP/2.0 @@ -1574,33 +1338,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:58 GMT + - Wed, 29 Oct 2025 22:54:47 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b65246b7-21e6-43a5-9992-585c803f9d0e + - 53192183-9fa7-4f4e-bfc8-385a473c8adc X-Total-Count: - "0" status: 200 OK code: 200 - duration: 90.823938ms + duration: 109.792367ms - id: 32 request: proto: HTTP/1.1 @@ -1617,7 +1373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 method: GET response: proto: HTTP/2.0 @@ -1625,43 +1381,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 481 + content_length: 480 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":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' + body: '{"id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "name":"tf-snapshot-charming-shannon", "parent_volume":{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:12.496290Z", "updated_at":"2025-10-29T22:54:12.496290Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "480" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 20dcabf7-77e5-453a-b4a0-7083b7995871 + - 29a33583-b8c1-4833-b5b4-0b096716f1c7 status: 200 OK code: 200 - duration: 1.442901539s + duration: 294.793933ms - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 200 + content_length: 198 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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":[]}' + body: '{"name":"tf-volume-fervent-dewdney","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_snapshot":{"size":null,"snapshot_id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90"},"tags":[]}' form: {} headers: Content-Type: @@ -1676,31 +1424,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 458 + content_length: 456 uncompressed: false - 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"}' + body: '{"id":"82b5413d-0df7-47cc-a307-cf29c868b435", "name":"tf-volume-fervent-dewdney", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:48.102635Z", "updated_at":"2025-10-29T22:54:48.102635Z", "references":[], "parent_snapshot_id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "status":"creating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "458" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "456" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 76777a68-7e8e-4755-abed-8443e93ca0f8 + - c77a6715-994c-4f53-b04a-0677fcd54d75 status: 200 OK code: 200 - duration: 1.624428079s + duration: 767.864426ms - id: 34 request: proto: HTTP/1.1 @@ -1717,7 +1457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 method: GET response: proto: HTTP/2.0 @@ -1725,31 +1465,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 458 + content_length: 456 uncompressed: false - 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"}' + body: '{"id":"82b5413d-0df7-47cc-a307-cf29c868b435", "name":"tf-volume-fervent-dewdney", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:48.102635Z", "updated_at":"2025-10-29T22:54:48.102635Z", "references":[], "parent_snapshot_id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "status":"creating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "458" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "456" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:01 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 445b1162-a88d-41d3-8ddf-14d2abe844bd + - 38924eeb-d7f7-4f40-81ba-991e9e7cbe4b status: 200 OK code: 200 - duration: 97.459943ms + duration: 72.505234ms - id: 35 request: proto: HTTP/1.1 @@ -1766,7 +1498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 method: GET response: proto: HTTP/2.0 @@ -1774,31 +1506,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 459 + content_length: 457 uncompressed: false - 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"}' + body: '{"id":"82b5413d-0df7-47cc-a307-cf29c868b435", "name":"tf-volume-fervent-dewdney", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:48.102635Z", "updated_at":"2025-10-29T22:54:48.102635Z", "references":[], "parent_snapshot_id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "459" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "457" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e7bb997-5897-4adc-9d36-35592a54ddf6 + - 8f728074-6036-4204-b4d3-d4c5f6571d9a status: 200 OK code: 200 - duration: 137.39308ms + duration: 79.949644ms - id: 36 request: proto: HTTP/1.1 @@ -1815,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/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 method: GET response: proto: HTTP/2.0 @@ -1823,31 +1547,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 459 + content_length: 457 uncompressed: false - 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"}' + body: '{"id":"82b5413d-0df7-47cc-a307-cf29c868b435", "name":"tf-volume-fervent-dewdney", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:48.102635Z", "updated_at":"2025-10-29T22:54:48.102635Z", "references":[], "parent_snapshot_id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "459" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "457" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:07 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e8177f4-eb41-4b5f-b42a-67a6574addf1 + - a9c8e8cd-5abb-45cf-822a-04555517c616 status: 200 OK code: 200 - duration: 99.519298ms + duration: 85.196285ms - id: 37 request: proto: HTTP/1.1 @@ -1864,7 +1580,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 method: GET response: proto: HTTP/2.0 @@ -1872,31 +1588,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 481 + content_length: 480 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":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' + body: '{"id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "name":"tf-snapshot-charming-shannon", "parent_volume":{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:12.496290Z", "updated_at":"2025-10-29T22:54:12.496290Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "480" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 301c698d-ca77-4775-9d1c-8c940c57018c + - a0bfb22d-b85c-4834-9ee2-870196ff4e9b status: 200 OK code: 200 - duration: 1.487304599s + duration: 143.057534ms - id: 38 request: proto: HTTP/1.1 @@ -1909,7 +1617,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1921,35 +1631,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:08 GMT + - Wed, 29 Oct 2025 22:54:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8dc2b619-e71d-421e-bffa-4c5bda5f15f5 + - 3c82e3eb-afac-49f1-920a-6093ba008758 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 44.486382ms + duration: 45.01636ms - id: 39 request: proto: HTTP/1.1 @@ -1962,7 +1664,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1976,33 +1680,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:08 GMT + - Wed, 29 Oct 2025 22:54:54 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 69b20df2-9dfd-40b1-b601-b724552ad957 + - 4c6f8658-9f36-4ba7-8ab0-2c3311862732 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 49.353749ms + duration: 43.191257ms - id: 40 request: proto: HTTP/1.1 @@ -2014,7 +1710,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":"39c60736-36e4-4bc3-8455-b5078d6fb339","boot":false,"volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-tests-instance-root-volume-from-external-snapshot-2","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","volumes":{"0":{"id":"82b5413d-0df7-47cc-a307-cf29c868b435","boot":false,"volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -2029,33 +1725,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1240 + content_length: 1286 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: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"}}' + body: '{"server": {"id": "2974301b-c0fa-42ae-81f9-d0281f1da648", "name": "tf-tests-instance-root-volume-from-external-snapshot-2", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot-2", "image": null, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82b5413d-0df7-47cc-a307-cf29c868b435", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:54.762846+00:00", "modification_date": "2025-10-29T22:54:54.762846+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1240" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1286" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:54:55 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e0fda884-1777-4472-a7bd-e5e8afcfd661 + - 2a3c7686-eca5-4e71-b90b-1e6e087c8c05 status: 201 Created code: 201 - duration: 1.023537929s + duration: 894.079681ms - id: 41 request: proto: HTTP/1.1 @@ -2072,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/0058fee9-b925-4749-962b-283bea1ea54a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 method: GET response: proto: HTTP/2.0 @@ -2082,29 +1770,21 @@ 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-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"}}' + body: '{"server": {"id": "2974301b-c0fa-42ae-81f9-d0281f1da648", "name": "tf-tests-instance-root-volume-from-external-snapshot-2", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot-2", "image": null, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82b5413d-0df7-47cc-a307-cf29c868b435", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:54.762846+00:00", "modification_date": "2025-10-29T22:54:54.762846+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1240" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d18692b7-c5eb-47d2-9e4c-ccda62b5e4e9 + - 30d9ae67-5ce1-4c30-90eb-d0d1009dd371 status: 200 OK code: 200 - duration: 135.534829ms + duration: 155.651074ms - id: 42 request: proto: HTTP/1.1 @@ -2121,7 +1801,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 method: GET response: proto: HTTP/2.0 @@ -2131,29 +1811,21 @@ 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-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"}}' + body: '{"server": {"id": "2974301b-c0fa-42ae-81f9-d0281f1da648", "name": "tf-tests-instance-root-volume-from-external-snapshot-2", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot-2", "image": null, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82b5413d-0df7-47cc-a307-cf29c868b435", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:54.762846+00:00", "modification_date": "2025-10-29T22:54:54.762846+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1240" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1528a657-afb9-45ee-914f-81893cd402f6 + - 848153da-2331-4b2d-b9bb-8093b70480a2 status: 200 OK code: 200 - duration: 149.377514ms + duration: 141.362115ms - id: 43 request: proto: HTTP/1.1 @@ -2170,7 +1842,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 method: GET response: proto: HTTP/2.0 @@ -2178,31 +1850,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 689 uncompressed: false - 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"}' + body: '{"id":"82b5413d-0df7-47cc-a307-cf29c868b435", "name":"tf-volume-fervent-dewdney", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:48.102635Z", "updated_at":"2025-10-29T22:54:54.776291Z", "references":[{"id":"df89bf5e-e134-4ce7-8fa0-bba058fe382e", "product_resource_type":"instance_server", "product_resource_id":"2974301b-c0fa-42ae-81f9-d0281f1da648", "created_at":"2025-10-29T22:54:54.776291Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "689" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1c7993a8-37fa-4e9c-bd32-cf8df8dae52e + - 226d6372-314c-4d13-8411-9b323f7480b6 status: 200 OK code: 200 - duration: 104.8741ms + duration: 79.401258ms - id: 44 request: proto: HTTP/1.1 @@ -2221,7 +1885,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/0058fee9-b925-4749-962b-283bea1ea54a/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648/action method: POST response: proto: HTTP/2.0 @@ -2231,31 +1895,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "a54c99c7-f046-4d0f-bdcb-d7025d744511", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/2974301b-c0fa-42ae-81f9-d0281f1da648/action", "href_result": "/servers/2974301b-c0fa-42ae-81f9-d0281f1da648", "started_at": "2025-10-29T22:54:55.667331+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:10 GMT + - Wed, 29 Oct 2025 22:54:55 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fc463109-b84f-4caa-9440-da96fd42278a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a54c99c7-f046-4d0f-bdcb-d7025d744511 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f42e2252-07bf-4e51-9f32-77d368291625 + - 0022274d-eefb-4a8f-8be4-4eab3721a280 status: 202 Accepted code: 202 - duration: 276.39231ms + duration: 263.127734ms - id: 45 request: proto: HTTP/1.1 @@ -2272,7 +1928,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 method: GET response: proto: HTTP/2.0 @@ -2282,29 +1938,21 @@ 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-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"}}' + body: '{"server": {"id": "2974301b-c0fa-42ae-81f9-d0281f1da648", "name": "tf-tests-instance-root-volume-from-external-snapshot-2", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot-2", "image": null, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82b5413d-0df7-47cc-a307-cf29c868b435", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:54.762846+00:00", "modification_date": "2025-10-29T22:54:55.456084+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1262" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 38ea671b-2f6c-4733-8034-7146b4c6d53f + - 0683221d-45c9-438e-83e5-a9c55302620e status: 200 OK code: 200 - duration: 152.122191ms + duration: 148.318072ms - id: 46 request: proto: HTTP/1.1 @@ -2321,7 +1969,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 method: GET response: proto: HTTP/2.0 @@ -2329,31 +1977,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1396 + content_length: 1442 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"}}' + body: '{"server": {"id": "2974301b-c0fa-42ae-81f9-d0281f1da648", "name": "tf-tests-instance-root-volume-from-external-snapshot-2", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot-2", "image": null, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82b5413d-0df7-47cc-a307-cf29c868b435", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:54.762846+00:00", "modification_date": "2025-10-29T22:54:58.572425+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "201", "node_id": "25"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1396" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1442" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1cdf10d0-c26c-4314-a09d-6d7056f995c1 + - 040d66e0-0a81-447d-8921-d56fa4c51eba status: 200 OK code: 200 - duration: 118.735065ms + duration: 191.520863ms - id: 47 request: proto: HTTP/1.1 @@ -2370,7 +2010,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 method: GET response: proto: HTTP/2.0 @@ -2378,31 +2018,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1396 + content_length: 1442 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"}}' + body: '{"server": {"id": "2974301b-c0fa-42ae-81f9-d0281f1da648", "name": "tf-tests-instance-root-volume-from-external-snapshot-2", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot-2", "image": null, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82b5413d-0df7-47cc-a307-cf29c868b435", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:54.762846+00:00", "modification_date": "2025-10-29T22:54:58.572425+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "201", "node_id": "25"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1396" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1442" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d8c7fb99-a9bf-41fe-8172-df9176d67d59 + - fabae004-8530-4d93-bb89-ff10dac455f0 status: 200 OK code: 200 - duration: 146.720889ms + duration: 162.283509ms - id: 48 request: proto: HTTP/1.1 @@ -2419,7 +2051,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 method: GET response: proto: HTTP/2.0 @@ -2429,29 +2061,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"39c60736-36e4-4bc3-8455-b5078d6fb339","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "82b5413d-0df7-47cc-a307-cf29c868b435"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 69ef6d0b-b150-40ce-b524-41558d53036e + - cbda85e2-056b-4722-9e06-3f723a4bc43a status: 404 Not Found code: 404 - duration: 33.896016ms + duration: 35.362909ms - id: 49 request: proto: HTTP/1.1 @@ -2468,7 +2092,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 method: GET response: proto: HTTP/2.0 @@ -2476,31 +2100,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 689 uncompressed: false - 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"}' + body: '{"id":"82b5413d-0df7-47cc-a307-cf29c868b435", "name":"tf-volume-fervent-dewdney", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:48.102635Z", "updated_at":"2025-10-29T22:54:54.776291Z", "references":[{"id":"df89bf5e-e134-4ce7-8fa0-bba058fe382e", "product_resource_type":"instance_server", "product_resource_id":"2974301b-c0fa-42ae-81f9-d0281f1da648", "created_at":"2025-10-29T22:54:54.776291Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "689" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0eb64c88-fc45-47a9-8fa8-c04c6728a96b + - b886381a-7832-4078-9a7a-d92f645e2315 status: 200 OK code: 200 - duration: 85.051846ms + duration: 84.792472ms - id: 50 request: proto: HTTP/1.1 @@ -2517,7 +2133,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648/user_data method: GET response: proto: HTTP/2.0 @@ -2527,29 +2143,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1559dc6a-aa1f-407d-b0b7-58602693063f + - ccdb955a-b682-42ad-87fe-227142fc1506 status: 200 OK code: 200 - duration: 93.050595ms + duration: 98.870868ms - id: 51 request: proto: HTTP/1.1 @@ -2566,7 +2174,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648/private_nics method: GET response: proto: HTTP/2.0 @@ -2576,33 +2184,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:16 GMT + - Wed, 29 Oct 2025 22:55:01 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1142d7c2-6ef0-46b9-8ac2-9070898ecb7a + - c4d734dd-266c-448b-915f-ceb318d08751 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 125.954502ms + duration: 102.038782ms - id: 52 request: proto: HTTP/1.1 @@ -2619,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/f1fdbec6-0d99-4809-843f-8fe44d6426d0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b method: GET response: proto: HTTP/2.0 @@ -2627,31 +2227,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1965 + content_length: 2011 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"}}' + body: '{"server": {"id": "b57275a4-7953-432e-9d54-556db2e0b80b", "name": "tf-tests-instance-root-volume-from-external-snapshot", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5254dc93-fbc2-4095-8997-689bdf3ccfca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:04.948127+00:00", "modification_date": "2025-10-29T22:54:09.057715+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "131"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1965" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2011" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b5d9be80-d762-4a33-9808-4820474fa30c + - f0464703-4e9d-4cab-9740-a36b46aadd0d status: 200 OK code: 200 - duration: 148.296544ms + duration: 156.596225ms - id: 53 request: proto: HTTP/1.1 @@ -2668,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/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca method: GET response: proto: HTTP/2.0 @@ -2678,29 +2270,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2908b234-85fa-4ff3-b91d-a152424794f6","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5254dc93-fbc2-4095-8997-689bdf3ccfca"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c8166b85-433a-4aea-86af-f01855a07cac + - 1fb28929-0931-4bb4-a766-c8c83d8d2c55 status: 404 Not Found code: 404 - duration: 25.464717ms + duration: 48.015479ms - id: 54 request: proto: HTTP/1.1 @@ -2717,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/2908b234-85fa-4ff3-b91d-a152424794f6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca method: GET response: proto: HTTP/2.0 @@ -2727,29 +2311,21 @@ interactions: trailer: {} content_length: 705 uncompressed: false - 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"}' + body: '{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:05.076395Z", "updated_at":"2025-10-29T22:54:05.076395Z", "references":[{"id":"0872b304-3fa6-44a3-a2ce-a0e6949e9f9a", "product_resource_type":"instance_server", "product_resource_id":"b57275a4-7953-432e-9d54-556db2e0b80b", "created_at":"2025-10-29T22:54:05.076395Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:05:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eacb8588-1d5c-4a91-8963-093c7bc7c8da + - 342ef5fb-dfc2-462e-ac18-a119785037bd status: 200 OK code: 200 - duration: 78.630306ms + duration: 98.430635ms - id: 55 request: proto: HTTP/1.1 @@ -2766,7 +2342,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/user_data method: GET response: proto: HTTP/2.0 @@ -2776,29 +2352,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0036f65b-cafc-42fa-ae87-0c14a918a4d8 + - 54d6b59c-6ccc-4d20-8227-86ef5d0e6059 status: 200 OK code: 200 - duration: 102.915783ms + duration: 106.968601ms - id: 56 request: proto: HTTP/1.1 @@ -2815,7 +2383,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/private_nics method: GET response: proto: HTTP/2.0 @@ -2825,33 +2393,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:16 GMT + - Wed, 29 Oct 2025 22:55:02 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 41565212-7c19-4c5d-81f8-39d6ab29b67d + - c6378c6d-5e14-47e0-b0ae-0ca3766820ac X-Total-Count: - "0" status: 200 OK code: 200 - duration: 94.578951ms + duration: 113.974953ms - id: 57 request: proto: HTTP/1.1 @@ -2868,7 +2428,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 method: GET response: proto: HTTP/2.0 @@ -2876,31 +2436,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 481 + content_length: 480 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":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' + body: '{"id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "name":"tf-snapshot-charming-shannon", "parent_volume":{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:12.496290Z", "updated_at":"2025-10-29T22:54:12.496290Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "480" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 37ff3bde-43e3-462e-8f8f-28d6fe37f313 + - b280c856-4f5f-4e98-8217-b3e6d6ca5f03 status: 200 OK code: 200 - duration: 3.010609574s + duration: 262.843347ms - id: 58 request: proto: HTTP/1.1 @@ -2917,7 +2469,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 method: GET response: proto: HTTP/2.0 @@ -2925,31 +2477,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 689 uncompressed: false - 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"}' + body: '{"id":"82b5413d-0df7-47cc-a307-cf29c868b435", "name":"tf-volume-fervent-dewdney", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:48.102635Z", "updated_at":"2025-10-29T22:54:54.776291Z", "references":[{"id":"df89bf5e-e134-4ce7-8fa0-bba058fe382e", "product_resource_type":"instance_server", "product_resource_id":"2974301b-c0fa-42ae-81f9-d0281f1da648", "created_at":"2025-10-29T22:54:54.776291Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "689" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dcf055d0-2be6-4929-bce8-5c3783e64a5c + - 6fbcbd9b-ddbd-4d82-a521-3ca071cfc10b status: 200 OK code: 200 - duration: 87.672643ms + duration: 77.263463ms - id: 59 request: proto: HTTP/1.1 @@ -2966,7 +2510,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 method: GET response: proto: HTTP/2.0 @@ -2974,31 +2518,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 481 + content_length: 480 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":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' + body: '{"id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "name":"tf-snapshot-charming-shannon", "parent_volume":{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:12.496290Z", "updated_at":"2025-10-29T22:54:12.496290Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "480" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 89d732bc-6f6f-42bf-9849-cf48baf6ff05 + - 6628b6c7-0d57-480d-9551-dd4cfea9ccad status: 200 OK code: 200 - duration: 462.354776ms + duration: 140.972669ms - id: 60 request: proto: HTTP/1.1 @@ -3015,7 +2551,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 method: GET response: proto: HTTP/2.0 @@ -3023,31 +2559,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1396 + content_length: 1442 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"}}' + body: '{"server": {"id": "2974301b-c0fa-42ae-81f9-d0281f1da648", "name": "tf-tests-instance-root-volume-from-external-snapshot-2", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot-2", "image": null, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82b5413d-0df7-47cc-a307-cf29c868b435", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:54.762846+00:00", "modification_date": "2025-10-29T22:54:58.572425+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "201", "node_id": "25"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1396" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1442" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 291bdae3-788d-41f0-8e7f-671de5e2d0dc + - 2f5af8f4-2b52-46f7-a3d7-7c01c07ad8ff status: 200 OK code: 200 - duration: 131.329444ms + duration: 137.862603ms - id: 61 request: proto: HTTP/1.1 @@ -3064,7 +2592,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 method: GET response: proto: HTTP/2.0 @@ -3074,29 +2602,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"39c60736-36e4-4bc3-8455-b5078d6fb339","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "82b5413d-0df7-47cc-a307-cf29c868b435"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8f3086c7-dfd3-4833-a3c1-8abfe974bb9b + - 9082a0e7-7143-47e6-aafd-d75e8feeeb52 status: 404 Not Found code: 404 - duration: 60.534708ms + duration: 24.533548ms - id: 62 request: proto: HTTP/1.1 @@ -3113,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/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 method: GET response: proto: HTTP/2.0 @@ -3121,31 +2641,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 689 uncompressed: false - 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"}' + body: '{"id":"82b5413d-0df7-47cc-a307-cf29c868b435", "name":"tf-volume-fervent-dewdney", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:48.102635Z", "updated_at":"2025-10-29T22:54:54.776291Z", "references":[{"id":"df89bf5e-e134-4ce7-8fa0-bba058fe382e", "product_resource_type":"instance_server", "product_resource_id":"2974301b-c0fa-42ae-81f9-d0281f1da648", "created_at":"2025-10-29T22:54:54.776291Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "691" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "689" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aea0aca6-c03c-425d-8d66-a100d2e024e5 + - 061083e5-6e5a-4f75-8520-edc5e7bec1ec status: 200 OK code: 200 - duration: 114.029395ms + duration: 83.087103ms - id: 63 request: proto: HTTP/1.1 @@ -3162,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/0058fee9-b925-4749-962b-283bea1ea54a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648/user_data method: GET response: proto: HTTP/2.0 @@ -3172,29 +2684,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:20 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a02c50c5-cf2d-4646-83cf-17114f2c184f + - 0c445b5d-e095-4de8-a88a-c7dbbbe57cbb status: 200 OK code: 200 - duration: 94.634839ms + duration: 93.780369ms - id: 64 request: proto: HTTP/1.1 @@ -3211,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/0058fee9-b925-4749-962b-283bea1ea54a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648/private_nics method: GET response: proto: HTTP/2.0 @@ -3221,33 +2725,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:20 GMT + - Wed, 29 Oct 2025 22:55:03 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 300fe6f7-c89d-4ed2-af28-298070cd9979 + - 31d8adcd-5df1-4926-8b29-074d919d8975 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.478365ms + duration: 100.385301ms - id: 65 request: proto: HTTP/1.1 @@ -3264,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/servers/0058fee9-b925-4749-962b-283bea1ea54a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 method: GET response: proto: HTTP/2.0 @@ -3274,29 +2770,21 @@ interactions: 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"}}' + body: '{"server": {"id": "2974301b-c0fa-42ae-81f9-d0281f1da648", "name": "tf-tests-instance-root-volume-from-external-snapshot-2", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot-2", "image": null, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82b5413d-0df7-47cc-a307-cf29c868b435", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:54.762846+00:00", "modification_date": "2025-10-29T22:54:58.572425+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "201", "node_id": "25"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1396" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:21 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 34d12e96-8b89-42cd-ba28-497db77599dc + - fb923098-8063-4452-8b95-d8c72e69a853 status: 200 OK code: 200 - duration: 127.396271ms + duration: 131.788074ms - id: 66 request: proto: HTTP/1.1 @@ -3313,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/0058fee9-b925-4749-962b-283bea1ea54a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 method: GET response: proto: HTTP/2.0 @@ -3323,29 +2811,21 @@ interactions: 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"}}' + body: '{"server": {"id": "2974301b-c0fa-42ae-81f9-d0281f1da648", "name": "tf-tests-instance-root-volume-from-external-snapshot-2", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot-2", "image": null, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82b5413d-0df7-47cc-a307-cf29c868b435", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:54.762846+00:00", "modification_date": "2025-10-29T22:54:58.572425+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "201", "node_id": "25"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1396" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:21 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c1b16419-53f0-447f-9dc8-3502b1726502 + - 95079297-8d28-48af-ab87-fab04348ed0c status: 200 OK code: 200 - duration: 128.309383ms + duration: 128.725257ms - id: 67 request: proto: HTTP/1.1 @@ -3364,7 +2844,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/0058fee9-b925-4749-962b-283bea1ea54a/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648/action method: POST response: proto: HTTP/2.0 @@ -3374,31 +2854,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "a88c524b-c911-4817-be68-dc73aa2ada70", "description": "server_terminate", "status": "pending", "href_from": "/servers/2974301b-c0fa-42ae-81f9-d0281f1da648/action", "href_result": "/servers/2974301b-c0fa-42ae-81f9-d0281f1da648", "started_at": "2025-10-29T22:55:04.413303+00:00", "terminated_at": null, "progress": 0, "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:21 GMT + - Wed, 29 Oct 2025 22:55:04 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a54590a9-63ed-49f8-938e-af6cec9f06df + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a88c524b-c911-4817-be68-dc73aa2ada70 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 51e34b39-8dd5-4149-8a44-f859f903f451 + - 2137dcee-ef1d-4edc-ad6a-f752f3ac944c status: 202 Accepted code: 202 - duration: 255.07462ms + duration: 552.792815ms - id: 68 request: proto: HTTP/1.1 @@ -3415,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/0058fee9-b925-4749-962b-283bea1ea54a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 method: GET response: proto: HTTP/2.0 @@ -3423,31 +2895,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1405 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: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"}}' + body: '{"server": {"id": "2974301b-c0fa-42ae-81f9-d0281f1da648", "name": "tf-tests-instance-root-volume-from-external-snapshot-2", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot-2", "image": null, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "82b5413d-0df7-47cc-a307-cf29c868b435", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:54.762846+00:00", "modification_date": "2025-10-29T22:55:03.935458+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "201", "node_id": "25"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1359" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1405" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:21 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 553b156e-4068-4055-ba1d-f4b992475756 + - ef43b710-5380-4691-a702-ed8e40c5fa8f status: 200 OK code: 200 - duration: 175.778111ms + duration: 161.211917ms - id: 69 request: proto: HTTP/1.1 @@ -3464,7 +2928,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 method: GET response: proto: HTTP/2.0 @@ -3474,29 +2938,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"0058fee9-b925-4749-962b-283bea1ea54a","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "2974301b-c0fa-42ae-81f9-d0281f1da648"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7c4598c5-73c9-4a91-8df8-02e447cccfc7 + - 64efdbd4-8863-4b17-b9bd-519df690f3eb status: 404 Not Found code: 404 - duration: 62.732792ms + duration: 37.089027ms - id: 70 request: proto: HTTP/1.1 @@ -3513,7 +2969,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 method: GET response: proto: HTTP/2.0 @@ -3523,29 +2979,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"39c60736-36e4-4bc3-8455-b5078d6fb339","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "82b5413d-0df7-47cc-a307-cf29c868b435"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:26 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c8ae6e32-3228-435a-9320-74f0eb90b43e + - 8a8631f0-d910-4492-aa4d-01be0df1802d status: 404 Not Found code: 404 - duration: 22.5481ms + duration: 26.817109ms - id: 71 request: proto: HTTP/1.1 @@ -3562,7 +3010,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 method: GET response: proto: HTTP/2.0 @@ -3570,31 +3018,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 484 + content_length: 482 uncompressed: false - 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"}' + body: '{"id":"82b5413d-0df7-47cc-a307-cf29c868b435", "name":"tf-volume-fervent-dewdney", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:48.102635Z", "updated_at":"2025-10-29T22:55:06.475211Z", "references":[], "parent_snapshot_id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:06.475211Z", "zone":"fr-par-1"}' headers: Content-Length: - - "484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "482" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 35a119d9-9aca-4ec3-9199-aab87bd60156 + - 4dc3cc7b-e5c5-417c-9e6e-ea4f0ae87321 status: 200 OK code: 200 - duration: 81.913338ms + duration: 100.427151ms - id: 72 request: proto: HTTP/1.1 @@ -3611,7 +3051,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 method: DELETE response: proto: HTTP/2.0 @@ -3623,25 +3063,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f6171df-efac-4647-b7aa-01f8159d88ef + - f1eef881-21b1-4f84-9a69-66405aec40ba status: 204 No Content code: 204 - duration: 184.894913ms + duration: 160.557675ms - id: 73 request: proto: HTTP/1.1 @@ -3658,7 +3090,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 method: GET response: proto: HTTP/2.0 @@ -3668,29 +3100,21 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"39c60736-36e4-4bc3-8455-b5078d6fb339","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"82b5413d-0df7-47cc-a307-cf29c868b435","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:05:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 10ad375a-613b-4eea-b82e-d042328cbd1c + - 0405705f-9f29-425f-890b-d014ba80a73f status: 404 Not Found code: 404 - duration: 85.91354ms + duration: 76.291337ms - id: 74 request: proto: HTTP/1.1 @@ -3707,7 +3131,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 method: GET response: proto: HTTP/2.0 @@ -3715,31 +3139,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 481 + content_length: 480 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":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' + body: '{"id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90", "name":"tf-snapshot-charming-shannon", "parent_volume":{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "status":"in_use"}, "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:12.496290Z", "updated_at":"2025-10-29T22:54:12.496290Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' headers: Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "480" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cbef83d4-7125-44b3-9242-a73635fb1439 + - 7c934a55-85c1-4de2-a054-f0fd74205a68 status: 200 OK code: 200 - duration: 858.608473ms + duration: 247.03494ms - id: 75 request: proto: HTTP/1.1 @@ -3756,7 +3172,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 method: DELETE response: proto: HTTP/2.0 @@ -3768,25 +3184,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - de9292b4-d188-4e50-95c7-ebbc511d2b8e + - 68afa385-5287-4f03-b677-2f9652346889 status: 204 No Content code: 204 - duration: 619.75386ms + duration: 331.640375ms - id: 76 request: proto: HTTP/1.1 @@ -3803,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/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 method: GET response: proto: HTTP/2.0 @@ -3813,29 +3221,21 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90","type":"not_found"}' headers: Content-Length: - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8afb4b20-8124-4506-a1bd-3d789c2c95d9 + - 22d26d76-104f-4978-a096-595a227cf2ca status: 404 Not Found code: 404 - duration: 79.878073ms + duration: 82.170551ms - id: 77 request: proto: HTTP/1.1 @@ -3852,7 +3252,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b method: GET response: proto: HTTP/2.0 @@ -3862,29 +3262,21 @@ interactions: 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"}}' + body: '{"server": {"id": "b57275a4-7953-432e-9d54-556db2e0b80b", "name": "tf-tests-instance-root-volume-from-external-snapshot", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5254dc93-fbc2-4095-8997-689bdf3ccfca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:04.948127+00:00", "modification_date": "2025-10-29T22:54:09.057715+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "131"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1965" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:29 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 46966631-40c2-444b-a1ec-694db3770108 + - 9a44c814-b392-44dd-a1ef-943dd51adbd5 status: 200 OK code: 200 - duration: 130.444563ms + duration: 127.951802ms - id: 78 request: proto: HTTP/1.1 @@ -3901,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/f1fdbec6-0d99-4809-843f-8fe44d6426d0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b method: GET response: proto: HTTP/2.0 @@ -3911,29 +3303,21 @@ interactions: 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"}}' + body: '{"server": {"id": "b57275a4-7953-432e-9d54-556db2e0b80b", "name": "tf-tests-instance-root-volume-from-external-snapshot", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5254dc93-fbc2-4095-8997-689bdf3ccfca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:04.948127+00:00", "modification_date": "2025-10-29T22:54:09.057715+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "131"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "1965" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:29 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9e2b5cdf-82e2-4174-a8dd-44ec2d4c551a + - 624bc999-15e4-4d36-b67a-80480e1063c1 status: 200 OK code: 200 - duration: 150.844526ms + duration: 149.769983ms - id: 79 request: proto: HTTP/1.1 @@ -3952,7 +3336,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/f1fdbec6-0d99-4809-843f-8fe44d6426d0/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/action method: POST response: proto: HTTP/2.0 @@ -3962,31 +3346,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "080946be-2cf0-4ee3-bda6-ec1342420613", "description": "server_terminate", "status": "pending", "href_from": "/servers/b57275a4-7953-432e-9d54-556db2e0b80b/action", "href_result": "/servers/b57275a4-7953-432e-9d54-556db2e0b80b", "started_at": "2025-10-29T22:55:11.247091+00:00", "terminated_at": null, "progress": 0, "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:29 GMT + - Wed, 29 Oct 2025 22:55:11 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b5193cc6-384e-4df6-8d01-1259d4be2abb + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/080946be-2cf0-4ee3-bda6-ec1342420613 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7673dd67-e403-4c75-ab14-232fc4a81214 + - 8e356920-d72d-46b2-aaee-cb96fc6299c0 status: 202 Accepted code: 202 - duration: 279.490167ms + duration: 291.569802ms - id: 80 request: proto: HTTP/1.1 @@ -4003,7 +3379,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b method: GET response: proto: HTTP/2.0 @@ -4011,31 +3387,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1928 + content_length: 1974 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: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"}}' + body: '{"server": {"id": "b57275a4-7953-432e-9d54-556db2e0b80b", "name": "tf-tests-instance-root-volume-from-external-snapshot", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-instance-root-volume-from-external-snapshot", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "5254dc93-fbc2-4095-8997-689bdf3ccfca", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:04.948127+00:00", "modification_date": "2025-10-29T22:55:11.021851+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "131"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1928" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1974" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:29 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bf3867f9-cf74-47e3-8b34-6a1067b3fbcf + - fae0b753-94ca-4141-ae9e-c8e369db7fdb status: 200 OK code: 200 - duration: 162.160055ms + duration: 115.020792ms - id: 81 request: proto: HTTP/1.1 @@ -4052,7 +3420,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b method: GET response: proto: HTTP/2.0 @@ -4062,29 +3430,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "b57275a4-7953-432e-9d54-556db2e0b80b"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:34 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0cc107e4-ccc3-4ebe-90a2-d81830ac1642 + - d6ac0e10-e3f5-4a19-8b2b-e716512740ff status: 404 Not Found code: 404 - duration: 43.29162ms + duration: 50.247004ms - id: 82 request: proto: HTTP/1.1 @@ -4101,7 +3461,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca method: GET response: proto: HTTP/2.0 @@ -4111,29 +3471,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2908b234-85fa-4ff3-b91d-a152424794f6","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5254dc93-fbc2-4095-8997-689bdf3ccfca"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:34 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ffaa8b52-d19d-4d88-9856-b03b97a79b6f + - 7eaac6fb-696f-4582-95b0-c8c3e42fb7e1 status: 404 Not Found code: 404 - duration: 24.224035ms + duration: 23.556962ms - id: 83 request: proto: HTTP/1.1 @@ -4150,7 +3502,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca method: GET response: proto: HTTP/2.0 @@ -4160,29 +3512,21 @@ interactions: trailer: {} content_length: 498 uncompressed: false - 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"}' + body: '{"id":"5254dc93-fbc2-4095-8997-689bdf3ccfca", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":50000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:05.076395Z", "updated_at":"2025-10-29T22:55:13.047094Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:13.047094Z", "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:05:34 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ee5ceb47-91c0-4f18-acd9-27b5a640fc37 + - e7bb3ea7-e5e0-44aa-ad9e-9f27583a118a status: 200 OK code: 200 - duration: 109.675112ms + duration: 92.54878ms - id: 84 request: proto: HTTP/1.1 @@ -4199,7 +3543,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca method: DELETE response: proto: HTTP/2.0 @@ -4211,25 +3555,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:34 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d74d7296-c524-40c7-9bcc-a6b495a7df10 + - d2915c23-47aa-4e21-aa2f-df9d5cb7e048 status: 204 No Content code: 204 - duration: 187.994656ms + duration: 150.092007ms - id: 85 request: proto: HTTP/1.1 @@ -4246,7 +3582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b method: GET response: proto: HTTP/2.0 @@ -4256,29 +3592,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"0058fee9-b925-4749-962b-283bea1ea54a","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "b57275a4-7953-432e-9d54-556db2e0b80b"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bd5e2c88-3992-474e-8b6a-fac01b29eb12 + - 06316e8f-ad27-42f3-b3b5-b46f42e7d647 status: 404 Not Found code: 404 - duration: 48.307917ms + duration: 63.126498ms - id: 86 request: proto: HTTP/1.1 @@ -4295,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/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 method: GET response: proto: HTTP/2.0 @@ -4305,26 +3633,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "2974301b-c0fa-42ae-81f9-d0281f1da648"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 07e5c4cf-88cf-4c84-ba03-f7531e5df78b + - 91b2ac04-eecb-4efd-9091-873ee7a880dc status: 404 Not Found code: 404 - duration: 45.347396ms + duration: 43.518412ms diff --git a/internal/services/instance/testdata/server-root-volume1.cassette.yaml b/internal/services/instance/testdata/server-root-volume1.cassette.yaml index c6bc878cb..5c11c4814 100644 --- a/internal/services/instance/testdata/server-root-volume1.cassette.yaml +++ b/internal/services/instance/testdata/server-root-volume1.cassette.yaml @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:46 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5dd8d87a-57aa-42e5-96be-b1fc0b1438a8 + - f16c41bb-6f3b-45c3-8c43-ef3946c39cc0 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 50.324169ms + duration: 81.822088ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:46 GMT + - Wed, 29 Oct 2025 22:53:37 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a77ba9b6-47e1-40e1-8f0f-d31d65746a53 + - 96cd619c-5b55-4255-9b72-5677aa137d2f X-Total-Count: - "68" status: 200 OK code: 200 - duration: 53.597376ms + duration: 38.821096ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -133,41 +129,33 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:46 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 51874d6d-622a-4c6e-a90f-45f1a6d49de8 + - d4900b2f-03d9-4f85-ba45-4f3ae4094967 status: 200 OK code: 200 - duration: 48.487235ms + duration: 45.351536ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 344 + content_length: 340 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"]}' + body: '{"name":"tf-srv-gallant-bose","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,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2222 + content_length: 2256 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: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"}}' + body: '{"server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-gallant-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2256" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:47 GMT + - Wed, 29 Oct 2025 22:53:38 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e5374b48-08ec-4bfe-ba00-326b6e26cb08 + - 80fbc2f6-3e24-4659-884f-2061c3cdfe1c status: 201 Created code: 201 - duration: 797.124657ms + duration: 733.341734ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2222 + 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-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"}}' + body: '{"server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-gallant-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2210" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:47 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae32d798-0b11-4550-a01e-f601c4226cd4 + - c1863738-79e0-4682-8487-47d5df922e63 status: 200 OK code: 200 - duration: 135.457521ms + duration: 120.457987ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a method: GET response: proto: HTTP/2.0 @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2222 + 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-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"}}' + body: '{"server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-gallant-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2210" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:47 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 67e1a740-4501-4086-9d61-e194a46aa173 + - 7aeaf4b5-ba02-4656-bce7-e504f9cbef97 status: 200 OK code: 200 - duration: 129.88298ms + duration: 116.117562ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +289,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/efaf5e78-fd14-46c7-9f07-495d590e728b/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a/action method: POST response: proto: HTTP/2.0 @@ -335,31 +299,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "9d90fa38-ce88-46e0-80a6-823ff406dde0", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/49e5c3fc-8128-456a-8881-61308485317a/action", "href_result": "/servers/49e5c3fc-8128-456a-8881-61308485317a", "started_at": "2025-10-29T22:53:39.480764+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:47 GMT + - Wed, 29 Oct 2025 22:53:39 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/85681761-bd94-4f7a-9a22-b4616a905402 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9d90fa38-ce88-46e0-80a6-823ff406dde0 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 26f406de-4ecc-4fbe-b16c-1ca16890fe5d + - 1af4425c-cad5-4fdf-8d60-2ec00871e4e8 status: 202 Accepted code: 202 - duration: 344.070186ms + duration: 668.712043ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a method: GET response: proto: HTTP/2.0 @@ -384,31 +340,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2244 + content_length: 2232 uncompressed: 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":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"}}' + body: '{"server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-gallant-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:39.288821+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2244" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2232" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4ab6fc21-6973-43c0-be8e-562ede04b423 + - 566d985e-d23e-4295-819a-73d6d66fa6ed status: 200 OK code: 200 - duration: 141.682893ms + duration: 149.748033ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2347 + 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-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"}}' + body: '{"server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-gallant-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:39.288821+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1701", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2347" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2381" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:53 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a81a629a-79c8-444f-a56e-30f9a49c13e6 + - c13f0f04-fd1b-4305-ba1c-a41e49d36efc status: 200 OK code: 200 - duration: 122.510263ms + duration: 136.846372ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a method: GET response: proto: HTTP/2.0 @@ -482,31 +422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2378 + 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-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"}}' + body: '{"server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-gallant-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:39.288821+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1701", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2378" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2335" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cbb0d009-ecbc-43f0-b82e-158d65e08b46 + - 7b83f3e7-214e-45ac-aaec-9e3e85f84ee8 status: 200 OK code: 200 - duration: 143.503989ms + duration: 132.102905ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a method: GET response: proto: HTTP/2.0 @@ -531,31 +463,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2378 + content_length: 2366 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-gallant-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:51.121359+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1701", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2378" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2366" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 50281410-83c3-416e-96d6-8c1f686974f5 + - ae1a6e73-62e4-4feb-ad70-e6906f601e09 status: 200 OK code: 200 - duration: 135.193337ms + duration: 152.249347ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b45bf940-fb34-4a9e-b01f-9c058213082c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a method: GET response: proto: HTTP/2.0 @@ -580,31 +504,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 2452 uncompressed: false - 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"}}' + body: '{"server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-gallant-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:51.121359+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1701", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "523" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2452" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 86c1609a-59f1-4d45-9776-76d33d0706ce + - 0b1c6397-b69c-4437-af62-3f4903dddab4 status: 200 OK code: 200 - duration: 113.220841ms + duration: 130.412547ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e26cc147-ba6c-499a-923b-a2f40c7ace18 method: GET response: proto: HTTP/2.0 @@ -629,31 +545,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 519 uncompressed: false - body: '{"user_data":[]}' + body: '{"volume": {"id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "519" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:58 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d602d7b5-dba6-4960-b785-b39e7e44198c + - d4c474fd-b91d-451d-b8a0-c5f3d64398ac status: 200 OK code: 200 - duration: 102.230764ms + duration: 102.207879ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a/user_data method: GET response: proto: HTTP/2.0 @@ -678,35 +586,23 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:58 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f77afa42-d386-4c30-ae14-639c8af2cbde - X-Total-Count: - - "0" + - bc46b5a4-93bc-44b7-ad9c-0df9a86e46b7 status: 200 OK code: 200 - duration: 93.097301ms + duration: 124.735993ms - id: 14 request: proto: HTTP/1.1 @@ -723,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/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a/private_nics method: GET response: proto: HTTP/2.0 @@ -731,31 +627,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2378 + 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-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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "2378" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:59 GMT + - Wed, 29 Oct 2025 22:53:55 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e71d40b1-0cf7-40ee-84a2-fdff46db6fe0 + - 06e2cddd-d42a-480f-84c3-554e407184a5 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 123.720547ms + duration: 85.214224ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a method: GET response: proto: HTTP/2.0 @@ -780,31 +672,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2378 + content_length: 2412 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-gallant-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:51.121359+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1701", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2378" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2412" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:59 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b749634a-4eb0-4520-9e10-2518350d75dc + - 96c0e580-62e4-4f03-ad51-fcd900c3ab05 status: 200 OK code: 200 - duration: 144.979136ms + duration: 128.870354ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b45bf940-fb34-4a9e-b01f-9c058213082c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a method: GET response: proto: HTTP/2.0 @@ -829,31 +713,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 2366 uncompressed: false - 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"}}' + body: '{"server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-gallant-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:51.121359+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1701", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "523" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2366" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:59 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - db665a5e-8f6f-4f2e-9134-45021e124eb0 + - ee288277-9b5a-4c4e-8e26-a3f542b045c7 status: 200 OK code: 200 - duration: 102.18469ms + duration: 123.080518ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e26cc147-ba6c-499a-923b-a2f40c7ace18 method: GET response: proto: HTTP/2.0 @@ -878,31 +754,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 519 uncompressed: false - body: '{"user_data":[]}' + body: '{"volume": {"id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "519" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:59 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 48ce8257-7703-461a-9eb5-b0e74f4546f9 + - aaa2809e-93fc-4d3e-9713-32af0ad95bc0 status: 200 OK code: 200 - duration: 93.895688ms + duration: 89.52769ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a/user_data method: GET response: proto: HTTP/2.0 @@ -927,35 +795,23 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:59 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 16911b09-bd59-4af8-9c40-7567f982f80d - X-Total-Count: - - "0" + - f2dbb783-65c3-4e82-8f25-5f392ec39a2b status: 200 OK code: 200 - duration: 93.579856ms + duration: 93.528171ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +828,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a/private_nics method: GET response: proto: HTTP/2.0 @@ -980,31 +836,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2378 + 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-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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "2378" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:59 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5e847e97-5248-4545-a254-b59d620d575b + - 672b22cd-e651-4523-81c2-bef7a4b3300b + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 137.305097ms + duration: 97.607768ms - id: 20 request: proto: HTTP/1.1 @@ -1021,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/volumes/b45bf940-fb34-4a9e-b01f-9c058213082c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a method: GET response: proto: HTTP/2.0 @@ -1029,31 +881,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 2412 uncompressed: false - 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"}}' + body: '{"server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-gallant-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:51.121359+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1701", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "523" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2412" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:59 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e9b21224-9b59-4fa0-831e-b773ccf1a9ec + - 68edfdae-6016-4d76-8e6a-5cfc87cd2a39 status: 200 OK code: 200 - duration: 95.776194ms + duration: 147.153641ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e26cc147-ba6c-499a-923b-a2f40c7ace18 method: GET response: proto: HTTP/2.0 @@ -1078,31 +922,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 519 uncompressed: false - body: '{"user_data":[]}' + body: '{"volume": {"id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "519" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:00 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 64a66170-7e6a-4929-8a55-b9360c680cad + - 942d3d2f-b0c4-4253-b30b-96556bf843c0 status: 200 OK code: 200 - duration: 88.268258ms + duration: 96.749795ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a/user_data method: GET response: proto: HTTP/2.0 @@ -1127,35 +963,23 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:00 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - de836a34-cd46-4a4a-97bd-5528143f767a - X-Total-Count: - - "0" + - 0a656be5-cf66-4d57-9262-90d680961b4c status: 200 OK code: 200 - duration: 113.435725ms + duration: 93.821348ms - id: 23 request: proto: HTTP/1.1 @@ -1172,7 +996,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a/private_nics method: GET response: proto: HTTP/2.0 @@ -1180,31 +1004,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2378 + 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-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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "2378" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:00 GMT + - Wed, 29 Oct 2025 22:53:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9b0f478b-6282-409a-b9ba-41f6546ec35c + - 513ebca5-49a1-46ad-85b5-5fb661dee27d + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 133.835293ms + duration: 111.358771ms - id: 24 request: proto: HTTP/1.1 @@ -1221,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/efaf5e78-fd14-46c7-9f07-495d590e728b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a method: GET response: proto: HTTP/2.0 @@ -1229,31 +1049,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2378 + content_length: 2412 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-gallant-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:51.121359+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1701", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2378" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2412" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7ae35ce2-d9f8-43e1-80a0-5cbeb22828ae + - 1f8cf6c1-6cc7-4801-b1a9-3e19a7726909 status: 200 OK code: 200 - duration: 130.282792ms + duration: 126.506835ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1082,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a method: GET response: proto: HTTP/2.0 @@ -1278,85 +1090,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2378 + content_length: 2412 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-gallant-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:51.121359+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1701", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2378" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2412" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:00 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c4960c8a-17ed-481c-9e7e-64e55082fce3 + - 6eff8075-d323-4a1e-9780-1c7aaa733ece status: 200 OK code: 200 - duration: 130.055607ms + duration: 133.353146ms - id: 26 - 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/efaf5e78-fd14-46c7-9f07-495d590e728b/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/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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:05:00 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b79c4b9d-43ab-4c62-92ee-43cbdb2ff1ed - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e8782bbb-9e1b-413c-8f97-021a09e40cc1 - status: 202 Accepted - code: 202 - duration: 266.873892ms - - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1372,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/servers/efaf5e78-fd14-46c7-9f07-495d590e728b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a method: GET response: proto: HTTP/2.0 @@ -1380,81 +1131,69 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + content_length: 2366 uncompressed: 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"}}' + body: '{"server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-gallant-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:51.121359+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1701", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2366" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:01 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c24c2f3a-4abc-4182-8ff6-13a5f835c5cf + - b88990ac-0f8c-4b70-bc57-e7b01b4a7fcc status: 200 OK code: 200 - duration: 140.418667ms - - id: 28 + duration: 139.770125ms + - id: 27 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/efaf5e78-fd14-46c7-9f07-495d590e728b - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + 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-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"}}' + body: '{"task": {"id": "4178e21c-f7c2-4109-be12-a7d1f9c23b51", "description": "server_terminate", "status": "pending", "href_from": "/servers/49e5c3fc-8128-456a-8881-61308485317a/action", "href_result": "/servers/49e5c3fc-8128-456a-8881-61308485317a", "started_at": "2025-10-29T22:53:57.718141+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "353" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:06 GMT + - Wed, 29 Oct 2025 22:53:57 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4178e21c-f7c2-4109-be12-a7d1f9c23b51 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab40533a-7e7d-4164-af89-16df002ef92b - status: 200 OK - code: 200 - duration: 137.013157ms - - id: 29 + - 4bdac640-fe85-4303-88e2-43d4b83f5608 + status: 202 Accepted + code: 202 + duration: 252.970599ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1470,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/servers/efaf5e78-fd14-46c7-9f07-495d590e728b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a method: GET response: proto: HTTP/2.0 @@ -1478,32 +1217,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + 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-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"}}' + body: '{"server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-gallant-bose", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e26cc147-ba6c-499a-923b-a2f40c7ace18", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "49e5c3fc-8128-456a-8881-61308485317a", "name": "tf-srv-gallant-bose"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:38.457494+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:4d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:38.457494+00:00", "modification_date": "2025-10-29T22:53:57.510606+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1701", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2375" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:11 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c52bbd9f-4977-49cb-8223-d52990421ca6 + - c46d5050-e69c-4fa4-97a4-a49222d0359b status: 200 OK code: 200 - duration: 143.250838ms - - id: 30 + duration: 120.388625ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1519,7 +1250,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a method: GET response: proto: HTTP/2.0 @@ -1529,30 +1260,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"efaf5e78-fd14-46c7-9f07-495d590e728b","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "49e5c3fc-8128-456a-8881-61308485317a"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:16 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7f6908e7-8641-47e5-83a5-6af31650d1bd + - 422c7268-e690-4c4f-b27f-07d27c68eb64 status: 404 Not Found code: 404 - duration: 319.635295ms - - id: 31 + duration: 51.611454ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1568,7 +1291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b45bf940-fb34-4a9e-b01f-9c058213082c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e26cc147-ba6c-499a-923b-a2f40c7ace18 method: GET response: proto: HTTP/2.0 @@ -1578,30 +1301,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b45bf940-fb34-4a9e-b01f-9c058213082c","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "e26cc147-ba6c-499a-923b-a2f40c7ace18"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:16 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 224496c2-4f0c-4fdb-9b78-7f14bc38d1a1 + - 902877ed-56c6-4f65-ad05-613a0a69218b status: 404 Not Found code: 404 - duration: 27.459217ms - - id: 32 + duration: 29.493709ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1617,7 +1332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b45bf940-fb34-4a9e-b01f-9c058213082c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e26cc147-ba6c-499a-923b-a2f40c7ace18 method: GET response: proto: HTTP/2.0 @@ -1627,30 +1342,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"b45bf940-fb34-4a9e-b01f-9c058213082c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"e26cc147-ba6c-499a-923b-a2f40c7ace18","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:05:16 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 510d74db-dde0-4ea1-b1d0-47083136ec57 + - d6a0a213-8326-4927-b311-e0b882a7fb22 status: 404 Not Found code: 404 - duration: 21.697173ms - - id: 33 + duration: 24.720073ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1662,7 +1369,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1674,36 +1383,28 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:16 GMT + - Wed, 29 Oct 2025 22:54:03 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9e27e1fb-2c1e-4c6f-9afc-e25214ccb92a + - 33dd6c53-8d21-465e-aedb-ec73e08e7aa5 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 51.284672ms - - id: 34 + duration: 39.657713ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1715,7 +1416,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1729,34 +1432,26 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:16 GMT + - Wed, 29 Oct 2025 22:54:03 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa34d719-403d-4d1c-a2ed-a4f2eabc3fdf + - cf8d660e-0d0d-4977-8eb5-3e9dadfd41da X-Total-Count: - "68" status: 200 OK code: 200 - duration: 55.074608ms - - id: 35 + duration: 39.043776ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1768,7 +1463,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1782,41 +1485,33 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:16 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f9cb501f-f886-4092-9460-371801965bff + - a1072828-f8dd-4fb5-a1b5-b3da1ba42be6 status: 200 OK code: 200 - duration: 47.260205ms - - id: 36 + duration: 38.342985ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 347 + content_length: 343 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"]}' + body: '{"name":"tf-srv-competent-dirac","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: @@ -1831,34 +1526,26 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2231 + content_length: 2265 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: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"}}' + body: '{"server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-competent-dirac", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:79", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2231" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2265" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:17 GMT + - Wed, 29 Oct 2025 22:54:03 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 824dae11-582e-4ddf-a340-97b1389d1996 + - e3c39804-1ccc-42c8-9c9b-d0e087d53668 status: 201 Created code: 201 - duration: 900.399449ms - - id: 37 + duration: 795.748459ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1874,7 +1561,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 method: GET response: proto: HTTP/2.0 @@ -1882,32 +1569,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2231 + 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-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"}}' + body: '{"server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-competent-dirac", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:79", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2231" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2219" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c1f5d54d-3dff-4582-8bfd-2029b79946a9 + - 65b56cea-d5e1-4e7d-ae77-d1fe52f82b94 status: 200 OK code: 200 - duration: 150.52802ms - - id: 38 + duration: 126.01108ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1923,7 +1602,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 method: GET response: proto: HTTP/2.0 @@ -1931,32 +1610,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2231 + content_length: 2265 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: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"}}' + body: '{"server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-competent-dirac", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:79", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2231" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2265" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e327646-6754-4074-a4cc-3e80bce4631c + - 085e9a36-2e07-402d-99fc-f21a49f2bc35 status: 200 OK code: 200 - duration: 131.995722ms - - id: 39 + duration: 130.654123ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1974,7 +1645,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/6db3a871-55af-47b4-9ab0-8080e8328995/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256/action method: POST response: proto: HTTP/2.0 @@ -1984,32 +1655,24 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "53e2ba44-d644-4521-8e6c-9e66323ea13c", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256/action", "href_result": "/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256", "started_at": "2025-10-29T22:54:04.404732+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:18 GMT + - Wed, 29 Oct 2025 22:54:04 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fa0b8716-5dca-47d0-ad69-3f5385423908 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/53e2ba44-d644-4521-8e6c-9e66323ea13c Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6f11c309-59b5-4cd7-802f-5a6f4ff7a022 + - 6c9565cb-d64c-462f-83a0-47ca8efe4389 status: 202 Accepted code: 202 - duration: 266.068599ms - - id: 40 + duration: 278.687711ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2025,7 +1688,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 method: GET response: proto: HTTP/2.0 @@ -2033,32 +1696,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2253 + content_length: 2287 uncompressed: 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: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"}}' + body: '{"server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-competent-dirac", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:79", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:04.188966+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2287" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e5468068-753b-47e6-95a7-a0168f012e37 + - 5cde922d-f4d8-45af-9f69-b9c5d0515d4f status: 200 OK code: 200 - duration: 125.910511ms - - id: 41 + duration: 139.70713ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2074,7 +1729,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 method: GET response: proto: HTTP/2.0 @@ -2082,32 +1737,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2355 + 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-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"}}' + body: '{"server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-competent-dirac", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:79", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:04.188966+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "701", "node_id": "32"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2355" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2344" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:23 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8b115b01-27ab-4d10-88c1-0492e611466a + - 0b4ab59d-1f4e-439d-8471-4d303a86774a status: 200 OK code: 200 - duration: 130.696931ms - - id: 42 + duration: 137.605312ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2123,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/6db3a871-55af-47b4-9ab0-8080e8328995 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 method: GET response: proto: HTTP/2.0 @@ -2131,32 +1778,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2355 + content_length: 2390 uncompressed: 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: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"}}' + body: '{"server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-competent-dirac", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:79", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:04.188966+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "701", "node_id": "32"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2355" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2390" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:28 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8441478b-41b1-4017-9cf0-3bcb816f5786 + - 25becef2-4779-433f-8341-6d8d09d473c1 status: 200 OK code: 200 - duration: 124.058297ms - - id: 43 + duration: 129.464803ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2172,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/6db3a871-55af-47b4-9ab0-8080e8328995 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 method: GET response: proto: HTTP/2.0 @@ -2180,32 +1819,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2386 + content_length: 2421 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-competent-dirac", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:79", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:15.371994+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "701", "node_id": "32"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2386" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2421" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:33 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 42b96d31-1f54-4dd8-9e6e-bebbf3259fd0 + - 61349544-4ed0-441b-b6f2-10bede63ace3 status: 200 OK code: 200 - duration: 139.226034ms - - id: 44 + duration: 164.933816ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2221,7 +1852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 method: GET response: proto: HTTP/2.0 @@ -2229,32 +1860,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2386 + content_length: 2421 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-competent-dirac", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:79", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:15.371994+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "701", "node_id": "32"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2386" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2421" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:34 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b63badb9-0a5d-486a-b970-315107dda4bd + - 06f1ae1d-4307-40cb-b85f-c408351b38ce status: 200 OK code: 200 - duration: 116.625334ms - - id: 45 + duration: 118.212464ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2270,7 +1893,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/194924db-da64-45eb-87db-0654dafde03c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/38298ba6-ed4e-4dfe-a447-178e6b552ff4 method: GET response: proto: HTTP/2.0 @@ -2278,32 +1901,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 522 uncompressed: false - 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"}}' + body: '{"volume": {"id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "522" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:34 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b5783403-ad95-4880-9a58-1a3510368944 + - 2b5c048a-3fe8-4b36-ad33-fcc9d228dc1c status: 200 OK code: 200 - duration: 103.002549ms - - id: 46 + duration: 109.833896ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2319,7 +1934,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256/user_data method: GET response: proto: HTTP/2.0 @@ -2329,30 +1944,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:34 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eb5ccbbb-ee6f-45a9-a1f6-aac4c4b8b408 + - 4430d2db-74e8-403b-a6aa-d161e5526159 status: 200 OK code: 200 - duration: 106.231444ms - - id: 47 + duration: 90.531514ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2368,7 +1975,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256/private_nics method: GET response: proto: HTTP/2.0 @@ -2378,34 +1985,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:34 GMT + - Wed, 29 Oct 2025 22:54:20 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 992d2c85-ca2d-431a-9d51-0f268150a12f + - ef7bd470-e0f4-4b81-81b9-1be2bdc77bc3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 111.490396ms - - id: 48 + duration: 102.398203ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2421,7 +2020,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 method: GET response: proto: HTTP/2.0 @@ -2429,32 +2028,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2386 + content_length: 2421 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-competent-dirac", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:79", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:15.371994+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "701", "node_id": "32"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2386" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2421" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:34 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e11fd07f-20bf-45e9-8416-1ef5a495e2e1 + - a5e20fb2-fb2c-4fe7-988d-1f2d71874e49 status: 200 OK code: 200 - duration: 138.328482ms - - id: 49 + duration: 119.430912ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2470,7 +2061,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 method: GET response: proto: HTTP/2.0 @@ -2478,32 +2069,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2386 + content_length: 2421 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-competent-dirac", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:79", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:15.371994+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "701", "node_id": "32"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2386" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2421" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:34 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 06f5b609-af67-4abd-b9f4-afd7fa936c83 + - 6dbe8322-f6d4-42f0-97c6-c4e0e32e37c4 status: 200 OK code: 200 - duration: 133.699281ms - - id: 50 + duration: 147.562415ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2519,7 +2102,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/194924db-da64-45eb-87db-0654dafde03c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/38298ba6-ed4e-4dfe-a447-178e6b552ff4 method: GET response: proto: HTTP/2.0 @@ -2527,32 +2110,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 522 uncompressed: false - 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"}}' + body: '{"volume": {"id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "522" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:34 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dc5d695c-3a6c-4782-9630-f761f7065d0c + - 81939e7d-77e5-42c0-bfd7-d393b975c4fe status: 200 OK code: 200 - duration: 99.357915ms - - id: 51 + duration: 103.153465ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2568,7 +2143,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256/user_data method: GET response: proto: HTTP/2.0 @@ -2578,30 +2153,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:35 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 55f40fa2-77c2-468e-abaa-9d287e6eb006 + - c341f1e6-0b7d-4135-907c-cc26cc52ee45 status: 200 OK code: 200 - duration: 94.451275ms - - id: 52 + duration: 85.342711ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2617,7 +2184,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256/private_nics method: GET response: proto: HTTP/2.0 @@ -2627,34 +2194,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:35 GMT + - Wed, 29 Oct 2025 22:54:21 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d43c006e-80fa-469e-aa93-48449e8136ca + - 6baa6dda-ab01-4181-8a85-d4ca591f8b8d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 109.816478ms - - id: 53 + duration: 106.237152ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2670,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/6db3a871-55af-47b4-9ab0-8080e8328995 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 method: GET response: proto: HTTP/2.0 @@ -2678,32 +2237,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2386 + content_length: 2375 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-competent-dirac", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:79", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:15.371994+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "701", "node_id": "32"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2386" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2375" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:35 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c47d575e-8afc-4963-93be-9bba881d5989 + - ebfb1646-5093-44ed-b25d-66f8c623afeb status: 200 OK code: 200 - duration: 145.543803ms - - id: 54 + duration: 124.518365ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2719,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/6db3a871-55af-47b4-9ab0-8080e8328995 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 method: GET response: proto: HTTP/2.0 @@ -2727,32 +2278,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2386 + content_length: 2375 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-competent-dirac", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:79", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:15.371994+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "701", "node_id": "32"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2386" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2375" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:35 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b7b26d03-8151-4536-b49d-9b6ffa43d741 + - 5d1d7bef-aa39-4b2c-8ab9-0a1d79cd4930 status: 200 OK code: 200 - duration: 136.807311ms - - id: 55 + duration: 130.70294ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2770,7 +2313,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/6db3a871-55af-47b4-9ab0-8080e8328995/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256/action method: POST response: proto: HTTP/2.0 @@ -2780,31 +2323,64 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "feebc4a0-03c5-43e6-8038-945b056fabeb", "description": "server_terminate", "status": "pending", "href_from": "/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256/action", "href_result": "/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256", "started_at": "2025-10-29T22:54:22.084376+00:00", "terminated_at": null, "progress": 0, "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:35 GMT + - Wed, 29 Oct 2025 22:54:22 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9dc72a36-c674-439d-9752-2fb5042d7e9c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/feebc4a0-03c5-43e6-8038-945b056fabeb Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 42cf93fa-d884-4356-9bce-054b0877a328 + - 3b846c7b-4c13-4984-a926-d8c7ee5081a4 status: 202 Accepted code: 202 - duration: 297.047693ms + duration: 265.254717ms + - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2338 + uncompressed: false + body: '{"server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-competent-dirac", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:79", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:21.869510+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "701", "node_id": "32"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "2338" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:54:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 4f1467e5-8e81-497c-95f2-cdbd497fcc88 + status: 200 OK + code: 200 + duration: 125.908936ms - id: 56 request: proto: HTTP/1.1 @@ -2821,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/6db3a871-55af-47b4-9ab0-8080e8328995 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 method: GET response: proto: HTTP/2.0 @@ -2829,31 +2405,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2349 + content_length: 2384 uncompressed: 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: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"}}' + body: '{"server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-competent-dirac", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:79", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:21.869510+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "701", "node_id": "32"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2349" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2384" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:36 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e50a0956-7139-4220-92bc-663607a05c58 + - 3eaf3821-ede2-4453-b95f-41d0838c54da status: 200 OK code: 200 - duration: 150.23438ms + duration: 142.265984ms - id: 57 request: proto: HTTP/1.1 @@ -2870,7 +2438,48 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2384 + uncompressed: false + body: '{"server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-competent-dirac", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256", "name": "tf-srv-competent-dirac"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:03.754932+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:79", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:03.754932+00:00", "modification_date": "2025-10-29T22:54:21.869510+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "701", "node_id": "32"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "2384" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:54:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - e9d24e8d-036f-4eb9-b68d-32b480f724c7 + status: 200 OK + code: 200 + duration: 174.054047ms + - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256 method: GET response: proto: HTTP/2.0 @@ -2880,30 +2489,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6db3a871-55af-47b4-9ab0-8080e8328995","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:41 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 71524929-2605-4bf3-b0a4-4cf7771324b5 + - 69f89f81-be35-413c-95b6-f1610dd8b5ba status: 404 Not Found code: 404 - duration: 46.106902ms - - id: 58 + duration: 102.565991ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2919,7 +2520,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/194924db-da64-45eb-87db-0654dafde03c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/38298ba6-ed4e-4dfe-a447-178e6b552ff4 method: GET response: proto: HTTP/2.0 @@ -2929,30 +2530,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"194924db-da64-45eb-87db-0654dafde03c","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "38298ba6-ed4e-4dfe-a447-178e6b552ff4"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:41 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 91d3b550-ba75-4d18-b427-f4f03ca52f87 + - 525df881-f861-4300-9244-11b33a546fa8 status: 404 Not Found code: 404 - duration: 27.218512ms - - id: 59 + duration: 37.963129ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2968,7 +2561,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/194924db-da64-45eb-87db-0654dafde03c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/38298ba6-ed4e-4dfe-a447-178e6b552ff4 method: GET response: proto: HTTP/2.0 @@ -2978,30 +2571,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"194924db-da64-45eb-87db-0654dafde03c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"38298ba6-ed4e-4dfe-a447-178e6b552ff4","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:05:41 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f06eb220-af0d-4c74-aeff-6c6f2fc297dc + - 6bd1da8f-d06d-4798-affe-0ee0325ea753 status: 404 Not Found code: 404 - duration: 21.509757ms - - id: 60 + duration: 180.533586ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3017,7 +2602,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 method: GET response: proto: HTTP/2.0 @@ -3027,26 +2612,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6db3a871-55af-47b4-9ab0-8080e8328995","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "cb095c5c-fa96-4b64-b901-ba6c2dcac256"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:41 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 366f7ed2-0a0b-40c1-9c17-ba05763da002 + - 7f89fded-1e52-4bd0-a01e-86d25723c6f0 status: 404 Not Found code: 404 - duration: 57.792976ms + duration: 45.431003ms diff --git a/internal/services/instance/testdata/server-state1.cassette.yaml b/internal/services/instance/testdata/server-state1.cassette.yaml index 34c97e150..e3a664d25 100644 --- a/internal/services/instance/testdata/server-state1.cassette.yaml +++ b/internal/services/instance/testdata/server-state1.cassette.yaml @@ -13,7 +13,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -27,29 +35,21 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cee673be-909f-44cb-b45e-9159dd65fe6f + - ea56ffda-88d5-4543-91a0-0a00d16339a9 status: 200 OK code: 200 - duration: 57.493592ms + duration: 58.870531ms - id: 1 request: proto: HTTP/1.1 @@ -62,7 +62,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -74,35 +76,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:55:27 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 65e4927f-f10a-4269-b8aa-d17920a69f5a + - 80dabe63-33a2-4e48-8a1e-73cb0b8b00d3 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 64.419837ms + duration: 45.350679ms - id: 2 request: proto: HTTP/1.1 @@ -115,7 +109,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -129,45 +125,37 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:55:27 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2b2f012c-eab2-4724-81f5-ede1501c64d9 + - c647c9e6-e19b-4074-a2c5-f740841a53ac X-Total-Count: - "68" status: 200 OK code: 200 - duration: 54.391687ms + duration: 40.443241ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 300 + content_length: 297 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"]}' + body: '{"name":"tf-srv-reverent-neumann","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,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2225 + 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2225" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2216" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:29 GMT + - Wed, 29 Oct 2025 22:55:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d915f139-03c2-49af-8fe2-9eff33c9cb4f + - 2a78d08c-42e3-4fb3-9a0c-3a1d9a1fc97a status: 201 Created code: 201 - duration: 882.358089ms + duration: 1.056202247s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2225 + 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2225" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2216" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:29 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4a13f53f-8337-4de6-974d-a13dfcebbd05 + - b4a4c2b1-7883-4364-b04a-7dac10d52645 status: 200 OK code: 200 - duration: 130.391424ms + duration: 138.259234ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2225 + content_length: 2262 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2225" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2262" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:29 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bd1f50db-bd84-4412-b74b-40d56e303758 + - c792547a-1b1b-400a-8d66-582aa0350714 status: 200 OK code: 200 - duration: 140.851664ms + duration: 137.39042ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +289,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/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/action method: POST response: proto: HTTP/2.0 @@ -335,31 +299,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "c535ab2c-dab3-4e04-a5aa-27d0586befdd", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/action", "href_result": "/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "started_at": "2025-10-29T22:55:28.690203+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:30 GMT + - Wed, 29 Oct 2025 22:55:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/91662a78-9c3f-403d-8bd1-ece13fc00f31 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c535ab2c-dab3-4e04-a5aa-27d0586befdd Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45a79bb1-6d03-414d-98b5-dfee24cce9b9 + - 4630682f-13e3-49a1-9414-aa1a4c520348 status: 202 Accepted code: 202 - duration: 240.751066ms + duration: 258.461791ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -384,31 +340,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2247 + content_length: 2238 uncompressed: 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:28.491021+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2247" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2238" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:30 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9a39685a-3d54-434e-bae4-5940e71f0a3b + - 956ae990-3c62-4bd4-9ee5-82e07f10ad35 status: 200 OK code: 200 - duration: 149.091392ms + duration: 123.709896ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2350 + content_length: 2387 uncompressed: 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:28.491021+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2350" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2387" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b35faf0b-6f40-485c-855b-09273427a69c + - a7fde88a-925c-4e1a-bd3e-8f3091cb7f1d status: 200 OK code: 200 - duration: 142.707891ms + duration: 133.017824ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -482,31 +422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2381 + content_length: 2387 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:28.491021+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2387" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5da975b6-5191-41d0-937c-09096cb9add9 + - f7f6ed59-5244-435a-94e7-a65049866393 status: 200 OK code: 200 - duration: 142.799678ms + duration: 172.485253ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -531,31 +463,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2381 + content_length: 2418 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:39.390221+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2418" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 63746900-12bd-4c39-8c87-967b48f0be1d + - cdddf6cf-3d4a-432d-8348-4642ad89a5bc status: 200 OK code: 200 - duration: 118.800866ms + duration: 114.882162ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -580,31 +504,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 2418 uncompressed: false - 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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:39.390221+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2418" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a853654f-7f2d-4db6-888a-f515f30d9454 + - 8842d0cb-5230-454c-885f-6b9960560a41 status: 200 OK code: 200 - duration: 102.690032ms + duration: 127.401824ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,48 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7800a289-6bda-4eed-a037-e7ab087656ea + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 523 + uncompressed: false + body: '{"volume": {"id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "523" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:55:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - a6249420-1146-4784-a5dd-3b565a9826fb + status: 200 OK + code: 200 + duration: 93.38958ms + - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/user_data method: GET response: proto: HTTP/2.0 @@ -631,30 +588,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:40 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2a7f8779-27d7-46ac-b7a4-a4c5722d7ab7 + - 8c36bb68-a071-4d1b-a8fe-4fdc44397e1f status: 200 OK code: 200 - duration: 98.675525ms - - id: 13 + duration: 97.659985ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -670,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/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/private_nics method: GET response: proto: HTTP/2.0 @@ -680,34 +629,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:41 GMT + - Wed, 29 Oct 2025 22:55:44 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2e787d9d-b5d7-496c-9285-911042a98893 + - 1c9a5234-4eb8-4301-b437-6a6e775ec2f2 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 93.157951ms - - id: 14 + duration: 99.526444ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -723,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -731,32 +672,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2381 + 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:39.390221+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2372" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e536312-10bf-413f-88fa-d1a01afdcffa + - 52c5442a-d019-4b92-b736-22584fb657ca status: 200 OK code: 200 - duration: 155.727637ms - - id: 15 + duration: 133.900649ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -768,7 +701,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -782,30 +723,22 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9b39f7a8-d156-4cef-a5d4-b8b47c85b808 + - 1fd98bf4-f752-4fdc-8c96-0a2784305823 status: 200 OK code: 200 - duration: 54.105256ms - - id: 16 + duration: 40.218293ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -817,7 +750,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -831,30 +772,22 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 29536e83-e8ab-4a7c-aed1-bceb03923e77 + - e8fd1f22-15fe-42c1-8093-40f8d0ebb56d status: 200 OK code: 200 - duration: 50.697447ms - - id: 17 + duration: 40.897302ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -870,7 +803,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -878,32 +811,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2381 + 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:39.390221+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2372" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5430bd27-5801-4696-99a1-563262f64cb8 + - 5a85f88c-265d-427c-9347-5d0cf8aa5cea status: 200 OK code: 200 - duration: 152.332412ms - - id: 18 + duration: 133.240504ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -919,7 +844,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7800a289-6bda-4eed-a037-e7ab087656ea method: GET response: proto: HTTP/2.0 @@ -927,32 +852,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 523 uncompressed: false - 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"}}' + body: '{"volume": {"id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "523" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f0882003-e881-4ee3-b834-18d6a7c7c639 + - 7e170d3e-fed1-4190-b05d-98ada895e72c status: 200 OK code: 200 - duration: 103.994538ms - - id: 19 + duration: 93.814894ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -968,7 +885,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/user_data method: GET response: proto: HTTP/2.0 @@ -978,30 +895,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - beae9199-2494-4283-b3f0-dd598b4d7dd8 + - 73ba35a2-89ee-4cf1-a6a4-bf9a1e979001 status: 200 OK code: 200 - duration: 113.145064ms - - id: 20 + duration: 98.620812ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1017,7 +926,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/private_nics method: GET response: proto: HTTP/2.0 @@ -1027,34 +936,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:41 GMT + - Wed, 29 Oct 2025 22:55:45 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6ce33ccf-ea2f-4dff-9e0e-915e5ca3849a + - fb1ccc06-b317-4519-b6ac-b835ae4aa3c2 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 121.450103ms - - id: 21 + duration: 90.545188ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1066,7 +967,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -1080,30 +989,22 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6582cf05-ec79-4c02-ae30-965a28a4e078 + - 0923d6cd-e823-48f3-bdc8-db61d1cfcfd4 status: 200 OK code: 200 - duration: 83.849621ms - - id: 22 + duration: 45.689103ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1119,7 +1020,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -1127,32 +1028,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2381 + 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:39.390221+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2372" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:42 GMT + - Wed, 29 Oct 2025 22:55:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c037305e-08e8-4cf7-abdb-6588ff7b0af6 + - bca8a10c-c55f-477f-ac85-0c904bbe5e32 status: 200 OK code: 200 - duration: 120.951971ms - - id: 23 + duration: 138.679496ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1168,7 +1061,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7800a289-6bda-4eed-a037-e7ab087656ea method: GET response: proto: HTTP/2.0 @@ -1176,32 +1069,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 523 uncompressed: false - 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"}}' + body: '{"volume": {"id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "523" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:42 GMT + - Wed, 29 Oct 2025 22:55:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7e241199-3bfe-4794-80de-805d63e62d75 + - a116d4cb-a8aa-45c0-928e-63f14eeaf407 status: 200 OK code: 200 - duration: 100.491742ms - - id: 24 + duration: 113.22828ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1217,7 +1102,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/user_data method: GET response: proto: HTTP/2.0 @@ -1227,30 +1112,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:42 GMT + - Wed, 29 Oct 2025 22:55:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - de0dff19-2580-4af2-b599-1c5c26a843aa + - 6cd4c9db-1fff-461b-89c4-1e4a5bf48f29 status: 200 OK code: 200 - duration: 97.411226ms - - id: 25 + duration: 105.499767ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1266,7 +1143,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/private_nics method: GET response: proto: HTTP/2.0 @@ -1276,34 +1153,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:42 GMT + - Wed, 29 Oct 2025 22:55:46 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab9a131b-fb20-4e38-9db0-923978e48b5e + - 5e1a0377-e191-4b42-bb6d-cb42be356f0b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 108.960429ms - - id: 26 + duration: 102.569997ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1319,7 +1188,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -1327,32 +1196,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2381 + 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:39.390221+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2372" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:42 GMT + - Wed, 29 Oct 2025 22:55:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b9e2b809-4646-45be-b8de-fbbe20715234 + - 23a1f466-1e23-4506-877d-fdf8d45f77f5 status: 200 OK code: 200 - duration: 123.086983ms - - id: 27 + duration: 122.902672ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1368,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/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -1376,32 +1237,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2381 + content_length: 2418 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:39.390221+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2418" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0a72a531-e028-44dc-806f-26eabf1fc220 + - 1bf5b5b4-a3ab-47a8-9a32-900864661ad0 status: 200 OK code: 200 - duration: 138.583095ms - - id: 28 + duration: 139.154735ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1419,7 +1272,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/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/action method: POST response: proto: HTTP/2.0 @@ -1429,32 +1282,24 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "c4876a07-b25f-4bb2-b56d-851204908858", "description": "server_stop_in_place", "status": "pending", "href_from": "/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/action", "href_result": "/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "started_at": "2025-10-29T22:55:47.085788+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55:47 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bb189287-2e41-4773-881e-dfb88541cb1d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c4876a07-b25f-4bb2-b56d-851204908858 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9dde49ea-8e9c-4899-a542-de094064b683 + - 26c922ab-90cf-4c59-a943-b09d956985f5 status: 202 Accepted code: 202 - duration: 241.223247ms - - id: 29 + duration: 254.719093ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1470,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/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -1478,32 +1323,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2350 + content_length: 2387 uncompressed: 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:46.886075+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2350" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2387" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a3776533-9dae-4cd3-b997-c93049acfdd0 + - 3cbfe5d8-546a-405e-b154-a157eb3deabd status: 200 OK code: 200 - duration: 132.328611ms - - id: 30 + duration: 131.513956ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1519,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/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -1527,32 +1364,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2350 + content_length: 2387 uncompressed: 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:46.886075+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2350" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2387" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 989d08f6-fa86-4995-a1e2-b5aa7d8eeb6f + - 5fe999b7-9e94-4e6a-b7fe-72e17e5def9f status: 200 OK code: 200 - duration: 154.344142ms - - id: 31 + duration: 130.648689ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1568,7 +1397,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -1576,32 +1405,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2350 + content_length: 2387 uncompressed: 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:46.886075+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2350" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2387" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:53 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 89f3757d-ad1a-4691-9d9d-5e5fa95b7f54 + - 83f4bf35-7226-4668-8a9b-fbad0b4a7464 status: 200 OK code: 200 - duration: 126.854768ms - - id: 32 + duration: 121.627461ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1617,7 +1438,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -1625,32 +1446,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2350 + content_length: 2387 uncompressed: 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:46.886075+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2350" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2387" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:58 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0a1d5c46-ed33-4901-ac08-ae26b08b169d + - 77b1cd3c-0f3f-4f34-a025-0d1216f850c0 status: 200 OK code: 200 - duration: 124.64505ms - - id: 33 + duration: 124.359281ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1666,7 +1479,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -1674,32 +1487,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2350 + 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:46.886075+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2350" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2341" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:03 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c4fee0f0-8563-49cc-85ab-0198d05b885f + - cd95fad6-4472-4c94-b66e-7f4c26b37fc2 status: 200 OK code: 200 - duration: 134.494842ms - - id: 34 + duration: 130.331291ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1715,7 +1520,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -1723,32 +1528,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2350 + content_length: 2387 uncompressed: 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:46.886075+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2350" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2387" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 116ee9c4-9596-4e44-ade0-82c0b6e9ccf2 + - f5c94064-3381-49a8-aa23-86de9b6ae83b status: 200 OK code: 200 - duration: 132.299752ms - - id: 35 + duration: 131.409518ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1764,7 +1561,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -1772,32 +1569,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2350 + 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:46.886075+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2350" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2341" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:14 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c9397d1e-324e-4454-8c97-99edf074fe65 + - b8acf777-89c9-4dbd-a75f-3d6f6a4f0309 status: 200 OK code: 200 - duration: 139.932971ms - - id: 36 + duration: 142.69168ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1813,7 +1602,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -1821,32 +1610,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2386 + content_length: 2377 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:19.970314+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2386" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2377" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 62310f46-0afa-4874-85aa-ca9e392da857 + - c598444e-26e2-4eed-9674-2acc4ae1f591 status: 200 OK code: 200 - duration: 141.032517ms - - id: 37 + duration: 135.605549ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1862,7 +1643,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -1870,32 +1651,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2386 + content_length: 2377 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:19.970314+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2386" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2377" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 94a344ab-8d0a-41c2-9625-c7a7eadf4107 + - 9ba91e8f-1476-4352-a50a-121eb2500e67 status: 200 OK code: 200 - duration: 131.07159ms - - id: 38 + duration: 136.627831ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1911,7 +1684,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -1919,32 +1692,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2386 + content_length: 2377 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:19.970314+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2386" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2377" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7ff36355-7519-407b-9ff4-3afd993723be + - 7f163821-723d-47cb-8ead-cecf40295d29 status: 200 OK code: 200 - duration: 136.004569ms - - id: 39 + duration: 123.640953ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1960,7 +1725,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7800a289-6bda-4eed-a037-e7ab087656ea method: GET response: proto: HTTP/2.0 @@ -1968,32 +1733,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 523 uncompressed: false - 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"}}' + body: '{"volume": {"id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "523" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 13cf28e8-c734-4f35-b8be-c1822551bb74 + - 1afa7c49-41ec-411b-8886-c21fe1172133 status: 200 OK code: 200 - duration: 90.416619ms - - id: 40 + duration: 111.92421ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2009,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/6df292a4-9f2c-4097-9926-a5d5165a4ae5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/user_data method: GET response: proto: HTTP/2.0 @@ -2019,30 +1776,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:19 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 37b43820-398c-46ac-bda0-41b0052fca66 + - 62737a47-e3be-458d-8fcf-f2cdc10c6a36 status: 200 OK code: 200 - duration: 110.841918ms - - id: 41 + duration: 89.283728ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2058,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/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/private_nics method: GET response: proto: HTTP/2.0 @@ -2068,34 +1817,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:19 GMT + - Wed, 29 Oct 2025 22:56:23 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 68eb2eb8-573f-4b9b-b9e7-d5eccc202fc3 + - af95976a-2c00-4a95-acae-f24177517f1d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 109.455107ms - - id: 42 + duration: 115.356619ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2111,7 +1852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -2119,32 +1860,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2386 + content_length: 2377 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:19.970314+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2386" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2377" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 234d2e09-99c8-4d99-84c0-26fa696ea37e + - d8c0d50e-3aef-44a4-8738-5a8372bb6c51 status: 200 OK code: 200 - duration: 133.835493ms - - id: 43 + duration: 132.696559ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2156,7 +1889,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2170,30 +1911,22 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4ce849f6-6e0c-4909-8070-3c1dc36f68eb + - 417151d4-25d1-4041-a31c-0b7497b0e211 status: 200 OK code: 200 - duration: 57.682951ms - - id: 44 + duration: 58.201168ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2205,7 +1938,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2219,30 +1960,22 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eacc82af-9879-4530-9582-953e06659582 + - 0d354e26-d42d-4ade-b11d-c66c259647db status: 200 OK code: 200 - duration: 57.188764ms - - id: 45 + duration: 99.204021ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2258,7 +1991,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -2266,32 +1999,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2386 + content_length: 2377 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:19.970314+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2386" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2377" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1b58a13a-fd94-4de6-a1f2-615f6e47a79b + - 7f60eca7-3d92-40d9-8c0c-9c6a5a06955b status: 200 OK code: 200 - duration: 152.127963ms - - id: 46 + duration: 117.038866ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2307,7 +2032,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7800a289-6bda-4eed-a037-e7ab087656ea method: GET response: proto: HTTP/2.0 @@ -2315,32 +2040,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 523 uncompressed: false - 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"}}' + body: '{"volume": {"id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "523" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:20 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 913186e2-9121-40c9-a094-5b188f2dd2d2 + - 839fa786-82c5-4333-af38-5ba70f89082c status: 200 OK code: 200 - duration: 140.41451ms - - id: 47 + duration: 106.024748ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2356,7 +2073,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/user_data method: GET response: proto: HTTP/2.0 @@ -2366,30 +2083,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:20 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 136ae8ae-6e4a-4b25-abe9-7847e7fa1687 + - 91c68159-86b7-4aa4-9ffc-fc4269ed0080 status: 200 OK code: 200 - duration: 89.31833ms - - id: 48 + duration: 107.675705ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2405,7 +2114,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/private_nics method: GET response: proto: HTTP/2.0 @@ -2415,34 +2124,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:20 GMT + - Wed, 29 Oct 2025 22:56:24 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0dd6712f-706f-4959-8a98-db89803c1be7 + - c903cb0c-4eb3-4c58-bf10-b1bdcca90dc3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 90.652351ms - - id: 49 + duration: 110.101702ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2454,7 +2155,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2468,30 +2177,22 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:21 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fd8430ba-218f-4c65-8731-53253361fc37 + - f8aea9ae-662e-422b-986c-5c65f1c70dca status: 200 OK code: 200 - duration: 50.554274ms - - id: 50 + duration: 58.657141ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2507,7 +2208,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -2515,32 +2216,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2386 + content_length: 2423 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:19.970314+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2386" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:21 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 31db2dfd-0c11-4154-8b42-dadc4c48efee + - ed95e439-0bda-4087-8a94-92093927bf76 status: 200 OK code: 200 - duration: 131.350364ms - - id: 51 + duration: 142.815924ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2556,7 +2249,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7800a289-6bda-4eed-a037-e7ab087656ea method: GET response: proto: HTTP/2.0 @@ -2564,32 +2257,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 523 uncompressed: false - 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"}}' + body: '{"volume": {"id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "523" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:21 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 469add70-fff4-48c1-8c38-c6b3a6e89b5f + - fae1d992-075a-41fa-b4b4-bfc2579d29b9 status: 200 OK code: 200 - duration: 110.053561ms - - id: 52 + duration: 110.315341ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2605,7 +2290,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/user_data method: GET response: proto: HTTP/2.0 @@ -2615,30 +2300,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:21 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2da938ea-81ea-4d1c-8d18-442e55659e4f + - 925192cd-2f0c-4d48-9e8a-f9277b73653d status: 200 OK code: 200 - duration: 87.905201ms - - id: 53 + duration: 106.658363ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2654,7 +2331,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/private_nics method: GET response: proto: HTTP/2.0 @@ -2664,34 +2341,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:21 GMT + - Wed, 29 Oct 2025 22:56:25 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab6fde09-38d9-4f03-b78e-e671f74fa69e + - 3a4ca1e5-215d-40e2-a6e1-4c6462b2c8d0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.721447ms - - id: 54 + duration: 122.57529ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2707,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/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -2715,32 +2384,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2386 + content_length: 2377 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:19.970314+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2386" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2377" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:21 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bceb1192-5238-4da2-bb83-94b23090251d + - 32fc3a92-7e9c-4373-940c-dd0190a29684 status: 200 OK code: 200 - duration: 143.413374ms - - id: 55 + duration: 129.426573ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2756,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/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -2764,32 +2425,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2386 + content_length: 2377 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:19.970314+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2386" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2377" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:21 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b1355bb0-3b0d-4cdb-bd72-0986688760ea + - 1b78ae94-5420-46b6-a1ea-58a0bc04e550 status: 200 OK code: 200 - duration: 130.544403ms - - id: 56 + duration: 129.581171ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2807,7 +2460,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/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/action method: POST response: proto: HTTP/2.0 @@ -2817,32 +2470,24 @@ interactions: trailer: {} content_length: 360 uncompressed: false - 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"}}' + body: '{"task": {"id": "3f623079-e41b-41b2-9907-18291e2c8355", "description": "server_poweron_in_place", "status": "pending", "href_from": "/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/action", "href_result": "/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "started_at": "2025-10-29T22:56:26.236898+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "360" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:22 GMT + - Wed, 29 Oct 2025 22:56:26 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1e7d29c9-30ae-49fd-ab95-f304db3274cf + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3f623079-e41b-41b2-9907-18291e2c8355 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 04d66ee4-0bc2-4460-8c3b-17b22678ee80 + - f88076e3-5f38-4cb2-aceb-31d17921035b status: 202 Accepted code: 202 - duration: 211.160447ms - - id: 57 + duration: 293.882241ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2858,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/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -2866,32 +2511,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2350 + 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "starting", "protected": false, "state_detail": "starting in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:19.970314+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2350" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2341" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:22 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e5ccf260-f00e-4a62-be0b-5c35e3c2d60b + - 082217f7-7e29-4a2b-8e47-0df3fcf9622b status: 200 OK code: 200 - duration: 136.726286ms - - id: 58 + duration: 159.590367ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2907,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/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -2915,32 +2552,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2381 + content_length: 2418 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:27.185967+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2418" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:27 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9d213ed0-9bc3-4e7c-8cfa-556272170fe0 + - 2e36c465-d82d-4a90-8920-2b7d1c269b4c status: 200 OK code: 200 - duration: 331.63888ms - - id: 59 + duration: 126.348729ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2958,7 +2587,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/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/action method: POST response: proto: HTTP/2.0 @@ -2968,80 +2597,23 @@ interactions: trailer: {} content_length: 352 uncompressed: false - 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"}}' + body: '{"task": {"id": "1d0c33e7-3241-45b0-ba69-3524befbb584", "description": "server_poweroff", "status": "pending", "href_from": "/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/action", "href_result": "/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "started_at": "2025-10-29T22:56:31.750401+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:27 GMT + - Wed, 29 Oct 2025 22:56:31 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/93ac3106-e3cc-42ff-8998-a25e184f05c3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1d0c33e7-3241-45b0-ba69-3524befbb584 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b15a2c0f-9f55-49f7-8801-99a1d6ecd342 + - fd1ecf38-45c8-4b59-b553-a9ff375f4ad4 status: 202 Accepted code: 202 - duration: 237.68895ms - - 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/6df292a4-9f2c-4097-9926-a5d5165a4ae5 - 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: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: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:05: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: - - 5faa44f0-4ab7-4696-b0b2-953d9b3b6c50 - status: 200 OK - code: 200 - duration: 125.849255ms + duration: 218.13003ms - id: 61 request: proto: HTTP/1.1 @@ -3058,7 +2630,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -3066,31 +2638,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:31.580048+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2332" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:33 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 138cbf44-a126-4df2-8a0a-3a87dc670ac7 + - 0eda6da4-6d98-482a-bf83-5f092afaa772 status: 200 OK code: 200 - duration: 166.15439ms + duration: 140.411069ms - id: 62 request: proto: HTTP/1.1 @@ -3107,7 +2671,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -3115,31 +2679,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:31.580048+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2378" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:38 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5e6486db-999f-4e28-b2cb-b1804613a02d + - d3ae64be-d49f-4edd-9959-2839961b137e status: 200 OK code: 200 - duration: 161.315803ms + duration: 125.347869ms - id: 63 request: proto: HTTP/1.1 @@ -3156,7 +2712,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -3164,31 +2720,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:31.580048+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2378" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:43 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 70cdb257-b3bc-4e28-bebc-d08448641166 + - 6ddf9e78-c347-4f89-9619-22baa6df2731 status: 200 OK code: 200 - duration: 138.688486ms + duration: 154.169393ms - id: 64 request: proto: HTTP/1.1 @@ -3205,7 +2753,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -3213,31 +2761,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:31.580048+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2378" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:48 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fc1de45d-ad74-4b63-a102-1daeb5e0f294 + - b4e9f430-ab5d-4bd6-aef6-31cdc27a0ce1 status: 200 OK code: 200 - duration: 142.076375ms + duration: 142.251134ms - id: 65 request: proto: HTTP/1.1 @@ -3254,7 +2794,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -3262,31 +2802,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:31.580048+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2378" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:53 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 10dca859-f355-483b-a4ba-e842d932fd2c + - f31ff084-ee1b-4434-8936-f46ad2f88411 status: 200 OK code: 200 - duration: 138.23189ms + duration: 135.852719ms - id: 66 request: proto: HTTP/1.1 @@ -3303,7 +2835,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -3311,31 +2843,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:31.580048+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2378" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:58 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 856cea13-2ff5-40bb-9f88-c7f7f8ce7c3b + - fcaaf86b-cc01-48ca-8f2c-078f5be39dc7 status: 200 OK code: 200 - duration: 130.964916ms + duration: 135.479944ms - id: 67 request: proto: HTTP/1.1 @@ -3352,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/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -3360,31 +2884,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + content_length: 2418 uncompressed: 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:31.580048+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "2341" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2418" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:03 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 69277f0d-17a3-4392-b4df-f381ab58831f + - 8a969277-7bb5-4aee-a4d9-4b5f26751e4a status: 200 OK code: 200 - duration: 121.416002ms + duration: 125.968649ms - id: 68 request: proto: HTTP/1.1 @@ -3401,7 +2917,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -3409,31 +2925,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2225 + content_length: 2378 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:31.580048+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2225" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2378" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:09 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b0155f18-335a-487c-8e35-540dfb147683 + - 2318aa47-f116-48e6-b505-0b28eff01825 status: 200 OK code: 200 - duration: 157.875635ms + duration: 148.503585ms - id: 69 request: proto: HTTP/1.1 @@ -3450,7 +2958,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -3458,31 +2966,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2225 + content_length: 2332 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:31.580048+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2225" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2332" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:09 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6494bf61-82ca-446f-8114-db705acda409 + - 108c33c0-f783-4ecc-a853-e04d8d3bb65a status: 200 OK code: 200 - duration: 134.92879ms + duration: 122.634644ms - id: 70 request: proto: HTTP/1.1 @@ -3499,7 +2999,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -3507,31 +3007,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2225 + content_length: 2332 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:56:31.580048+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "43", "hypervisor_id": "202", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2225" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2332" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:09 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 560d7346-03a0-43f0-9202-44b863d178cd + - 212b32df-828f-48a0-96e8-520d47aeed81 status: 200 OK code: 200 - duration: 146.209236ms + duration: 149.012481ms - id: 71 request: proto: HTTP/1.1 @@ -3548,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/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -3556,31 +3048,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 2262 uncompressed: false - 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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:18.402774+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2262" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:09 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f36d936f-d4e6-4598-b47a-d15a954e3543 + - 38767806-a4df-4e17-96f3-b7e43fa2d6bf status: 200 OK code: 200 - duration: 121.75852ms + duration: 145.670541ms - id: 72 request: proto: HTTP/1.1 @@ -3597,7 +3081,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -3605,31 +3089,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2262 uncompressed: false - body: '{"user_data":[]}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:18.402774+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2262" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:09 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 46a5af24-d8a2-411c-89ec-dee7b3042215 + - 049fed7c-6762-4c5e-aa9c-5e2067a1b054 status: 200 OK code: 200 - duration: 100.740101ms + duration: 138.750519ms - id: 73 request: proto: HTTP/1.1 @@ -3646,7 +3122,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -3654,35 +3130,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2216 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:18.402774+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2216" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:09 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 335d3839-e52c-4510-92e3-5bb9d5646653 - X-Total-Count: - - "0" + - a36c5221-f2e4-4f8f-b8f0-fdad93e166fe status: 200 OK code: 200 - duration: 102.781711ms + duration: 139.892803ms - id: 74 request: proto: HTTP/1.1 @@ -3699,7 +3163,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7800a289-6bda-4eed-a037-e7ab087656ea method: GET response: proto: HTTP/2.0 @@ -3707,31 +3171,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2225 + 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-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"}}' + body: '{"volume": {"id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "2225" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "523" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:09 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 185b9fea-8629-429a-b5de-046300227ba2 + - 6f30108b-5746-48d8-adbf-e9945e82a7fe status: 200 OK code: 200 - duration: 126.063554ms + duration: 95.026901ms - id: 75 request: proto: HTTP/1.1 @@ -3748,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/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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/user_data method: GET response: proto: HTTP/2.0 @@ -3756,31 +3212,23 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:10 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 929d708f-7194-48cf-a560-38c953b8eef3 + - f93ebc62-6774-49ae-9769-d4ad202b1f39 status: 200 OK code: 200 - duration: 54.929808ms + duration: 98.866322ms - id: 76 request: proto: HTTP/1.1 @@ -3797,7 +3245,7 @@ interactions: headers: User-Agent: - scaleway-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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/private_nics method: GET response: proto: HTTP/2.0 @@ -3805,31 +3253,27 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:10 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4cf284aa-e678-40ce-9f47-236af27db8cc + - fc8cae58-e95c-484a-a5ff-97f651633790 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 52.446159ms + duration: 92.566541ms - id: 77 request: proto: HTTP/1.1 @@ -3846,7 +3290,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -3854,31 +3298,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2225 + 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:18.402774+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2225" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2216" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:10 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5f88a55f-f472-4a4a-a6f6-7d524bb4acb2 + - ec5eef2c-f49f-43a4-9d72-b8f136d70fca status: 200 OK code: 200 - duration: 134.319448ms + duration: 152.458577ms - id: 78 request: proto: HTTP/1.1 @@ -3891,11 +3327,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 + 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 @@ -3903,31 +3347,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 423 uncompressed: false - 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"}}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:10 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 412f2034-bd84-4aa2-af03-efed4f8df403 + - 25a5fbf9-eb20-4f25-88e5-7c645dbe7c52 status: 200 OK code: 200 - duration: 101.932989ms + duration: 54.803911ms - id: 79 request: proto: HTTP/1.1 @@ -3940,11 +3376,19 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/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 @@ -3952,31 +3396,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 423 uncompressed: false - body: '{"user_data":[]}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "423" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:10 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c4a0ba74-9687-4e35-a467-1063424fee66 + - 6abefe28-9397-4a03-b06f-b3f24f0ba7d6 status: 200 OK code: 200 - duration: 96.526059ms + duration: 43.586201ms - id: 80 request: proto: HTTP/1.1 @@ -3993,7 +3429,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -4001,35 +3437,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2216 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:18.402774+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2216" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:10 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c42c9da9-5911-4e71-a6dd-d8c65b6aa2e8 - X-Total-Count: - - "0" + - 7e50d4fd-3119-420d-bd13-1382256a17de status: 200 OK code: 200 - duration: 110.346788ms + duration: 141.029512ms - id: 81 request: proto: HTTP/1.1 @@ -4046,7 +3470,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7800a289-6bda-4eed-a037-e7ab087656ea method: GET response: proto: HTTP/2.0 @@ -4054,31 +3478,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2225 + 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-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"}}' + body: '{"volume": {"id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "2225" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "523" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:10 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c82b2f9e-fed2-4219-9019-27fd05ec0e3a + - ba976156-432a-428b-a3be-537234fd97e2 status: 200 OK code: 200 - duration: 137.469386ms + duration: 118.638773ms - id: 82 request: proto: HTTP/1.1 @@ -4095,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/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/user_data method: GET response: proto: HTTP/2.0 @@ -4103,85 +3519,610 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2225 + 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-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"}}' + body: '{"user_data": []}' headers: Content-Length: - - "2225" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:11 GMT + - Wed, 29 Oct 2025 22:57: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a91ab7ec-7c39-4d83-8c0f-78cc0d4593d6 + - f1bebb00-71ee-48ce-8316-a2086a7a1e50 status: 200 OK code: 200 - duration: 150.211604ms + duration: 99.117683ms - id: 83 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/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 20 uncompressed: false - 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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:11 GMT + - Wed, 29 Oct 2025 22:57:24 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 66aebe17-12aa-4f5c-b5c6-46acb9ba8a67 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 91.1284ms + - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2262 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:18.402774+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "2262" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 8df3e4fe-3b4c-453b-8159-821308359c8b + status: 200 OK + code: 200 + duration: 130.796802ms + - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2262 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:18.402774+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "2262" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - c3ca23b9-382d-4ad3-8d87-3eceeb7c6e46 + status: 200 OK + code: 200 + duration: 132.355819ms + - id: 86 + 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 357 + uncompressed: false + body: '{"task": {"id": "342e23c6-fac5-440c-ac96-6250c46aa0a3", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/action", "href_result": "/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "started_at": "2025-10-29T22:57:25.713957+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:25 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c0da2b09-0e22-4b92-8bc4-b8d41a102d06 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/342e23c6-fac5-440c-ac96-6250c46aa0a3 + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 84582471-fe71-486f-a945-3446231528db + status: 202 Accepted + code: 202 + duration: 247.873394ms + - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2238 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:25.517745+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "2238" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - a34ab35e-3c7e-4286-be1b-19e8425b0260 + status: 200 OK + code: 200 + duration: 159.807663ms + - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2341 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:25.517745+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "2341" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 65de618a-d979-43f9-8035-2dd515bd704c + status: 200 OK + code: 200 + duration: 125.002526ms + - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2387 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:25.517745+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "2387" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 06285ec2-eb39-4b86-84de-10eeb6dcba01 + status: 200 OK + code: 200 + duration: 125.895929ms + - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2458 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:39.754607+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' + headers: + Content-Length: + - "2458" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 7cdaa2aa-9329-4bd8-b39b-459aac19ded8 + status: 200 OK + code: 200 + duration: 141.585586ms + - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task": {"id": "27e27707-4879-48e7-883f-2482b1f5b03e", "description": "server_terminate", "status": "pending", "href_from": "/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/action", "href_result": "/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "started_at": "2025-10-29T22:57:41.578751+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:41 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/27e27707-4879-48e7-883f-2482b1f5b03e + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 98c6fe4a-3155-438e-8e5b-5417a661eccb + status: 202 Accepted + code: 202 + duration: 304.586786ms + - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2335 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "2335" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - a43d6ff0-687c-42fb-863f-b274b83affad + status: 200 OK + code: 200 + duration: 139.980434ms + - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2335 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "2335" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 1c671e70-dbca-4ce1-a0e4-41072078c279 + status: 200 OK + code: 200 + duration: 131.857412ms + - 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/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2421 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' + headers: + Content-Length: + - "2421" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 352dbd91-0d00-4337-9235-3a94391d4120 + status: 200 OK + code: 200 + duration: 131.731558ms + - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2381 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "2381" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:57:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - f9e57bf1-d2fb-47b4-8ab1-45fd2d7cfa4a + status: 200 OK + code: 200 + duration: 127.479076ms + - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2335 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "2335" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ff20ac5d-d11d-4d72-a54b-a0b3aa43903b - status: 202 Accepted - code: 202 - duration: 253.806781ms - - id: 84 + - 1a4e07b3-0ad7-405e-b2d6-62d4834394af + status: 200 OK + code: 200 + duration: 136.550504ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -4197,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/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -4205,32 +4146,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2247 + content_length: 2335 uncompressed: 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2247" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2335" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:11 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3d40e1e5-ef55-4075-b122-fe069321e613 + - d29891b2-ed94-4037-b44a-c3efcbc36499 status: 200 OK code: 200 - duration: 123.877886ms - - id: 85 + duration: 147.844018ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4246,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/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -4254,32 +4187,65 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2350 + content_length: 2335 uncompressed: 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2350" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2335" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:16 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 07354113-d612-4987-b73b-f5311d6f0173 + - d2686cee-baf8-4739-8fae-1bb2b1280d8c status: 200 OK code: 200 - duration: 167.577568ms - - id: 86 + duration: 148.279284ms + - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2335 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "2335" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:58:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 4a0761f2-7b5e-40e4-92e8-f86e9a37c7ef + status: 200 OK + code: 200 + duration: 129.803728ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -4295,7 +4261,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -4305,83 +4271,104 @@ interactions: trailer: {} content_length: 2381 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - "2381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:21 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - de0e4d53-3d35-4031-9aa3-13c5363d207e + - 2b03add4-ded7-426c-8eb4-8595faa62933 status: 200 OK code: 200 - duration: 129.923423ms - - id: 87 + duration: 139.035748ms + - id: 101 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2381 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "2381" Content-Type: - application/json + Date: + - Wed, 29 Oct 2025 22:58:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 8a5c4283-03a3-451e-bb99-aa4fdd100f38 + status: 200 OK + code: 200 + duration: 126.684878ms + - 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/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 2381 uncompressed: false - 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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "353" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2381" Content-Type: - application/json Date: - - 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 + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6d1649de-3e67-4cd8-87ad-a10b046ff393 - status: 202 Accepted - code: 202 - duration: 294.744348ms - - id: 88 + - 443bda08-595d-4978-9e79-c233c6be46de + status: 200 OK + code: 200 + duration: 138.601868ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -4397,7 +4384,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -4405,32 +4392,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2344 + 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-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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2381" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:22 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8528d58f-bd03-4b0a-b175-47b806e3b4e1 + - 06133ce4-84a4-455f-92cd-190fb25241ce status: 200 OK code: 200 - duration: 162.367854ms - - id: 89 + duration: 126.913257ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -4446,7 +4425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -4454,32 +4433,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2344 + content_length: 2421 uncompressed: 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' headers: Content-Length: - - "2344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2421" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:27 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e3aa3701-a91e-44f1-a28c-113566d5ac57 + - 91d9929d-0676-4075-9714-b43b812d2e33 status: 200 OK code: 200 - duration: 127.740504ms - - id: 90 + duration: 137.809178ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -4495,7 +4466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -4503,32 +4474,188 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2344 + content_length: 2335 uncompressed: 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: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"}}' + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2335" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:32 GMT + - Wed, 29 Oct 2025 22:58: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 99905808-9bf1-465e-8e82-6f411e110c58 + - 73c23bc2-e4c1-44b6-bf12-65c63482e25f status: 200 OK code: 200 - duration: 132.003944ms - - id: 91 + duration: 134.146769ms + - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2421 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' + headers: + Content-Length: + - "2421" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:58:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 3077e89e-45a9-43cd-bb72-0b71e3fcac60 + status: 200 OK + code: 200 + duration: 131.705182ms + - 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/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2335 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "2335" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:58:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - a43034d6-2e87-44eb-af55-d73ffebbe0e1 + status: 200 OK + code: 200 + duration: 143.922727ms + - 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/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2381 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "2381" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:59:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - b159d4a1-343a-44f8-868e-c7c9c01e26af + status: 200 OK + code: 200 + duration: 144.369885ms + - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2335 + uncompressed: false + body: '{"server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-reverent-neumann", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "7800a289-6bda-4eed-a037-e7ab087656ea", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca", "name": "tf-srv-reverent-neumann"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:55:27.966172+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:27.966172+00:00", "modification_date": "2025-10-29T22:57:41.336200+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "602", "node_id": "15"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "2335" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:59:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 5a664ef1-edc6-402d-9310-5ce75568c278 + status: 200 OK + code: 200 + duration: 157.03144ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -4544,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/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -4554,30 +4681,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:37 GMT + - Wed, 29 Oct 2025 22:59: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ca450922-8e15-4314-b7ae-73fce0e4583f + - 1659ee30-efac-4f67-a5d3-f169c4039773 status: 404 Not Found code: 404 - duration: 43.728989ms - - id: 92 + duration: 58.227156ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -4593,7 +4712,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7800a289-6bda-4eed-a037-e7ab087656ea method: GET response: proto: HTTP/2.0 @@ -4603,30 +4722,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "7800a289-6bda-4eed-a037-e7ab087656ea"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:37 GMT + - Wed, 29 Oct 2025 22:59: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0244ee41-2d39-4507-96ee-dedb1b4b58a1 + - 5d65e712-5228-4e40-8682-e18dff831967 status: 404 Not Found code: 404 - duration: 25.606728ms - - id: 93 + duration: 37.081041ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -4642,7 +4753,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7800a289-6bda-4eed-a037-e7ab087656ea method: GET response: proto: HTTP/2.0 @@ -4652,30 +4763,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"7800a289-6bda-4eed-a037-e7ab087656ea","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:06:37 GMT + - Wed, 29 Oct 2025 22:59: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d5fba13c-dde2-47f7-9c12-13588ecabb3c + - 60cbda42-d3b3-421a-9fe1-773b97fb4e82 status: 404 Not Found code: 404 - duration: 18.703901ms - - id: 94 + duration: 22.4377ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -4691,7 +4794,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca method: GET response: proto: HTTP/2.0 @@ -4701,26 +4804,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:06:37 GMT + - Wed, 29 Oct 2025 22:59: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 11e61dbc-6ee1-4d02-8693-91725db51c09 + - 672643b2-e689-4bf3-a09f-2bb52febd00b status: 404 Not Found code: 404 - duration: 55.815389ms + duration: 55.821465ms diff --git a/internal/services/instance/testdata/server-state2.cassette.yaml b/internal/services/instance/testdata/server-state2.cassette.yaml index 735249b70..ad5224634 100644 --- a/internal/services/instance/testdata/server-state2.cassette.yaml +++ b/internal/services/instance/testdata/server-state2.cassette.yaml @@ -13,7 +13,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -27,29 +35,21 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:34 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4643a6a6-61d3-49a2-a296-f21605963ad8 + - e2951d04-1903-4322-97c8-574771f46cdd status: 200 OK code: 200 - duration: 39.70659ms + duration: 48.367579ms - id: 1 request: proto: HTTP/1.1 @@ -62,7 +62,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -74,35 +76,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:34 GMT + - Wed, 29 Oct 2025 22:55:15 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b2534d02-8d6c-44e8-a5e0-108aa091ca93 + - 58a484b9-9c1f-47bc-a209-ff4c0c74592c X-Total-Count: - "68" status: 200 OK code: 200 - duration: 36.401994ms + duration: 42.467546ms - id: 2 request: proto: HTTP/1.1 @@ -115,7 +109,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -129,45 +125,37 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:34 GMT + - Wed, 29 Oct 2025 22:55:15 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 96444c8c-5283-4bff-b553-c2b63d8fc48d + - 789588cf-089f-4c4e-a4a9-2db88cf8a897 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 40.872435ms + duration: 45.998568ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 296 + content_length: 298 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"]}' + body: '{"name":"tf-srv-upbeat-archimedes","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,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2213 + 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-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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2213" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2219" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:35 GMT + - Wed, 29 Oct 2025 22:55:16 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6862a597-a2d8-43be-b705-3de4bb208954 + - 19792da4-7c91-45f5-8e74-66514d3ea605 status: 201 Created code: 201 - duration: 858.710527ms + duration: 746.01857ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2213 + content_length: 2265 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.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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2213" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2265" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 77c55d9c-d0d5-4f69-be84-08d83f3d6fa0 + - 0bc16734-4426-40b7-ba51-c50e538a327a status: 200 OK code: 200 - duration: 154.853631ms + duration: 154.930325ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2213 + content_length: 2265 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.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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2213" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2265" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e9e8c247-d5c2-412b-a2d9-c3e9ba2d2fb5 + - 098dcd36-2289-4e2f-ab17-62141c0f2cc8 status: 200 OK code: 200 - duration: 128.946712ms + duration: 129.962905ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -331,31 +295,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2213 + 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-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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2213" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2219" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bb9145d8-3a18-44eb-9fe1-b6c1c24f7f6a + - 996ccbe8-f4b7-469d-8ea2-852bdddc6687 status: 200 OK code: 200 - duration: 134.706279ms + duration: 130.646885ms - id: 7 request: proto: HTTP/1.1 @@ -372,7 +328,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4d5e6c25-d736-4260-847b-2a942ea20311 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a00d2687-22aa-47a8-8a0b-b5d59892f559 method: GET response: proto: HTTP/2.0 @@ -380,31 +336,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 524 uncompressed: false - 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"}}' + body: '{"volume": {"id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "522" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "524" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 70cf0b85-b66b-47de-9c0d-9aab6b1ab085 + - a0237ec0-142b-46f0-81f4-bf7016d9b7e2 status: 200 OK code: 200 - duration: 138.07763ms + duration: 118.510239ms - id: 8 request: proto: HTTP/1.1 @@ -421,7 +369,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/user_data method: GET response: proto: HTTP/2.0 @@ -431,29 +379,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eaded50d-ef24-4479-a8fb-b19838d49d28 + - ce15d64a-7f83-4593-847b-9f3b52faf6c0 status: 200 OK code: 200 - duration: 101.345827ms + duration: 109.908072ms - id: 9 request: proto: HTTP/1.1 @@ -470,7 +410,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/private_nics method: GET response: proto: HTTP/2.0 @@ -480,33 +420,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:35 GMT + - Wed, 29 Oct 2025 22:55:16 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3345b293-b86a-46b6-812c-703863f9375e + - 24e1fb08-d22e-45d5-8eae-cbb098a7104c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 98.946268ms + duration: 89.150695ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -531,31 +463,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2213 + content_length: 2265 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.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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2213" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2265" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:36 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 713cf825-eaa8-47fa-a71f-8702f6d669cc + - 031d9a41-15fc-4218-8a68-d2a0c35b2df4 status: 200 OK code: 200 - duration: 147.307375ms + duration: 157.299085ms - id: 11 request: proto: HTTP/1.1 @@ -568,7 +492,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -582,29 +514,21 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:36 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 50d433db-c99c-470f-879c-ef99930c609e + - 22d74902-b205-4647-b54b-2f0a01b029ca status: 200 OK code: 200 - duration: 37.849168ms + duration: 48.647964ms - id: 12 request: proto: HTTP/1.1 @@ -617,7 +541,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -631,29 +563,21 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:36 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2922a80c-729f-4d8a-beb2-4354ad9a2a97 + - 980cb9f7-9d21-49d0-b75a-80a1741c09ce status: 200 OK code: 200 - duration: 51.897895ms + duration: 51.14857ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +594,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -678,31 +602,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2213 + content_length: 2265 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.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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2213" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2265" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:36 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5a98b3ce-0e93-4a59-ab1a-25d73b7d1df2 + - b3fce6b9-7443-4771-bc3d-6ae1ac670ee5 status: 200 OK code: 200 - duration: 143.134391ms + duration: 126.24342ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +635,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4d5e6c25-d736-4260-847b-2a942ea20311 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a00d2687-22aa-47a8-8a0b-b5d59892f559 method: GET response: proto: HTTP/2.0 @@ -727,31 +643,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 524 uncompressed: false - 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"}}' + body: '{"volume": {"id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "522" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "524" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:36 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 98bf1fe6-22af-4957-b1f5-03c2f941c7ed + - bed67da6-15b5-4943-a859-6a7a05f1e309 status: 200 OK code: 200 - duration: 85.001877ms + duration: 103.528963ms - id: 15 request: proto: HTTP/1.1 @@ -768,7 +676,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/user_data method: GET response: proto: HTTP/2.0 @@ -778,29 +686,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:36 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 569150cd-aa09-446c-8776-cfe13df46788 + - 046b44aa-ccea-4cd2-88b1-2984b8a79519 status: 200 OK code: 200 - duration: 111.26779ms + duration: 110.472928ms - id: 16 request: proto: HTTP/1.1 @@ -817,7 +717,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/private_nics method: GET response: proto: HTTP/2.0 @@ -827,33 +727,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:36 GMT + - Wed, 29 Oct 2025 22:55:17 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae788139-62f4-41b7-917c-fbdbed3ec8fd + - b209ed15-6d7e-4254-99f5-105fef2aeecf X-Total-Count: - "0" status: 200 OK code: 200 - duration: 98.337789ms + duration: 95.718477ms - id: 17 request: proto: HTTP/1.1 @@ -866,7 +758,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -880,29 +780,21 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:37 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9185c94f-dbcf-4c3e-8e72-a6ad55f495dc + - c7c9e56f-d2dd-42b0-ab21-c1e0aec54013 status: 200 OK code: 200 - duration: 94.791842ms + duration: 54.376085ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +811,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -927,31 +819,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2213 + content_length: 2265 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.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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2213" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2265" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:37 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ad9cf7e3-8c7d-40f2-887c-5f81e1f2a5f2 + - 16fbcc3a-8fcf-4806-9878-5aa37447b942 status: 200 OK code: 200 - duration: 138.081579ms + duration: 156.726825ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4d5e6c25-d736-4260-847b-2a942ea20311 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a00d2687-22aa-47a8-8a0b-b5d59892f559 method: GET response: proto: HTTP/2.0 @@ -976,31 +860,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 524 uncompressed: false - 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"}}' + body: '{"volume": {"id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "522" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "524" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:37 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1fde2bc6-5d05-471b-a15d-6664c178e9fc + - 328a0fed-9016-4604-8b7a-2625093437b0 status: 200 OK code: 200 - duration: 104.544897ms + duration: 108.310916ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +893,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/user_data method: GET response: proto: HTTP/2.0 @@ -1027,29 +903,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:37 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0e89a937-f516-4316-85ad-a91bfb4dc704 + - 41f23f26-bf07-481d-ab5e-43f9ca3a40f4 status: 200 OK code: 200 - duration: 122.857629ms + duration: 107.769724ms - id: 21 request: proto: HTTP/1.1 @@ -1066,7 +934,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/private_nics method: GET response: proto: HTTP/2.0 @@ -1076,33 +944,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:37 GMT + - Wed, 29 Oct 2025 22:55:18 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9a7117c4-b839-49da-b748-50081dc9779c + - e737b578-72ff-478c-a75f-d9516e6ae29d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 105.402113ms + duration: 87.839253ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1127,31 +987,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2213 + 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-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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2213" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2219" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:37 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bb36967b-9e69-4feb-8a13-286d5a8b3d43 + - 58e9ad64-3036-4d83-ac2c-70e08cd3d135 status: 200 OK code: 200 - duration: 117.805136ms + duration: 135.552459ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1020,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1176,31 +1028,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2213 + content_length: 2265 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.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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2213" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2265" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:38 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b8ec9222-4e00-4ffa-a4e0-331f19f20dfe + - 87204ee2-8523-4e0a-9227-774df705489a status: 200 OK code: 200 - duration: 166.195126ms + duration: 117.013881ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1063,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/8f209cbe-9353-49bb-8e21-1729dbc80bfe/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/action method: POST response: proto: HTTP/2.0 @@ -1229,31 +1073,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "a1f0d04d-40a8-44fe-a4d9-9bf81406cd9e", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/action", "href_result": "/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e", "started_at": "2025-10-29T22:55:19.116838+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:38 GMT + - Wed, 29 Oct 2025 22:55:19 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5a8a8f23-dfb5-4596-a223-3edd322d99ac + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a1f0d04d-40a8-44fe-a4d9-9bf81406cd9e Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b7ecff6b-618f-433b-ba66-e1d11e800a58 + - 3b539771-6a66-4427-a57b-10fbea801c7c status: 202 Accepted code: 202 - duration: 277.886572ms + duration: 257.861682ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1106,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1278,31 +1114,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2235 + content_length: 2287 uncompressed: 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.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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:18.914120+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2235" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2287" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:38 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 43e4d486-5324-4a77-8bdc-c09589379b63 + - a36757b5-65bb-44aa-b1b6-d6b2ac7e2f29 status: 200 OK code: 200 - duration: 128.932659ms + duration: 128.512895ms - id: 26 request: proto: HTTP/1.1 @@ -1319,7 +1147,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1327,31 +1155,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2339 + 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-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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:18.914120+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2339" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2345" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3b2895bc-2bc0-4b4b-b2d9-af04a9527f8c + - cf1f6072-095f-4527-b95b-235afedce1d7 status: 200 OK code: 200 - duration: 151.411387ms + duration: 142.662457ms - id: 27 request: proto: HTTP/1.1 @@ -1368,7 +1188,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1376,31 +1196,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2339 + content_length: 2391 uncompressed: 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.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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:18.914120+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2339" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2391" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:48 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 333f91bd-8b57-41e9-af67-d28fe028a93b + - 786edfd2-c303-4c13-9827-c5db5eafaeb3 status: 200 OK code: 200 - duration: 124.786605ms + duration: 136.345726ms - id: 28 request: proto: HTTP/1.1 @@ -1417,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/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1425,31 +1237,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2370 + 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-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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:31.183160+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2376" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:53 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ec146ddc-8e35-4d90-9210-070a3fd33320 + - 715975d3-9bbd-4931-abcb-22d3269010b1 status: 200 OK code: 200 - duration: 129.242244ms + duration: 129.70045ms - id: 29 request: proto: HTTP/1.1 @@ -1468,7 +1272,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/8f209cbe-9353-49bb-8e21-1729dbc80bfe/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/action method: POST response: proto: HTTP/2.0 @@ -1478,31 +1282,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "ad8b9c68-b7a2-4ae7-aaaf-b21720a02e43", "description": "server_stop_in_place", "status": "pending", "href_from": "/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/action", "href_result": "/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e", "started_at": "2025-10-29T22:55:34.903541+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:54 GMT + - Wed, 29 Oct 2025 22:55:34 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b519b699-7a61-4011-b26e-e2d1f7f30b28 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ad8b9c68-b7a2-4ae7-aaaf-b21720a02e43 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 88b34d0b-2ce8-45ed-8b5b-216e789c1f2a + - 96c7b921-3884-4214-a1a4-a6e0988ad8fe status: 202 Accepted code: 202 - duration: 239.230971ms + duration: 242.961328ms - id: 30 request: proto: HTTP/1.1 @@ -1519,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/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1527,31 +1323,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2339 + content_length: 2391 uncompressed: 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.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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:34.710542+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2339" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2391" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:54 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6e0e47aa-4879-4052-9085-dec78038a1d2 + - b8c0bb9d-36e0-4750-bf16-1c4fe1b2d9ac status: 200 OK code: 200 - duration: 117.489129ms + duration: 133.327123ms - id: 31 request: proto: HTTP/1.1 @@ -1568,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/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1576,31 +1364,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2339 + content_length: 2391 uncompressed: 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.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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:34.710542+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2339" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2391" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:59 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5b1586b2-0734-4788-a2af-41210fca9353 + - cf317295-4801-4907-aa98-2f995f0eb011 status: 200 OK code: 200 - duration: 122.040838ms + duration: 138.957493ms - id: 32 request: proto: HTTP/1.1 @@ -1617,7 +1397,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1625,31 +1405,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2339 + 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-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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:34.710542+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2339" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2345" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:04 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 20a63e5f-cd0d-45c5-a6dc-227903992b18 + - 57d3854e-1e9b-4f91-b800-68665d2d1e8c status: 200 OK code: 200 - duration: 160.256737ms + duration: 148.434789ms - id: 33 request: proto: HTTP/1.1 @@ -1666,7 +1438,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1674,31 +1446,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2339 + 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-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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:34.710542+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2339" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2345" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3196b7ec-e1ad-43f0-9bba-7dba011c5ef7 + - cb666f8e-661e-4e4d-af84-0ec2315200c7 status: 200 OK code: 200 - duration: 125.685732ms + duration: 135.849675ms - id: 34 request: proto: HTTP/1.1 @@ -1715,7 +1479,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1723,31 +1487,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2339 + content_length: 2391 uncompressed: 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.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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:34.710542+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2339" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2391" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 00a85064-38a7-4cc8-ac0e-a97e05999f1a + - 345b3a43-6fb3-48db-b9f8-4cfdee4d4a1f status: 200 OK code: 200 - duration: 148.009845ms + duration: 138.643893ms - id: 35 request: proto: HTTP/1.1 @@ -1764,7 +1520,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1772,31 +1528,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2339 + content_length: 2391 uncompressed: 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.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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:34.710542+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2339" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2391" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:19 GMT + - Wed, 29 Oct 2025 22:56:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0c92b94a-9926-4f63-a9b5-e136c45fb2dc + - 96aa8da2-c201-4591-aee1-e9725cfb3f17 status: 200 OK code: 200 - duration: 143.214038ms + duration: 137.035266ms - id: 36 request: proto: HTTP/1.1 @@ -1813,7 +1561,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1821,31 +1569,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2339 + content_length: 2391 uncompressed: 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.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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:34.710542+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2339" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2391" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:25 GMT + - Wed, 29 Oct 2025 22:56:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ca3929f1-564a-410a-8a4b-c9a5742d9d81 + - 8bec43f4-844f-43f2-9577-cdc96350fe5b status: 200 OK code: 200 - duration: 147.863332ms + duration: 119.211473ms - id: 37 request: proto: HTTP/1.1 @@ -1862,7 +1602,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1870,31 +1610,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2375 + 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-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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:34.710542+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2375" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2345" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:30 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ef8548c1-106b-41a1-92ff-10c6ad428083 + - 3ed5760b-4b10-4baf-b46f-4c8c957da1ac status: 200 OK code: 200 - duration: 156.266615ms + duration: 1.277147663s - id: 38 request: proto: HTTP/1.1 @@ -1911,7 +1643,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1919,31 +1651,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2375 + 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-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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:34.710542+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2375" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2345" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:30 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eeee5280-47ff-491f-b143-d210692cbfab + - 229e9631-1270-4897-8f71-75b0c5af3f6d status: 200 OK code: 200 - duration: 140.29749ms + duration: 156.908107ms - id: 39 request: proto: HTTP/1.1 @@ -1960,7 +1684,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -1968,31 +1692,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2375 + 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-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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:56:18.167393+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2375" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2381" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:30 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8cea0133-4a99-4af2-9470-c8f4513d0995 + - f7f9e142-b3f6-4fd6-b725-3c2a6a27daa3 status: 200 OK code: 200 - duration: 164.022269ms + duration: 149.878642ms - id: 40 request: proto: HTTP/1.1 @@ -2009,7 +1725,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4d5e6c25-d736-4260-847b-2a942ea20311 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -2017,31 +1733,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 2381 uncompressed: false - 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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:56:18.167393+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "522" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2381" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:30 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ad23584b-aa53-4d4a-9022-43360c56bca7 + - b71a52bb-e783-4951-87c1-b6c764b7f047 status: 200 OK code: 200 - duration: 131.470218ms + duration: 133.737875ms - id: 41 request: proto: HTTP/1.1 @@ -2058,7 +1766,89 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2427 + uncompressed: false + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:56:18.167393+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "2427" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 8d473e8b-eb01-42bd-b8b6-4716e55288c2 + status: 200 OK + code: 200 + duration: 162.870469ms + - 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/a00d2687-22aa-47a8-8a0b-b5d59892f559 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 524 + uncompressed: false + body: '{"volume": {"id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "524" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:56:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - efde69f9-7c18-4585-8c33-0799eb7363de + status: 200 OK + code: 200 + duration: 101.883761ms + - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e/user_data method: GET response: proto: HTTP/2.0 @@ -2068,30 +1858,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:30 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e892186f-bc11-4988-b85a-21b02a616c21 + - 4e7564fe-c052-4d08-9983-8b39b3b60c38 status: 200 OK code: 200 - duration: 93.364203ms - - id: 42 + duration: 102.061245ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2107,7 +1889,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/private_nics method: GET response: proto: HTTP/2.0 @@ -2117,34 +1899,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:30 GMT + - Wed, 29 Oct 2025 22:56:23 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2db9a804-d41c-4f4e-a6de-3598f03b757d + - d8ccc0aa-9584-441f-9fdc-70b7574f038a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 124.57078ms - - id: 43 + duration: 134.87423ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2160,7 +1934,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -2168,32 +1942,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2375 + 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-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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:56:18.167393+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2375" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2381" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:31 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e8320611-ae19-446a-a8da-dbf7820aa24f + - 0c7315c7-aeae-4d51-834c-00c07856b392 status: 200 OK code: 200 - duration: 118.482414ms - - id: 44 + duration: 134.91639ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2205,7 +1971,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2219,30 +1993,22 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:31 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c6148eca-bd4d-461f-b7bf-21fc5d9796a7 + - 87faf1aa-d35d-4ace-b13f-0284db4e69e4 status: 200 OK code: 200 - duration: 55.763666ms - - id: 45 + duration: 49.013014ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2254,7 +2020,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -2268,30 +2042,22 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:31 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fa2b18d7-fd2d-4595-991b-80c05a53ebcf + - 4c795296-c84c-444b-92fc-87a2b6343117 status: 200 OK code: 200 - duration: 54.09625ms - - id: 46 + duration: 52.334284ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2307,7 +2073,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -2315,32 +2081,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2375 + content_length: 2427 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-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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:56:18.167393+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2375" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2427" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:31 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d5f92ed4-5202-40ac-8c23-619d0b76e6d2 + - 2fc83d23-73b4-4d6c-a66f-703bbcb6d567 status: 200 OK code: 200 - duration: 123.510062ms - - id: 47 + duration: 134.277567ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2356,7 +2114,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4d5e6c25-d736-4260-847b-2a942ea20311 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a00d2687-22aa-47a8-8a0b-b5d59892f559 method: GET response: proto: HTTP/2.0 @@ -2364,32 +2122,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 524 uncompressed: false - 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"}}' + body: '{"volume": {"id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "522" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "524" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:31 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - eafc2141-6c51-44bb-9c40-4da9babae605 + - e46ce9c5-6dcc-4505-b959-938636bffbe0 status: 200 OK code: 200 - duration: 99.601861ms - - id: 48 + duration: 92.021849ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2405,7 +2155,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/user_data method: GET response: proto: HTTP/2.0 @@ -2415,30 +2165,22 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:31 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e78daf9-c942-4fc9-ad47-3f97ac49b994 + - 86aa129a-b4e6-4f16-8ed9-b7a54382c45b status: 200 OK code: 200 - duration: 106.807512ms - - id: 49 + duration: 104.236693ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2454,7 +2196,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/private_nics method: GET response: proto: HTTP/2.0 @@ -2464,34 +2206,26 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:31 GMT + - Wed, 29 Oct 2025 22:56:24 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa588ad9-00d7-4e96-8247-afd82ac7ce10 + - c6cf5a04-e99b-4ce6-a2ce-dc8f38b2c4bc X-Total-Count: - "0" status: 200 OK code: 200 - duration: 98.404265ms - - id: 50 + duration: 94.154608ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2507,7 +2241,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -2515,32 +2249,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2375 + content_length: 2427 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-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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:56:18.167393+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2375" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2427" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:32 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1c2c821c-2ac6-42ca-b8f5-a0177ccb4978 + - 48d2351b-53d3-40de-b0ad-108029dcec19 status: 200 OK code: 200 - duration: 134.439558ms - - id: 51 + duration: 134.491255ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2556,7 +2282,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -2564,32 +2290,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2375 + 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-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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:56:18.167393+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2375" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2381" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:32 GMT + - Wed, 29 Oct 2025 22: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c78fd3c6-d83a-48f6-882c-bac5d7df9516 + - 8d955274-e979-4e50-b767-be2ca8eb59e9 status: 200 OK code: 200 - duration: 136.348137ms - - id: 52 + duration: 147.71702ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2607,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/8f209cbe-9353-49bb-8e21-1729dbc80bfe/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/action method: POST response: proto: HTTP/2.0 @@ -2617,32 +2335,24 @@ interactions: trailer: {} content_length: 360 uncompressed: false - 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"}}' + body: '{"task": {"id": "ea02d8ca-6b5c-472a-9ac5-71095c73ce8e", "description": "server_poweron_in_place", "status": "pending", "href_from": "/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/action", "href_result": "/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e", "started_at": "2025-10-29T22:56:24.868926+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "360" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:32 GMT + - Wed, 29 Oct 2025 22:56:24 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4a111633-7ee3-4a26-a86a-cb3499670271 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ea02d8ca-6b5c-472a-9ac5-71095c73ce8e Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9edd0aa6-2b38-4c3f-a628-208431014339 + - 39152baa-136b-4a55-8a49-e331b9a328c0 status: 202 Accepted code: 202 - duration: 251.762529ms - - id: 53 + duration: 199.853996ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2658,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/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -2666,32 +2376,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2339 + content_length: 2391 uncompressed: 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.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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "starting", "protected": false, "state_detail": "starting in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:56:18.167393+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2339" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2391" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:32 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e2d80e8b-7e68-412b-bb74-d2afb7794613 + - ee80a3c8-66d5-4691-b50e-308d56a59a63 status: 200 OK code: 200 - duration: 140.612112ms - - id: 54 + duration: 154.734314ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2707,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/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -2715,32 +2417,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2370 + content_length: 2422 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:56:26.186683+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2422" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:37 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fb631d8a-da1e-481b-8248-4dc40cad8db9 + - 33cfcd96-13b0-4440-9c38-78681366e3b5 status: 200 OK code: 200 - duration: 140.177232ms - - id: 55 + duration: 138.767925ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2758,7 +2452,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/8f209cbe-9353-49bb-8e21-1729dbc80bfe/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/action method: POST response: proto: HTTP/2.0 @@ -2768,32 +2462,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "087b04e0-7029-414d-b884-3e487bea661d", "description": "server_terminate", "status": "pending", "href_from": "/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/action", "href_result": "/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e", "started_at": "2025-10-29T22:56:30.482111+00:00", "terminated_at": null, "progress": 0, "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 + - Wed, 29 Oct 2025 22:56:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e32fbf0a-4635-461a-9552-8b3b417e8322 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/087b04e0-7029-414d-b884-3e487bea661d Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a298128c-e0cb-4d5c-89bb-297920dd2928 + - 82a2e834-948e-4b97-b6bf-1d9c3823ab97 status: 202 Accepted code: 202 - duration: 287.42836ms - - id: 56 + duration: 322.905342ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2809,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/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -2817,32 +2503,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2333 + content_length: 2385 uncompressed: 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.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"}}' + body: '{"server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-upbeat-archimedes", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a00d2687-22aa-47a8-8a0b-b5d59892f559", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e", "name": "tf-srv-upbeat-archimedes"}, "size": 10000000000, "state": "available", "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:55:15.798899+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "state"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:b5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:15.798899+00:00", "modification_date": "2025-10-29T22:56:30.213568+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "1902", "node_id": "21"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2333" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2385" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:38 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7cd9acab-f179-4be2-b5fb-aea685bf8738 + - 17a3fb82-fa94-40ec-a60b-506214f77e7f status: 200 OK code: 200 - duration: 145.788906ms - - id: 57 + duration: 144.968552ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2858,7 +2536,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -2868,30 +2546,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:43 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e7811007-9865-4c99-8a96-c2a34a41d297 + - 09c426c4-9009-4ae1-b9ba-b48b29969b83 status: 404 Not Found code: 404 - duration: 49.849079ms - - id: 58 + duration: 44.521114ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2907,7 +2577,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4d5e6c25-d736-4260-847b-2a942ea20311 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a00d2687-22aa-47a8-8a0b-b5d59892f559 method: GET response: proto: HTTP/2.0 @@ -2917,30 +2587,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4d5e6c25-d736-4260-847b-2a942ea20311","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a00d2687-22aa-47a8-8a0b-b5d59892f559"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:43 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f44d5d81-5ebd-4024-b88a-70915fee0884 + - a6ac0bb5-7929-411a-bb21-3d6cb228025a status: 404 Not Found code: 404 - duration: 25.346381ms - - id: 59 + duration: 49.738653ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2956,7 +2618,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4d5e6c25-d736-4260-847b-2a942ea20311 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a00d2687-22aa-47a8-8a0b-b5d59892f559 method: GET response: proto: HTTP/2.0 @@ -2966,30 +2628,22 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"4d5e6c25-d736-4260-847b-2a942ea20311","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"a00d2687-22aa-47a8-8a0b-b5d59892f559","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:05:43 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45c9edf1-a2ca-4700-8ae7-9873b4e56758 + - d94a3b0d-f41e-4a90-a6b9-1e8e470d08d4 status: 404 Not Found code: 404 - duration: 22.82867ms - - id: 60 + duration: 21.549303ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3005,7 +2659,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e method: GET response: proto: HTTP/2.0 @@ -3015,26 +2669,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "e519bbf5-2c04-4bb8-a360-f28f3078b39e"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:43 GMT + - Wed, 29 Oct 2025 22:56: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f449c1cb-fe45-4f5e-bb72-d69cdb24a3e3 + - 87337073-1448-4f8c-be16-2da336b7e8cb status: 404 Not Found code: 404 - duration: 49.025876ms + duration: 65.552177ms 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 3a97c6e42..dd357a9e2 100644 --- a/internal/services/instance/testdata/server-user-data-basic.cassette.yaml +++ b/internal/services/instance/testdata/server-user-data-basic.cassette.yaml @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:53:55 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e012de5-bdf7-4a92-ac26-2a12da2b8854 + - de1be450-4b19-4764-bc32-fc3fe04f92f0 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 35.407779ms + duration: 36.298551ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:53:55 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 42f05c81-3ca6-4ce5-8ab3-0b75fea1fdc7 + - b3fcf099-b0e6-49bc-b792-ad7e9c99d880 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 58.37226ms + duration: 37.243228ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,43 +127,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:28 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8744afbb-2a08-41ea-8dfd-24cb286f60cb + - c206f3f9-360b-4be0-8669-c7a273c25a43 status: 200 OK code: 200 - duration: 58.37805ms + duration: 52.813962ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 233 + content_length: 234 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-thirsty-turing","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,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1736 + 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-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"}}' + body: '{"server": {"id": "de5b848b-923b-44f8-b7ca-0effb9118643", "name": "tf-srv-thirsty-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-thirsty-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d60a2be4-5b40-43ac-8522-0123bb6543fa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:56.429266+00:00", "modification_date": "2025-10-29T22:53:56.429266+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1736" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1738" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:31 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f00e0e2d-ae41-43a5-a487-c62f89519ced + - d25367e6-0fd4-4a39-985e-8372210ddf23 status: 201 Created code: 201 - duration: 2.6150789s + duration: 1.052214787s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1736 + 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-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"}}' + body: '{"server": {"id": "de5b848b-923b-44f8-b7ca-0effb9118643", "name": "tf-srv-thirsty-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-thirsty-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d60a2be4-5b40-43ac-8522-0123bb6543fa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:56.429266+00:00", "modification_date": "2025-10-29T22:53:56.429266+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1736" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1738" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:31 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - acf6440a-7d5c-40aa-a368-818d8203004e + - 57a9539a-e24e-45d9-a9b5-0511ee08ec1e status: 200 OK code: 200 - duration: 139.239303ms + duration: 138.840747ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 method: GET response: proto: HTTP/2.0 @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1736 + content_length: 1784 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: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"}}' + body: '{"server": {"id": "de5b848b-923b-44f8-b7ca-0effb9118643", "name": "tf-srv-thirsty-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-thirsty-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d60a2be4-5b40-43ac-8522-0123bb6543fa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:56.429266+00:00", "modification_date": "2025-10-29T22:53:56.429266+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1736" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1784" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:31 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 16c435c8-b9d5-4531-9201-abefdfaf0275 + - e8b7d7dc-f7cb-457b-a958-338680b79415 status: 200 OK code: 200 - duration: 146.266578ms + duration: 160.891457ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa method: GET response: proto: HTTP/2.0 @@ -333,29 +297,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"d60a2be4-5b40-43ac-8522-0123bb6543fa", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:56.561179Z", "updated_at":"2025-10-29T22:53:56.561179Z", "references":[{"id":"c0f24558-d17b-4ed2-8870-714244ae884f", "product_resource_type":"instance_server", "product_resource_id":"de5b848b-923b-44f8-b7ca-0effb9118643", "created_at":"2025-10-29T22:53:56.561179Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:31 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 06d2d3f5-a3b7-4ea8-9742-267cd969fb0c + - 7b098e4a-11c4-4b93-9974-b46f5bd98f95 status: 200 OK code: 200 - duration: 98.53838ms + duration: 74.226079ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +330,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/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/action method: POST response: proto: HTTP/2.0 @@ -384,31 +340,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "91b68373-c3df-4ea8-888e-b7b3b3b28f9b", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/de5b848b-923b-44f8-b7ca-0effb9118643/action", "href_result": "/servers/de5b848b-923b-44f8-b7ca-0effb9118643", "started_at": "2025-10-29T22:53:57.530994+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:32 GMT + - Wed, 29 Oct 2025 22:53:57 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/da8ead4c-0acf-4541-aaa4-74fda2bef6a7 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/91b68373-c3df-4ea8-888e-b7b3b3b28f9b Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 441459ff-b3e1-4914-8dc5-df435a412133 + - 9035b114-add1-4327-ba71-6b4dcd8e5f76 status: 202 Accepted code: 202 - duration: 247.587176ms + duration: 274.858396ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1758 + content_length: 1806 uncompressed: 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: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"}}' + body: '{"server": {"id": "de5b848b-923b-44f8-b7ca-0effb9118643", "name": "tf-srv-thirsty-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-thirsty-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d60a2be4-5b40-43ac-8522-0123bb6543fa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:56.429266+00:00", "modification_date": "2025-10-29T22:53:57.308728+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1758" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1806" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:32 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0bdf8b11-348c-4f4d-b41f-2773516d6830 + - daf10036-72f5-4004-af7d-5c6ac843f005 status: 200 OK code: 200 - duration: 131.250218ms + duration: 147.503525ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 method: GET response: proto: HTTP/2.0 @@ -482,31 +422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1892 + content_length: 1894 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "de5b848b-923b-44f8-b7ca-0effb9118643", "name": "tf-srv-thirsty-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-thirsty-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d60a2be4-5b40-43ac-8522-0123bb6543fa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:56.429266+00:00", "modification_date": "2025-10-29T22:53:59.675121+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "704", "node_id": "55"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1892" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1894" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:37 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bf69b90c-45f2-40b2-afcf-6556e708f19f + - ea35e965-72c8-40b6-bcab-1cef780bd5bc status: 200 OK code: 200 - duration: 199.992076ms + duration: 138.730824ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 method: GET response: proto: HTTP/2.0 @@ -531,31 +463,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1892 + content_length: 1894 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "de5b848b-923b-44f8-b7ca-0effb9118643", "name": "tf-srv-thirsty-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-thirsty-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d60a2be4-5b40-43ac-8522-0123bb6543fa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:56.429266+00:00", "modification_date": "2025-10-29T22:53:59.675121+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "704", "node_id": "55"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1892" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1894" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:37 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cc122380-95e3-40b7-a7c8-df99c4ff7498 + - 628afce8-88fe-4b7b-9db5-b7ce56be85be status: 200 OK code: 200 - duration: 163.648191ms + duration: 141.537231ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa method: GET response: proto: HTTP/2.0 @@ -582,29 +506,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4f374d37-766c-4b43-9a28-9e709fadf056","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d60a2be4-5b40-43ac-8522-0123bb6543fa"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:37 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b3185651-67ed-4cea-bb28-4d5cf9105aa9 + - 131290fb-00fb-4bea-b8ae-f85b7462cd21 status: 404 Not Found code: 404 - duration: 28.61721ms + duration: 29.187486ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa method: GET response: proto: HTTP/2.0 @@ -631,29 +547,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"d60a2be4-5b40-43ac-8522-0123bb6543fa", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:56.561179Z", "updated_at":"2025-10-29T22:53:56.561179Z", "references":[{"id":"c0f24558-d17b-4ed2-8870-714244ae884f", "product_resource_type":"instance_server", "product_resource_id":"de5b848b-923b-44f8-b7ca-0effb9118643", "created_at":"2025-10-29T22:53:56.561179Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:37 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3dbe6a77-8f7e-4354-a908-ba1c0edd9f9c + - 62e2cf9a-995c-404a-9768-9e33f7fcc8a6 status: 200 OK code: 200 - duration: 88.690062ms + duration: 91.090495ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/user_data method: GET response: proto: HTTP/2.0 @@ -680,29 +588,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:37 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f7a1954f-5f46-4e46-a857-15083822eb59 + - 3c360325-b0a1-43c8-b666-e7d43cfbfa85 status: 200 OK code: 200 - duration: 93.319792ms + duration: 105.223811ms - id: 14 request: proto: HTTP/1.1 @@ -719,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/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/private_nics method: GET response: proto: HTTP/2.0 @@ -729,33 +629,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:38 GMT + - Wed, 29 Oct 2025 22:54:03 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ec68d87d-2446-47cb-8059-e4534cd2a276 + - 499b72a8-19e0-46ab-ac6f-d332ccde55ec X-Total-Count: - "0" status: 200 OK code: 200 - duration: 98.390368ms + duration: 102.585398ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 method: GET response: proto: HTTP/2.0 @@ -780,31 +672,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1892 + content_length: 1894 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "de5b848b-923b-44f8-b7ca-0effb9118643", "name": "tf-srv-thirsty-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-thirsty-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d60a2be4-5b40-43ac-8522-0123bb6543fa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:56.429266+00:00", "modification_date": "2025-10-29T22:53:59.675121+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "704", "node_id": "55"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1892" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1894" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:38 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f743af75-25bf-49e0-942e-622bdf7608c6 + - b99e2976-2d8b-48fd-aae7-faa1980e332d status: 200 OK code: 200 - duration: 146.627863ms + duration: 126.490517ms - id: 16 request: proto: HTTP/1.1 @@ -826,7 +710,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/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/user_data/cloud-init method: PATCH response: proto: HTTP/2.0 @@ -838,25 +722,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - text/plain Date: - - Wed, 15 Oct 2025 15:04:38 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 792db622-4504-42c3-9e31-0e67c8fcfe57 + - a7af3277-cbe5-4bf5-91bf-4d492b1cdd2e status: 204 No Content code: 204 - duration: 168.42107ms + duration: 134.293046ms - id: 17 request: proto: HTTP/1.1 @@ -873,7 +749,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 method: GET response: proto: HTTP/2.0 @@ -881,31 +757,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1892 + content_length: 1940 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "de5b848b-923b-44f8-b7ca-0effb9118643", "name": "tf-srv-thirsty-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-thirsty-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d60a2be4-5b40-43ac-8522-0123bb6543fa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:56.429266+00:00", "modification_date": "2025-10-29T22:53:59.675121+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "704", "node_id": "55"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1892" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:38 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8d0b184d-4329-47ac-a284-c9a00e074b3d + - 8ad44a30-be95-405e-ba6a-1055b440183b status: 200 OK code: 200 - duration: 147.845075ms + duration: 132.443679ms - id: 18 request: proto: HTTP/1.1 @@ -922,7 +790,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -939,25 +807,17 @@ interactions: headers: Content-Length: - "49" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - text/plain Date: - - Wed, 15 Oct 2025 15:04:38 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f599591d-6d13-4548-88fe-cca7085fdb29 + - df5c5d98-46b4-49e5-8810-8d3e3f47e63f status: 200 OK code: 200 - duration: 109.308648ms + duration: 97.968445ms - id: 19 request: proto: HTTP/1.1 @@ -974,7 +834,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 method: GET response: proto: HTTP/2.0 @@ -982,31 +842,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1892 + content_length: 1894 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "de5b848b-923b-44f8-b7ca-0effb9118643", "name": "tf-srv-thirsty-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-thirsty-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d60a2be4-5b40-43ac-8522-0123bb6543fa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:56.429266+00:00", "modification_date": "2025-10-29T22:53:59.675121+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "704", "node_id": "55"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1892" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1894" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5363798c-7bea-4e11-8852-80388ec7f156 + - 13504132-f4b8-4294-a9fe-6aff6a06b55d status: 200 OK code: 200 - duration: 172.334647ms + duration: 179.993118ms - id: 20 request: proto: HTTP/1.1 @@ -1023,7 +875,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa method: GET response: proto: HTTP/2.0 @@ -1033,29 +885,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4f374d37-766c-4b43-9a28-9e709fadf056","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d60a2be4-5b40-43ac-8522-0123bb6543fa"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45d3c20c-3242-434d-97f6-821c394ab1fc + - c4ecda69-89ca-4ada-8960-d69e84b7c7d2 status: 404 Not Found code: 404 - duration: 32.364887ms + duration: 33.800421ms - id: 21 request: proto: HTTP/1.1 @@ -1072,7 +916,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa method: GET response: proto: HTTP/2.0 @@ -1082,29 +926,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"d60a2be4-5b40-43ac-8522-0123bb6543fa", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:56.561179Z", "updated_at":"2025-10-29T22:53:56.561179Z", "references":[{"id":"c0f24558-d17b-4ed2-8870-714244ae884f", "product_resource_type":"instance_server", "product_resource_id":"de5b848b-923b-44f8-b7ca-0effb9118643", "created_at":"2025-10-29T22:53:56.561179Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:39 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c50e8f45-f53f-4798-bdea-e1e1f7f38fda + - 8e1435b9-06ef-4876-afe2-f19ece4c5046 status: 200 OK code: 200 - duration: 95.933414ms + duration: 94.308912ms - id: 22 request: proto: HTTP/1.1 @@ -1121,7 +957,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/user_data method: GET response: proto: HTTP/2.0 @@ -1131,29 +967,21 @@ interactions: trailer: {} content_length: 29 uncompressed: false - body: '{"user_data":["cloud-init"]}' + body: '{"user_data": ["cloud-init"]}' headers: Content-Length: - "29" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - acf1c0ed-c7da-49be-81d5-156a4a934e6b + - 76c96685-ee55-44c0-b6c4-833fb5ae5bd4 status: 200 OK code: 200 - duration: 99.624273ms + duration: 107.685074ms - id: 23 request: proto: HTTP/1.1 @@ -1170,7 +998,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -1187,25 +1015,17 @@ interactions: headers: Content-Length: - "49" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - text/plain Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9900f56c-5b1e-428a-8371-1835cf6faf45 + - fc58a894-2cf2-4ede-8215-79e2022d80b1 status: 200 OK code: 200 - duration: 95.743297ms + duration: 95.511251ms - id: 24 request: proto: HTTP/1.1 @@ -1222,7 +1042,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/private_nics method: GET response: proto: HTTP/2.0 @@ -1232,33 +1052,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:39 GMT + - Wed, 29 Oct 2025 22:54:04 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 416c6907-c9e9-449d-aa94-2b6287783d1c + - 4010dbb6-40f1-4b14-9b41-a576e47e9a34 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 113.747009ms + duration: 93.051191ms - id: 25 request: proto: HTTP/1.1 @@ -1275,7 +1087,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 method: GET response: proto: HTTP/2.0 @@ -1283,31 +1095,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1892 + content_length: 1940 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "de5b848b-923b-44f8-b7ca-0effb9118643", "name": "tf-srv-thirsty-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-thirsty-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d60a2be4-5b40-43ac-8522-0123bb6543fa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:56.429266+00:00", "modification_date": "2025-10-29T22:53:59.675121+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "704", "node_id": "55"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1892" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1940" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2d6b0ad3-6366-4043-acaf-96a6092e8ea7 + - a931cb6a-239b-4006-8e31-761dc6c8c83e status: 200 OK code: 200 - duration: 138.282839ms + duration: 136.714544ms - id: 26 request: proto: HTTP/1.1 @@ -1324,7 +1128,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -1341,25 +1145,17 @@ interactions: headers: Content-Length: - "49" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - text/plain Date: - - Wed, 15 Oct 2025 15:04:39 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fdbe21cd-3a2d-4c6e-a613-617abe31c3b7 + - 95eb44e1-37cf-4ae1-bb7b-6fd004d15010 status: 200 OK code: 200 - duration: 89.204939ms + duration: 99.547578ms - id: 27 request: proto: HTTP/1.1 @@ -1376,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/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/user_data/cloud-init method: DELETE response: proto: HTTP/2.0 @@ -1388,25 +1184,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0f68ba25-e8ea-49d7-b019-5ee9b095b48d + - 78f52829-f6b1-4aa0-9fea-a4e310dd6e52 status: 204 No Content code: 204 - duration: 137.36013ms + duration: 112.31981ms - id: 28 request: proto: HTTP/1.1 @@ -1423,7 +1211,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 method: GET response: proto: HTTP/2.0 @@ -1431,31 +1219,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1892 + content_length: 1894 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "de5b848b-923b-44f8-b7ca-0effb9118643", "name": "tf-srv-thirsty-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-thirsty-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d60a2be4-5b40-43ac-8522-0123bb6543fa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:56.429266+00:00", "modification_date": "2025-10-29T22:53:59.675121+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "704", "node_id": "55"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1892" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1894" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a4a4f3ec-7a38-4c9a-b461-e7660ce33b4c + - 04ab4827-b23d-4190-8edf-b26e761d12d7 status: 200 OK code: 200 - duration: 141.467521ms + duration: 152.898245ms - id: 29 request: proto: HTTP/1.1 @@ -1472,7 +1252,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 method: GET response: proto: HTTP/2.0 @@ -1480,31 +1260,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1892 + content_length: 1894 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "de5b848b-923b-44f8-b7ca-0effb9118643", "name": "tf-srv-thirsty-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-thirsty-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d60a2be4-5b40-43ac-8522-0123bb6543fa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:56.429266+00:00", "modification_date": "2025-10-29T22:53:59.675121+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "704", "node_id": "55"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1892" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1894" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:54:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e7401f43-bc42-454c-ad6b-b8ad0037c232 + - ed167008-60ac-4e5c-bc80-7951ee7186c4 status: 200 OK code: 200 - duration: 159.396563ms + duration: 177.930642ms - id: 30 request: proto: HTTP/1.1 @@ -1523,7 +1295,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/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/action method: POST response: proto: HTTP/2.0 @@ -1533,31 +1305,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "678ede22-4513-45cf-bd18-13c965b64993", "description": "server_terminate", "status": "pending", "href_from": "/servers/de5b848b-923b-44f8-b7ca-0effb9118643/action", "href_result": "/servers/de5b848b-923b-44f8-b7ca-0effb9118643", "started_at": "2025-10-29T22:54:05.975718+00:00", "terminated_at": null, "progress": 0, "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:40 GMT + - Wed, 29 Oct 2025 22:54:06 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d9241a33-de5a-4636-913c-f0d9c7358ade + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/678ede22-4513-45cf-bd18-13c965b64993 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 64d69928-f0c0-4034-a25e-9276002b37f1 + - 2f5f915c-b244-4468-8001-74f2a9335eda status: 202 Accepted code: 202 - duration: 325.286281ms + duration: 279.287804ms - id: 31 request: proto: HTTP/1.1 @@ -1574,7 +1338,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 method: GET response: proto: HTTP/2.0 @@ -1582,31 +1346,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1855 + content_length: 1903 uncompressed: 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: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"}}' + body: '{"server": {"id": "de5b848b-923b-44f8-b7ca-0effb9118643", "name": "tf-srv-thirsty-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-thirsty-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d60a2be4-5b40-43ac-8522-0123bb6543fa", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:6f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:53:56.429266+00:00", "modification_date": "2025-10-29T22:54:05.750531+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "704", "node_id": "55"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1855" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1903" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7380fa5a-25e4-47a5-bf06-3438174c16e8 + - 1eb1d327-d12b-4081-8242-b90934a52d5a status: 200 OK code: 200 - duration: 127.872283ms + duration: 173.3678ms - id: 32 request: proto: HTTP/1.1 @@ -1623,7 +1379,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 method: GET response: proto: HTTP/2.0 @@ -1633,29 +1389,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "de5b848b-923b-44f8-b7ca-0effb9118643"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:45 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0b4b182c-984b-43d3-b14b-ca17ed7a20a1 + - de1f3396-9e71-42d6-8225-f275092d248a status: 404 Not Found code: 404 - duration: 39.506798ms + duration: 69.947763ms - id: 33 request: proto: HTTP/1.1 @@ -1672,7 +1420,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa method: GET response: proto: HTTP/2.0 @@ -1682,29 +1430,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4f374d37-766c-4b43-9a28-9e709fadf056","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d60a2be4-5b40-43ac-8522-0123bb6543fa"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:45 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1b8f22a6-13a8-49d0-b3cd-d3678e5c655e + - a199f36c-d1f7-4e6b-8210-df363953b954 status: 404 Not Found code: 404 - duration: 28.888742ms + duration: 28.844614ms - id: 34 request: proto: HTTP/1.1 @@ -1721,7 +1461,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa method: GET response: proto: HTTP/2.0 @@ -1731,29 +1471,21 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"d60a2be4-5b40-43ac-8522-0123bb6543fa", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:53:56.561179Z", "updated_at":"2025-10-29T22:54:07.424083Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:54:07.424083Z", "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:04:45 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d8d045f7-b7f2-4532-8e00-035d171db3bf + - 1078b12e-587d-43c5-8884-3d25802035c2 status: 200 OK code: 200 - duration: 93.764592ms + duration: 86.219427ms - id: 35 request: proto: HTTP/1.1 @@ -1770,7 +1502,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa method: DELETE response: proto: HTTP/2.0 @@ -1782,25 +1514,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:46 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 475f74ff-1019-4a75-ae7f-637fb10f541b + - 5bd2184a-581b-4e6a-9d06-8fae0110dfa4 status: 204 No Content code: 204 - duration: 168.450465ms + duration: 171.840448ms - id: 36 request: proto: HTTP/1.1 @@ -1817,7 +1541,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 method: GET response: proto: HTTP/2.0 @@ -1827,26 +1551,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "de5b848b-923b-44f8-b7ca-0effb9118643"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:46 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8d5b7e92-df9d-4606-b058-8edaccca885e + - 95539342-cb80-4a20-afe0-2d674305d086 status: 404 Not Found code: 404 - duration: 38.626298ms + duration: 49.364134ms 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 3c370c717..d14063e5d 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 @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:33 GMT + - Wed, 29 Oct 2025 22:55:18 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 91a3ec34-9797-449d-8aeb-8b931ec77611 + - f9e21c3f-ba99-4c60-92bb-aac8fd22c131 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 58.346193ms + duration: 121.186553ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:33 GMT + - Wed, 29 Oct 2025 22:55:18 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c1b4d246-ef2a-433a-8796-f94b31329142 + - d3d8ea7e-1acb-417c-98d9-5e352d345822 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 41.861429ms + duration: 53.054825ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,43 +127,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:33 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 63e5f394-6275-4d2e-9630-5e4d4b7bcd60 + - 85ca4311-f2ca-40c0-836d-d53dce9b4524 status: 200 OK code: 200 - duration: 44.827289ms + duration: 39.550271ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 234 + content_length: 237 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-determined-dhawan","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,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1738 + 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-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"}}' + body: '{"server": {"id": "cb369fee-a42e-41cf-a63d-83bfeb719534", "name": "tf-srv-determined-dhawan", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-determined-dhawan", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "37ed5fb2-2a0d-43a8-904a-da5b9f394201", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:19.518922+00:00", "modification_date": "2025-10-29T22:55:19.518922+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1738" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1744" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:35 GMT + - Wed, 29 Oct 2025 22:55:20 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f3fe8e6b-33f9-48fa-9453-2f68f61a1703 + - 02bd74f5-2189-47d6-bc48-7df1f0d2de13 status: 201 Created code: 201 - duration: 2.018418067s + duration: 1.386664002s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1738 + content_length: 1790 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: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"}}' + body: '{"server": {"id": "cb369fee-a42e-41cf-a63d-83bfeb719534", "name": "tf-srv-determined-dhawan", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-determined-dhawan", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "37ed5fb2-2a0d-43a8-904a-da5b9f394201", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:19.518922+00:00", "modification_date": "2025-10-29T22:55:19.518922+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1738" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1790" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 86bad24f-bcab-4a0c-a21b-ba25469c2f85 + - 44ee13d3-02dc-4b91-9f78-890a0d0d2561 status: 200 OK code: 200 - duration: 129.342554ms + duration: 123.270992ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 method: GET response: proto: HTTP/2.0 @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1738 + content_length: 1790 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: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"}}' + body: '{"server": {"id": "cb369fee-a42e-41cf-a63d-83bfeb719534", "name": "tf-srv-determined-dhawan", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-determined-dhawan", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "37ed5fb2-2a0d-43a8-904a-da5b9f394201", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:19.518922+00:00", "modification_date": "2025-10-29T22:55:19.518922+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1738" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1790" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ca1a5b2a-d6a0-4210-bf0c-b37ada8e01c7 + - ed7551f8-9262-46b6-a0e5-1eef021dd085 status: 200 OK code: 200 - duration: 156.168226ms + duration: 151.191355ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data method: GET response: proto: HTTP/2.0 @@ -333,48 +297,43 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f679519f-094d-499b-a8fb-17c52a69c9f0 + - 22b86df5-5b7e-44e6-a700-b7f139394c8e status: 200 OK code: 200 - duration: 122.874518ms + duration: 103.824727ms - id: 7 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/a5b46f68-bc58-4c76-9901-53b3b683e9e8/user_data/foo + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data/cloud-init method: PATCH response: proto: HTTP/2.0 @@ -386,47 +345,36 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - text/plain Date: - - Wed, 15 Oct 2025 15:04:35 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 54925592-3ff3-44b7-b12d-37fad2a3f1bf + - 65ff6fde-bad1-44eb-bf67-0775f0a426f3 status: 204 No Content code: 204 - duration: 135.174898ms + duration: 137.651525ms - id: 8 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/a5b46f68-bc58-4c76-9901-53b3b683e9e8/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data/foo method: PATCH response: proto: HTTP/2.0 @@ -438,25 +386,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - text/plain Date: - - Wed, 15 Oct 2025 15:04:36 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 98fa4dab-fcf8-4bb4-806e-3862d79384b2 + - c792c609-f633-4aad-b005-24b49d3e6c82 status: 204 No Content code: 204 - duration: 127.362232ms + duration: 142.394906ms - id: 9 request: proto: HTTP/1.1 @@ -473,7 +413,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 method: GET response: proto: HTTP/2.0 @@ -481,31 +421,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1738 + content_length: 1790 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: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"}}' + body: '{"server": {"id": "cb369fee-a42e-41cf-a63d-83bfeb719534", "name": "tf-srv-determined-dhawan", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-determined-dhawan", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "37ed5fb2-2a0d-43a8-904a-da5b9f394201", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:19.518922+00:00", "modification_date": "2025-10-29T22:55:19.518922+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1738" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1790" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:36 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6e93857d-38fa-47de-a478-d7a065f28052 + - d8c296fc-8ec0-4484-b4c3-bed3ed33d885 status: 200 OK code: 200 - duration: 153.296693ms + duration: 160.970803ms - id: 10 request: proto: HTTP/1.1 @@ -522,7 +454,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 method: GET response: proto: HTTP/2.0 @@ -532,29 +464,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"37ed5fb2-2a0d-43a8-904a-da5b9f394201", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:19.686774Z", "updated_at":"2025-10-29T22:55:19.686774Z", "references":[{"id":"413aaeaf-a18c-41a2-927c-08baf1084c45", "product_resource_type":"instance_server", "product_resource_id":"cb369fee-a42e-41cf-a63d-83bfeb719534", "created_at":"2025-10-29T22:55:19.686774Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:36 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3d4ea8b8-eb44-45b8-9ecb-8397ece1e25f + - f59d4c13-6b8c-4c9d-b162-059606454d0e status: 200 OK code: 200 - duration: 87.572818ms + duration: 103.985669ms - id: 11 request: proto: HTTP/1.1 @@ -573,7 +497,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/a5b46f68-bc58-4c76-9901-53b3b683e9e8/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/action method: POST response: proto: HTTP/2.0 @@ -583,31 +507,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "39fc97d5-40dd-4d3d-9679-a13e8d362ef6", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/action", "href_result": "/servers/cb369fee-a42e-41cf-a63d-83bfeb719534", "started_at": "2025-10-29T22:55:21.479136+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:36 GMT + - Wed, 29 Oct 2025 22:55:21 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/36d39963-a076-47c8-97f1-e9723deae65f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/39fc97d5-40dd-4d3d-9679-a13e8d362ef6 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5a0ca6d0-daac-478f-a55a-e1b3c29f3f8b + - eb3fbad5-127d-4744-9779-815b9484fb6e status: 202 Accepted code: 202 - duration: 267.305141ms + duration: 309.057583ms - id: 12 request: proto: HTTP/1.1 @@ -624,7 +540,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 method: GET response: proto: HTTP/2.0 @@ -632,31 +548,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1760 + content_length: 1812 uncompressed: 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: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"}}' + body: '{"server": {"id": "cb369fee-a42e-41cf-a63d-83bfeb719534", "name": "tf-srv-determined-dhawan", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-determined-dhawan", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "37ed5fb2-2a0d-43a8-904a-da5b9f394201", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:19.518922+00:00", "modification_date": "2025-10-29T22:55:21.243220+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1760" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1812" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:36 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e8daab9c-09cf-476c-ac0e-352e3ad6ec31 + - c564084f-0235-47be-9195-4921cd0315fe status: 200 OK code: 200 - duration: 142.641988ms + duration: 139.462692ms - id: 13 request: proto: HTTP/1.1 @@ -673,7 +581,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 method: GET response: proto: HTTP/2.0 @@ -681,31 +589,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1895 + 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: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"}}' + body: '{"server": {"id": "cb369fee-a42e-41cf-a63d-83bfeb719534", "name": "tf-srv-determined-dhawan", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-determined-dhawan", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "37ed5fb2-2a0d-43a8-904a-da5b9f394201", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:19.518922+00:00", "modification_date": "2025-10-29T22:55:23.804383+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "201", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1895" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1900" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:41 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 23708ee5-b7d0-45b5-991d-1d8fb047ad84 + - aeea60b7-6543-4b6c-a6db-80ca592c15c1 status: 200 OK code: 200 - duration: 156.500345ms + duration: 138.196586ms - id: 14 request: proto: HTTP/1.1 @@ -722,7 +622,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 method: GET response: proto: HTTP/2.0 @@ -730,31 +630,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1895 + content_length: 1946 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "cb369fee-a42e-41cf-a63d-83bfeb719534", "name": "tf-srv-determined-dhawan", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-determined-dhawan", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "37ed5fb2-2a0d-43a8-904a-da5b9f394201", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:19.518922+00:00", "modification_date": "2025-10-29T22:55:23.804383+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "201", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1895" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1946" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 04940aff-1fe0-4e1e-ba78-8168ea85a8aa + - 39919e9d-87ca-4304-99dc-9ece847ba3d1 status: 200 OK code: 200 - duration: 188.199656ms + duration: 141.514111ms - id: 15 request: proto: HTTP/1.1 @@ -771,7 +663,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 method: GET response: proto: HTTP/2.0 @@ -781,29 +673,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "37ed5fb2-2a0d-43a8-904a-da5b9f394201"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a2f023de-786b-4d8f-8b8b-5d03e0da00c3 + - b729127f-0040-42fc-bbd3-f764a79bc220 status: 404 Not Found code: 404 - duration: 26.581314ms + duration: 25.028816ms - id: 16 request: proto: HTTP/1.1 @@ -820,7 +704,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 method: GET response: proto: HTTP/2.0 @@ -830,29 +714,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"37ed5fb2-2a0d-43a8-904a-da5b9f394201", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:19.686774Z", "updated_at":"2025-10-29T22:55:19.686774Z", "references":[{"id":"413aaeaf-a18c-41a2-927c-08baf1084c45", "product_resource_type":"instance_server", "product_resource_id":"cb369fee-a42e-41cf-a63d-83bfeb719534", "created_at":"2025-10-29T22:55:19.686774Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 631d5624-1262-40f5-9a5f-0a2ee6444415 + - df7f4c6f-9551-4142-bda0-145abb88457b status: 200 OK code: 200 - duration: 108.147235ms + duration: 85.570783ms - id: 17 request: proto: HTTP/1.1 @@ -869,7 +745,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data method: GET response: proto: HTTP/2.0 @@ -879,29 +755,21 @@ interactions: trailer: {} content_length: 36 uncompressed: false - body: '{"user_data":["cloud-init","foo"]}' + body: '{"user_data": ["cloud-init", "foo"]}' headers: Content-Length: - "36" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1feb112f-4df7-40ae-bff9-f808385e0da7 + - 713fd5f4-aae6-43cb-8523-41132a673091 status: 200 OK code: 200 - duration: 116.439481ms + duration: 100.381169ms - id: 18 request: proto: HTTP/1.1 @@ -918,7 +786,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -935,25 +803,17 @@ interactions: headers: Content-Length: - "49" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - text/plain Date: - - Wed, 15 Oct 2025 15:04:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ccc1097a-4d71-4c62-8311-30c25ac9d284 + - 83ebc0c3-bdb9-4df3-9928-14e001ca1a72 status: 200 OK code: 200 - duration: 99.304115ms + duration: 99.181656ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +830,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data/foo + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data/foo method: GET response: proto: HTTP/2.0 @@ -984,25 +844,17 @@ interactions: headers: Content-Length: - "3" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - text/plain Date: - - Wed, 15 Oct 2025 15:04:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5f5b1a96-8b2b-4515-8b8f-17e0467181d0 + - 2d65ad71-2357-4639-9c20-d0ed26655336 status: 200 OK code: 200 - duration: 103.786098ms + duration: 92.151328ms - id: 20 request: proto: HTTP/1.1 @@ -1019,7 +871,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/private_nics method: GET response: proto: HTTP/2.0 @@ -1029,33 +881,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:42 GMT + - Wed, 29 Oct 2025 22:55:27 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e9481eb9-2e47-419c-97bd-1bcd56f97055 + - aaaa2c30-b0ee-4c2a-893d-3fe0a5fd5f21 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 109.343817ms + duration: 96.563019ms - id: 21 request: proto: HTTP/1.1 @@ -1072,7 +916,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 method: GET response: proto: HTTP/2.0 @@ -1080,31 +924,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1895 + 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: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"}}' + body: '{"server": {"id": "cb369fee-a42e-41cf-a63d-83bfeb719534", "name": "tf-srv-determined-dhawan", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-determined-dhawan", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "37ed5fb2-2a0d-43a8-904a-da5b9f394201", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:19.518922+00:00", "modification_date": "2025-10-29T22:55:23.804383+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "201", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1895" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1900" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:42 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d6f08a53-1ba2-4a3d-9d88-4f904407ead9 + - 6d454c11-92ab-494a-8448-56ebe5b53ca3 status: 200 OK code: 200 - duration: 159.065596ms + duration: 159.263142ms - id: 22 request: proto: HTTP/1.1 @@ -1121,7 +957,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 method: GET response: proto: HTTP/2.0 @@ -1129,31 +965,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1895 + content_length: 1946 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "cb369fee-a42e-41cf-a63d-83bfeb719534", "name": "tf-srv-determined-dhawan", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-determined-dhawan", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "37ed5fb2-2a0d-43a8-904a-da5b9f394201", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:19.518922+00:00", "modification_date": "2025-10-29T22:55:23.804383+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "201", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1895" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1946" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 34515ef7-6950-4841-b433-0f5ce671091d + - 44de715f-a1b3-41e4-90cc-6805a2c8dc29 status: 200 OK code: 200 - duration: 141.083474ms + duration: 143.211435ms - id: 23 request: proto: HTTP/1.1 @@ -1170,7 +998,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 method: GET response: proto: HTTP/2.0 @@ -1180,29 +1008,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "37ed5fb2-2a0d-43a8-904a-da5b9f394201"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f7a193e3-19ae-4aba-b25e-235e6a7d1901 + - 0c8b6b0e-445b-4e08-b229-0fd063ba1805 status: 404 Not Found code: 404 - duration: 30.035431ms + duration: 43.074772ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1039,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 method: GET response: proto: HTTP/2.0 @@ -1229,29 +1049,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"37ed5fb2-2a0d-43a8-904a-da5b9f394201", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:19.686774Z", "updated_at":"2025-10-29T22:55:19.686774Z", "references":[{"id":"413aaeaf-a18c-41a2-927c-08baf1084c45", "product_resource_type":"instance_server", "product_resource_id":"cb369fee-a42e-41cf-a63d-83bfeb719534", "created_at":"2025-10-29T22:55:19.686774Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4a9de9f8-0e85-476c-994b-1c93e972c6db + - 9582fcbc-2ef1-4803-881e-2e03d24df511 status: 200 OK code: 200 - duration: 89.775923ms + duration: 90.641155ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1080,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data method: GET response: proto: HTTP/2.0 @@ -1278,29 +1090,21 @@ interactions: trailer: {} content_length: 36 uncompressed: false - body: '{"user_data":["cloud-init","foo"]}' + body: '{"user_data": ["cloud-init", "foo"]}' headers: Content-Length: - "36" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bc636c17-4c16-4844-a0d4-3a74ded7b18c + - bce0ed2a-c12b-4f52-8c56-360e4beed902 status: 200 OK code: 200 - duration: 110.800419ms + duration: 103.66454ms - id: 26 request: proto: HTTP/1.1 @@ -1317,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/a5b46f68-bc58-4c76-9901-53b3b683e9e8/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -1334,25 +1138,17 @@ interactions: headers: Content-Length: - "49" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - text/plain Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 943d6e47-6285-451e-9d91-28b218fdb9f8 + - 00d34ee9-5108-4c1f-ba2e-9597e0c28f76 status: 200 OK code: 200 - duration: 115.528633ms + duration: 90.146741ms - id: 27 request: proto: HTTP/1.1 @@ -1369,7 +1165,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data/foo + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data/foo method: GET response: proto: HTTP/2.0 @@ -1383,25 +1179,17 @@ interactions: headers: Content-Length: - "3" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - text/plain Date: - - Wed, 15 Oct 2025 15:04:43 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 08fdf630-0518-4d54-9758-3346a9bbf3e9 + - 1c4edd8f-5225-452e-becf-d9183f62f339 status: 200 OK code: 200 - duration: 98.145975ms + duration: 94.343779ms - id: 28 request: proto: HTTP/1.1 @@ -1418,7 +1206,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/private_nics method: GET response: proto: HTTP/2.0 @@ -1428,33 +1216,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 + - Wed, 29 Oct 2025 22:55:28 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a69bb63d-5830-4ff4-96fc-71a11d77ae24 + - 7e263ab4-5416-468f-ad10-fb6f4730eb80 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 95.559446ms + duration: 89.412548ms - id: 29 request: proto: HTTP/1.1 @@ -1471,7 +1251,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 method: GET response: proto: HTTP/2.0 @@ -1479,31 +1259,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1895 + content_length: 1946 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "cb369fee-a42e-41cf-a63d-83bfeb719534", "name": "tf-srv-determined-dhawan", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-determined-dhawan", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "37ed5fb2-2a0d-43a8-904a-da5b9f394201", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:19.518922+00:00", "modification_date": "2025-10-29T22:55:23.804383+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "201", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1895" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1946" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:44 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e198227-da2a-4d0f-ad11-953139f5ca53 + - 3ac42fff-b4fe-4696-b906-886e55be69d6 status: 200 OK code: 200 - duration: 137.029715ms + duration: 136.677336ms - id: 30 request: proto: HTTP/1.1 @@ -1520,7 +1292,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 method: GET response: proto: HTTP/2.0 @@ -1528,31 +1300,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1895 + content_length: 1946 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "cb369fee-a42e-41cf-a63d-83bfeb719534", "name": "tf-srv-determined-dhawan", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-determined-dhawan", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "37ed5fb2-2a0d-43a8-904a-da5b9f394201", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:19.518922+00:00", "modification_date": "2025-10-29T22:55:23.804383+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "201", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1895" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1946" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:44 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4b417918-770c-49fe-a049-e7872f9fc39d + - 0f55011a-526d-4eb5-b174-6ba8673a0da7 status: 200 OK code: 200 - duration: 145.133508ms + duration: 139.996154ms - id: 31 request: proto: HTTP/1.1 @@ -1571,7 +1335,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/a5b46f68-bc58-4c76-9901-53b3b683e9e8/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/action method: POST response: proto: HTTP/2.0 @@ -1581,31 +1345,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "1677049d-0ec1-4309-96bd-8aa59a02a454", "description": "server_terminate", "status": "pending", "href_from": "/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/action", "href_result": "/servers/cb369fee-a42e-41cf-a63d-83bfeb719534", "started_at": "2025-10-29T22:55:29.389709+00:00", "terminated_at": null, "progress": 0, "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:44 GMT + - Wed, 29 Oct 2025 22:55:29 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d0690a47-c3a5-4735-a32e-167f54c82cc9 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1677049d-0ec1-4309-96bd-8aa59a02a454 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a47adac0-a4dd-40d7-a8f0-3faeb19996c6 + - 48840063-1c57-4f13-acc6-eb95f64e674a status: 202 Accepted code: 202 - duration: 593.517194ms + duration: 287.970795ms - id: 32 request: proto: HTTP/1.1 @@ -1622,7 +1378,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 method: GET response: proto: HTTP/2.0 @@ -1630,31 +1386,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1858 + content_length: 1909 uncompressed: 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: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"}}' + body: '{"server": {"id": "cb369fee-a42e-41cf-a63d-83bfeb719534", "name": "tf-srv-determined-dhawan", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-determined-dhawan", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "37ed5fb2-2a0d-43a8-904a-da5b9f394201", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:bb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:19.518922+00:00", "modification_date": "2025-10-29T22:55:29.153380+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "201", "node_id": "10"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1858" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1909" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:44 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 26376800-7b4c-4b8d-8e80-226f8959de4c + - 749f0e41-dbad-4af5-b3bf-0cf4dbe0cdfd status: 200 OK code: 200 - duration: 178.96159ms + duration: 146.809574ms - id: 33 request: proto: HTTP/1.1 @@ -1671,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/a5b46f68-bc58-4c76-9901-53b3b683e9e8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 method: GET response: proto: HTTP/2.0 @@ -1681,29 +1429,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "cb369fee-a42e-41cf-a63d-83bfeb719534"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:49 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 165dfceb-579d-41c3-8c12-b3eb93343f23 + - ace433fb-9b06-47f8-985e-d90ce42c21a0 status: 404 Not Found code: 404 - duration: 42.746594ms + duration: 47.004031ms - id: 34 request: proto: HTTP/1.1 @@ -1720,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/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 method: GET response: proto: HTTP/2.0 @@ -1730,29 +1470,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "37ed5fb2-2a0d-43a8-904a-da5b9f394201"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - aa628724-ab89-4252-a323-d88af38ba52f + - 101600d9-f2f6-4e54-97ba-0cc9a4593750 status: 404 Not Found code: 404 - duration: 32.271104ms + duration: 29.936263ms - id: 35 request: proto: HTTP/1.1 @@ -1769,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/block/v1alpha1/zones/fr-par-1/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 method: GET response: proto: HTTP/2.0 @@ -1779,29 +1511,21 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"37ed5fb2-2a0d-43a8-904a-da5b9f394201", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:19.686774Z", "updated_at":"2025-10-29T22:55:31.148599Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:31.148599Z", "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:04:50 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7b560614-551e-4304-9ff6-8ee4e109acea + - 2fb06adc-56e1-4843-ae25-f0f1795f2420 status: 200 OK code: 200 - duration: 106.346826ms + duration: 79.263048ms - id: 36 request: proto: HTTP/1.1 @@ -1818,7 +1542,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 method: DELETE response: proto: HTTP/2.0 @@ -1830,25 +1554,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:50 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cf276940-1219-494e-9cb1-98d60441c784 + - f3abf3c3-70ac-4fc9-9e1a-48a7c7eda2ea status: 204 No Content code: 204 - duration: 166.34795ms + duration: 159.48474ms - id: 37 request: proto: HTTP/1.1 @@ -1865,7 +1581,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 method: GET response: proto: HTTP/2.0 @@ -1875,26 +1591,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "cb369fee-a42e-41cf-a63d-83bfeb719534"}' 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ffe625c9-e486-47e5-8d91-e04999f251e9 + - 305c50a9-91fd-48a6-a6c8-6c30ddb22326 status: 404 Not Found code: 404 - duration: 48.970803ms + duration: 41.891962ms 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 1ae5afb11..1695fbf73 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 @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:55:09 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45168890-a520-448c-8f1e-1b82b5d5724f + - 75df988b-0d7e-4ab0-9e0e-76d4cdc3d177 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 44.937147ms + duration: 59.003307ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:55:09 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ea61961d-a659-4e82-bc6d-d2400cedb4d2 + - 1fa7bfbd-cc09-40c4-a09c-99a196858c7d X-Total-Count: - "68" status: 200 OK code: 200 - duration: 44.307939ms + duration: 55.422501ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -131,43 +127,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 17bb8628-81d1-42b0-a7ac-94688bae44d7 + - 16285da3-70fd-4c77-91f2-c16cbc90fdab status: 200 OK code: 200 - duration: 60.176865ms + duration: 54.984482ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 325 + content_length: 318 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"]}' + body: '{"name":"tf-srv-ecstatic-moser","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,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1809 + content_length: 1795 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: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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:09.967869+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1809" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1795" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:55:10 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d9cadf39-f00d-4362-ada9-0357650e07f9 + - c65affc4-0d88-43ef-ba34-4c3539e8a8b4 status: 201 Created code: 201 - duration: 1.197671983s + duration: 1.161077408s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1809 + content_length: 1841 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: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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:09.967869+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1809" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1841" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d7fd56bd-e551-485a-b2d6-52b048124409 + - 206e55f2-9613-4b1b-aca9-80791a0b216e status: 200 OK code: 200 - duration: 151.15499ms + duration: 153.744335ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1809 + content_length: 1795 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: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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:09.967869+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1809" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1795" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dd4a2a2b-f0d7-43a9-88ff-502d2683678b + - d016eaef-7076-441a-8b24-42c3ed23ad1d status: 200 OK code: 200 - duration: 167.343385ms + duration: 164.676429ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 method: GET response: proto: HTTP/2.0 @@ -333,29 +297,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"90738c24-3e2f-4a0e-8644-9352fba6e465", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:10.103538Z", "updated_at":"2025-10-29T22:55:10.103538Z", "references":[{"id":"eac256f2-cd09-4ed9-acb0-ba4c619d665b", "product_resource_type":"instance_server", "product_resource_id":"31f2b0bc-5150-44d8-a081-abecfd2fa64e", "created_at":"2025-10-29T22:55:10.103538Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:00 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 715109db-ee8d-4bbd-9db1-f74e726ed95d + - 6eb2618a-0af0-496f-baf8-f1d1caf61fa7 status: 200 OK code: 200 - duration: 92.419165ms + duration: 71.292799ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +330,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/4159ae83-90dd-4406-959d-3eea40afe3ea/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/action method: POST response: proto: HTTP/2.0 @@ -384,31 +340,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "75ee83ac-34c0-4c34-b780-af79b9925262", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/action", "href_result": "/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e", "started_at": "2025-10-29T22:55:11.207595+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:55:11 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3b95848a-92be-4565-af03-f68c42f7efd1 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/75ee83ac-34c0-4c34-b780-af79b9925262 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 28a606ac-f4fa-4a19-a45d-9d7680ccd2a6 + - eede15d7-92ca-40e5-b473-6b61da1d3542 status: 202 Accepted code: 202 - duration: 262.50505ms + duration: 289.081289ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1831 + content_length: 1817 uncompressed: 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: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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:10.973448+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1831" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1817" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d1fd34c0-7870-4e37-b1b3-4b937b8fcc46 + - 81fd1620-e447-4424-a2bc-321bc7237128 status: 200 OK code: 200 - duration: 158.13973ms + duration: 136.727734ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -482,31 +422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1966 + content_length: 1997 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:13.467709+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "601", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1997" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 04957738-54fd-4853-90aa-ad54cf7b3159 + - 8c86b8c1-c8bb-48a2-ae8f-a25dd6e8a48d status: 200 OK code: 200 - duration: 147.752653ms + duration: 151.876425ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -531,31 +463,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1966 + 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-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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:13.467709+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "601", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1951" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 345ba416-c03c-4b83-b6ea-22fcd229cda5 + - d3f9173c-e74f-4292-840b-b6ddb17d2418 status: 200 OK code: 200 - duration: 159.265317ms + duration: 123.420831ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 method: GET response: proto: HTTP/2.0 @@ -582,29 +506,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "90738c24-3e2f-4a0e-8644-9352fba6e465"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7c573593-e2dd-4a23-8a2f-2d1e5a7344f7 + - f49de311-870a-461a-9481-81d932be9968 status: 404 Not Found code: 404 - duration: 25.282318ms + duration: 31.355506ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 method: GET response: proto: HTTP/2.0 @@ -631,29 +547,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"90738c24-3e2f-4a0e-8644-9352fba6e465", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:10.103538Z", "updated_at":"2025-10-29T22:55:10.103538Z", "references":[{"id":"eac256f2-cd09-4ed9-acb0-ba4c619d665b", "product_resource_type":"instance_server", "product_resource_id":"31f2b0bc-5150-44d8-a081-abecfd2fa64e", "created_at":"2025-10-29T22:55:10.103538Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5ad0f1f3-5744-45ce-9a61-c4407f20771e + - 747640a6-0f79-4e2b-9f5c-2f66a04a77e1 status: 200 OK code: 200 - duration: 88.769039ms + duration: 90.289785ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/user_data method: GET response: proto: HTTP/2.0 @@ -680,29 +588,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:06 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 765fa64f-cf59-4472-86d2-22269d5cded7 + - 53bd90e6-4354-404a-84b0-b3603cb2aa73 status: 200 OK code: 200 - duration: 93.39621ms + duration: 92.156596ms - id: 14 request: proto: HTTP/1.1 @@ -719,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/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/private_nics method: GET response: proto: HTTP/2.0 @@ -729,33 +629,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:06 GMT + - Wed, 29 Oct 2025 22:55:16 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e1e309b-50a0-4685-9768-1b80c7bcf3f7 + - 715bb5a5-17d8-4996-9eab-4f1eee28a4ea X-Total-Count: - "0" status: 200 OK code: 200 - duration: 115.540969ms + duration: 118.999753ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -780,31 +672,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1966 + content_length: 1997 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:13.467709+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "601", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1997" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a35e124d-d7d7-40f4-b667-036364366888 + - 9b22b707-0025-4ccc-a50e-6accc90ce780 status: 200 OK code: 200 - duration: 136.108723ms + duration: 135.00759ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -829,31 +713,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1966 + content_length: 1997 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:13.467709+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "601", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1997" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3b6da647-867a-43a8-a014-354ed92c545d + - e40d5467-f770-491c-8746-9cfa25bcc63e status: 200 OK code: 200 - duration: 161.009176ms + duration: 162.672795ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 method: GET response: proto: HTTP/2.0 @@ -880,29 +756,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "90738c24-3e2f-4a0e-8644-9352fba6e465"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a42710ab-5698-4de5-9654-648ba857e2c9 + - f1bd737d-9f79-473d-8ebc-150238142789 status: 404 Not Found code: 404 - duration: 23.059563ms + duration: 28.463248ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 method: GET response: proto: HTTP/2.0 @@ -929,29 +797,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"90738c24-3e2f-4a0e-8644-9352fba6e465", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:10.103538Z", "updated_at":"2025-10-29T22:55:10.103538Z", "references":[{"id":"eac256f2-cd09-4ed9-acb0-ba4c619d665b", "product_resource_type":"instance_server", "product_resource_id":"31f2b0bc-5150-44d8-a081-abecfd2fa64e", "created_at":"2025-10-29T22:55:10.103538Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7cc54bca-7a19-4cf0-8353-75cfc8e4756c + - 0efe573a-7205-410d-97f9-3e4775971de5 status: 200 OK code: 200 - duration: 963.738151ms + duration: 84.366037ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +828,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/user_data method: GET response: proto: HTTP/2.0 @@ -978,29 +838,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - dde10919-98a3-4dbf-8bbe-4883225c0fb0 + - da245e01-605c-4f79-9c4f-2fa5aacc6cf0 status: 200 OK code: 200 - duration: 124.805152ms + duration: 92.021654ms - id: 20 request: proto: HTTP/1.1 @@ -1017,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/4159ae83-90dd-4406-959d-3eea40afe3ea/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/private_nics method: GET response: proto: HTTP/2.0 @@ -1027,33 +879,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:08 GMT + - Wed, 29 Oct 2025 22:55:17 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 16663d8b-65ab-46ba-a70a-7fd9ab94cbcf + - 5d83a49e-e422-4d97-84e6-f9b6713ddc22 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 111.96496ms + duration: 104.36134ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -1078,31 +922,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1966 + content_length: 1997 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:13.467709+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "601", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1997" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8fa023a0-882f-48f9-9681-038d5bc2be21 + - 77ba1c89-4175-4857-9ee1-1b017120bbf4 status: 200 OK code: 200 - duration: 154.448975ms + duration: 165.758305ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 method: GET response: proto: HTTP/2.0 @@ -1129,29 +965,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "90738c24-3e2f-4a0e-8644-9352fba6e465"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 999953fa-56f8-48b2-ad03-ed42c047aa15 + - 8b84c694-46ba-44fa-892e-c7c671ae1782 status: 404 Not Found code: 404 - duration: 41.832263ms + duration: 26.664113ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +996,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 method: GET response: proto: HTTP/2.0 @@ -1178,29 +1006,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"90738c24-3e2f-4a0e-8644-9352fba6e465", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:10.103538Z", "updated_at":"2025-10-29T22:55:10.103538Z", "references":[{"id":"eac256f2-cd09-4ed9-acb0-ba4c619d665b", "product_resource_type":"instance_server", "product_resource_id":"31f2b0bc-5150-44d8-a081-abecfd2fa64e", "created_at":"2025-10-29T22:55:10.103538Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 050f003e-7789-4430-8562-206e21964627 + - db1aad83-6857-462c-8232-d115ce712350 status: 200 OK code: 200 - duration: 85.735337ms + duration: 79.604825ms - id: 24 request: proto: HTTP/1.1 @@ -1217,7 +1037,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/user_data method: GET response: proto: HTTP/2.0 @@ -1227,29 +1047,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c78d9bb9-13b5-4b2e-82a2-788b5626429c + - 0cd7cece-3c23-4038-9e89-3194205807ac status: 200 OK code: 200 - duration: 107.288187ms + duration: 85.478157ms - id: 25 request: proto: HTTP/1.1 @@ -1266,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/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/private_nics method: GET response: proto: HTTP/2.0 @@ -1276,33 +1088,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:09 GMT + - Wed, 29 Oct 2025 22:55:18 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5649ec61-abe0-47bb-bab7-e78f0b995ddb + - 5f3188b8-468a-49ec-bfe0-8d860022dfa3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 100.344124ms + duration: 108.139916ms - id: 26 request: proto: HTTP/1.1 @@ -1319,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/servers/4159ae83-90dd-4406-959d-3eea40afe3ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -1327,31 +1131,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1966 + content_length: 1997 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:13.467709+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "601", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1997" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 812e6cda-fe1d-4e0c-ac36-46f66c7558a8 + - d2709726-c7ed-4de7-8572-f295ff8c4c84 status: 200 OK code: 200 - duration: 136.074622ms + duration: 140.343548ms - id: 27 request: proto: HTTP/1.1 @@ -1368,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/4159ae83-90dd-4406-959d-3eea40afe3ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -1376,31 +1172,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1966 + content_length: 1997 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:13.467709+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "601", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1997" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3ccbc15c-a636-43c0-843e-80f1219614fc + - 129b9306-b225-4c51-afe1-266886159fa1 status: 200 OK code: 200 - duration: 145.626913ms + duration: 142.581393ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/user_data method: GET response: proto: HTTP/2.0 @@ -1427,29 +1215,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7bb6dbcf-b593-4285-bd9a-ea0cc8d1a221 + - ac5ed495-cd0a-4d88-b89b-728ccd15c8a7 status: 200 OK code: 200 - duration: 89.170154ms + duration: 103.373643ms - id: 29 request: proto: HTTP/1.1 @@ -1471,7 +1251,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/4159ae83-90dd-4406-959d-3eea40afe3ea/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/user_data/cloud-init method: PATCH response: proto: HTTP/2.0 @@ -1483,25 +1263,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - text/plain Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 463b1c77-a544-46c0-9146-fa2495dc8121 + - 96a098b8-c945-4a0d-af55-8f15a3c9206d status: 204 No Content code: 204 - duration: 119.558953ms + duration: 123.928511ms - id: 30 request: proto: HTTP/1.1 @@ -1518,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/4159ae83-90dd-4406-959d-3eea40afe3ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -1526,31 +1298,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1966 + 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-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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:13.467709+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "601", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1951" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 39d5dfb4-a8b0-42de-b035-633e2bc61f03 + - 4f3c2c0a-0606-478d-8a1d-6559eecda660 status: 200 OK code: 200 - duration: 140.52854ms + duration: 152.982223ms - id: 31 request: proto: HTTP/1.1 @@ -1567,7 +1331,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -1575,31 +1339,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1966 + 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-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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:13.467709+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "601", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1951" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0c99a2a1-f75e-4b49-a52b-55482982e7b5 + - db45e7f6-0b0e-4f04-99f4-7606fc6ef6cb status: 200 OK code: 200 - duration: 136.980552ms + duration: 139.891544ms - id: 32 request: proto: HTTP/1.1 @@ -1616,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/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 method: GET response: proto: HTTP/2.0 @@ -1626,29 +1382,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "90738c24-3e2f-4a0e-8644-9352fba6e465"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7474b9c6-82b6-4144-bf7f-97fa41a0a68f + - e850a027-0b4c-4a9b-a479-b433881bc4bb status: 404 Not Found code: 404 - duration: 28.621206ms + duration: 30.218089ms - id: 33 request: proto: HTTP/1.1 @@ -1665,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/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 method: GET response: proto: HTTP/2.0 @@ -1675,29 +1423,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"90738c24-3e2f-4a0e-8644-9352fba6e465", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:10.103538Z", "updated_at":"2025-10-29T22:55:10.103538Z", "references":[{"id":"eac256f2-cd09-4ed9-acb0-ba4c619d665b", "product_resource_type":"instance_server", "product_resource_id":"31f2b0bc-5150-44d8-a081-abecfd2fa64e", "created_at":"2025-10-29T22:55:10.103538Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 22ce53c3-b823-40a5-9b0d-6e6608cb2cfd + - 25e4af77-22ae-4521-a7b6-11cc8a82372f status: 200 OK code: 200 - duration: 98.87442ms + duration: 103.833043ms - id: 34 request: proto: HTTP/1.1 @@ -1714,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/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/user_data method: GET response: proto: HTTP/2.0 @@ -1724,29 +1464,21 @@ interactions: trailer: {} content_length: 29 uncompressed: false - body: '{"user_data":["cloud-init"]}' + body: '{"user_data": ["cloud-init"]}' headers: Content-Length: - "29" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 56c034a9-86cd-4da6-83ec-1d95f16d16f4 + - d496952c-f271-4943-bcb5-8395836cadf6 status: 200 OK code: 200 - duration: 88.054043ms + duration: 132.858391ms - id: 35 request: proto: HTTP/1.1 @@ -1763,7 +1495,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -1780,25 +1512,17 @@ interactions: headers: Content-Length: - "49" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - text/plain Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e0fe02ca-9b38-4c7f-be71-5921da9ab5e4 + - a7452ff8-4fc7-4a57-9d14-519f0f6d41bf status: 200 OK code: 200 - duration: 96.681811ms + duration: 101.204086ms - id: 36 request: proto: HTTP/1.1 @@ -1815,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/4159ae83-90dd-4406-959d-3eea40afe3ea/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/private_nics method: GET response: proto: HTTP/2.0 @@ -1825,33 +1549,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:10 GMT + - Wed, 29 Oct 2025 22:55:20 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9056cb07-85c8-486d-9cb1-14888dba4369 + - ab0b2b75-0689-4ce6-8b16-732b479d174b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 100.537176ms + duration: 116.603424ms - id: 37 request: proto: HTTP/1.1 @@ -1868,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/servers/4159ae83-90dd-4406-959d-3eea40afe3ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -1876,31 +1592,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1966 + 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-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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:13.467709+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "601", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1951" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ee982927-03c6-4ca0-b6d7-baaaecce036b + - 6635a890-5313-424d-ae51-8977b64e1eb9 status: 200 OK code: 200 - duration: 141.320996ms + duration: 131.000968ms - id: 38 request: proto: HTTP/1.1 @@ -1917,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/4159ae83-90dd-4406-959d-3eea40afe3ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -1925,31 +1633,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1966 + content_length: 1997 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:13.467709+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "601", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1997" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5bcd641a-3829-4087-92f6-cee614378cc7 + - 68ad6ce2-9911-400b-8197-6be1fdd36f68 status: 200 OK code: 200 - duration: 182.628176ms + duration: 163.366703ms - id: 39 request: proto: HTTP/1.1 @@ -1966,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/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 method: GET response: proto: HTTP/2.0 @@ -1976,29 +1676,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "90738c24-3e2f-4a0e-8644-9352fba6e465"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 629af7a8-00dd-4534-af9c-aafc1ad4b623 + - 53ed9d4e-5f2a-43d1-834e-996163b42c7a status: 404 Not Found code: 404 - duration: 27.906307ms + duration: 26.251672ms - id: 40 request: proto: HTTP/1.1 @@ -2015,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/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 method: GET response: proto: HTTP/2.0 @@ -2025,29 +1717,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"90738c24-3e2f-4a0e-8644-9352fba6e465", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:10.103538Z", "updated_at":"2025-10-29T22:55:10.103538Z", "references":[{"id":"eac256f2-cd09-4ed9-acb0-ba4c619d665b", "product_resource_type":"instance_server", "product_resource_id":"31f2b0bc-5150-44d8-a081-abecfd2fa64e", "created_at":"2025-10-29T22:55:10.103538Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 131efeed-c4df-4342-8f63-e131e6813587 + - 7ca140ad-e540-46e3-ab06-ca32bdec8ba3 status: 200 OK code: 200 - duration: 88.942529ms + duration: 80.172306ms - id: 41 request: proto: HTTP/1.1 @@ -2064,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/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/user_data method: GET response: proto: HTTP/2.0 @@ -2074,29 +1758,21 @@ interactions: trailer: {} content_length: 29 uncompressed: false - body: '{"user_data":["cloud-init"]}' + body: '{"user_data": ["cloud-init"]}' headers: Content-Length: - "29" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 494c8a24-0505-4359-b848-472837fe1260 + - e8d7b66f-e263-4dd4-bb51-814023b33a4d status: 200 OK code: 200 - duration: 95.637034ms + duration: 94.973816ms - id: 42 request: proto: HTTP/1.1 @@ -2113,7 +1789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -2130,25 +1806,17 @@ interactions: headers: Content-Length: - "49" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - text/plain Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b48a9584-635f-435e-aff9-28024a22e6fe + - 013c3815-842b-4240-8639-556a7053798d status: 200 OK code: 200 - duration: 131.231589ms + duration: 103.991228ms - id: 43 request: proto: HTTP/1.1 @@ -2165,7 +1833,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/private_nics method: GET response: proto: HTTP/2.0 @@ -2175,33 +1843,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:11 GMT + - Wed, 29 Oct 2025 22:55:21 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6b5cd2b7-2705-4972-90bd-ee9dfe99058f + - b6f849b2-d4d6-4e78-9052-878776ce2ca1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 103.976663ms + duration: 108.530147ms - id: 44 request: proto: HTTP/1.1 @@ -2218,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/4159ae83-90dd-4406-959d-3eea40afe3ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -2226,31 +1886,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1966 + 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-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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:13.467709+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "601", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1951" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:11 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4befef42-6d31-47ec-aa28-2b4f099d2c17 + - ceb8b710-1f48-4448-857c-87a6dc999d42 status: 200 OK code: 200 - duration: 157.83815ms + duration: 151.298255ms - id: 45 request: proto: HTTP/1.1 @@ -2267,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/4159ae83-90dd-4406-959d-3eea40afe3ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -2275,31 +1927,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1966 + 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-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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:13.467709+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "601", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1951" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4c0067d3-75e0-4adf-b5c4-041d7695885b + - be9cfd5c-976d-4077-9ef9-e6666e102f63 status: 200 OK code: 200 - duration: 147.402515ms + duration: 129.840298ms - id: 46 request: proto: HTTP/1.1 @@ -2318,7 +1962,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/4159ae83-90dd-4406-959d-3eea40afe3ea/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/action method: POST response: proto: HTTP/2.0 @@ -2328,31 +1972,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "05b40bef-7782-44ec-a84c-7be9a30f9ed2", "description": "server_terminate", "status": "pending", "href_from": "/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/action", "href_result": "/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e", "started_at": "2025-10-29T22:55:21.869751+00:00", "terminated_at": null, "progress": 0, "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:12 GMT + - Wed, 29 Oct 2025 22:55:21 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7be1d7d0-401c-4e5d-a7dd-cd1a2963b567 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/05b40bef-7782-44ec-a84c-7be9a30f9ed2 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bb48cb26-5205-44ec-838e-a33d35d6952d + - d8705020-351d-443c-bd00-7ac8aaeee5aa status: 202 Accepted code: 202 - duration: 296.781924ms + duration: 292.124718ms - id: 47 request: proto: HTTP/1.1 @@ -2369,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/4159ae83-90dd-4406-959d-3eea40afe3ea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -2377,31 +2013,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1929 + content_length: 1914 uncompressed: 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: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"}}' + body: '{"server": {"id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e", "name": "tf-srv-ecstatic-moser", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-ecstatic-moser", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "90738c24-3e2f-4a0e-8644-9352fba6e465", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "user_data"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:af", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:09.967869+00:00", "modification_date": "2025-10-29T22:55:21.651770+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "601", "node_id": "10"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1929" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1914" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d9ded014-833e-4abd-ae44-f4500a57988c + - 53920a75-84d2-4bff-91f4-13b445d7d2e2 status: 200 OK code: 200 - duration: 156.405467ms + duration: 126.75626ms - id: 48 request: proto: HTTP/1.1 @@ -2418,7 +2046,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -2428,29 +2056,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4159ae83-90dd-4406-959d-3eea40afe3ea","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e03f2d2d-494f-42cf-8322-8b69c7f8f372 + - 1ac197e6-87e3-47fc-8ee9-9b12a7038a88 status: 404 Not Found code: 404 - duration: 65.311598ms + duration: 59.858029ms - id: 49 request: proto: HTTP/1.1 @@ -2467,7 +2087,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 method: GET response: proto: HTTP/2.0 @@ -2477,29 +2097,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "90738c24-3e2f-4a0e-8644-9352fba6e465"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9935ad9c-6293-44ac-843d-41d2e2a280bc + - 9351b339-7f48-4a25-87fc-9998707a3f5e status: 404 Not Found code: 404 - duration: 23.900582ms + duration: 27.878675ms - id: 50 request: proto: HTTP/1.1 @@ -2516,7 +2128,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 method: GET response: proto: HTTP/2.0 @@ -2526,29 +2138,21 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"90738c24-3e2f-4a0e-8644-9352fba6e465", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":20000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:10.103538Z", "updated_at":"2025-10-29T22:55:23.254392Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:23.254392Z", "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:17 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bd14a24f-331d-41ca-9ad4-c775baabfff7 + - 531f416f-5b5c-4a4e-ac16-814d3e10c39e status: 200 OK code: 200 - duration: 87.701258ms + duration: 79.733737ms - id: 51 request: proto: HTTP/1.1 @@ -2565,7 +2169,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 method: DELETE response: proto: HTTP/2.0 @@ -2577,25 +2181,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2319dca3-9030-413b-8556-a0c7ad3d5728 + - c1561d63-cb3b-477d-890c-864344927063 status: 204 No Content code: 204 - duration: 142.041255ms + duration: 154.426839ms - id: 52 request: proto: HTTP/1.1 @@ -2612,7 +2208,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e method: GET response: proto: HTTP/2.0 @@ -2622,26 +2218,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4159ae83-90dd-4406-959d-3eea40afe3ea","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "31f2b0bc-5150-44d8-a081-abecfd2fa64e"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 71b2a28c-0495-499b-9464-63d56835ee9b + - 79b04c74-369a-4e54-ab1f-3226a656f490 status: 404 Not Found code: 404 - duration: 52.000122ms + duration: 59.602591ms 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 22eaa887a..cb5147865 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: 137 + content_length: 138 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pg-tender-jepsen","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_type":"max_availability"}' + body: '{"name":"tf-pg-nervous-bartik","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_type":"max_availability"}' form: {} headers: Content-Type: @@ -27,33 +27,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 326 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "326" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54:55 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/0a5fb281-cbad-4311-9b89-6ebb1fac6f4b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7e146eb5-429d-4b11-9e33-1810d762386f Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6d85f6ef-071f-4cdc-bf0a-10ed48b1589a + - 2539ef25-9239-46e0-ac03-5580ba38d8bc status: 201 Created code: 201 - duration: 240.577758ms + duration: 166.614086ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/0a5fb281-cbad-4311-9b89-6ebb1fac6f4b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7e146eb5-429d-4b11-9e33-1810d762386f method: GET response: proto: HTTP/2.0 @@ -78,31 +70,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 326 uncompressed: false - 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"}}' + body: '{"placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "326" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 62cca831-a572-43a6-bf0e-56de686edd31 + - eb44e956-5eb6-445f-aaab-99a5cc61f721 status: 200 OK code: 200 - duration: 109.004418ms + duration: 153.163323ms - id: 2 request: proto: HTTP/1.1 @@ -115,7 +99,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -127,35 +113,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 04379339-42a8-401a-9b8b-95fa3adf8676 + - ceeb9180-6803-4f58-9755-da8292b39a51 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 40.212892ms + duration: 35.622123ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +146,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -180,35 +160,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5dce7a82-eef8-472e-a8c5-e2ff0ac41840 + - 2aaa495c-a959-44bf-b2d0-bf6f25f18eec X-Total-Count: - "68" status: 200 OK code: 200 - duration: 50.214217ms + duration: 52.731407ms - id: 4 request: proto: HTTP/1.1 @@ -221,7 +193,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -233,35 +207,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cfc90ca0-75f1-40a5-9445-93d783aaf6e6 + - 5740fea0-ba0f-4975-b059-d2874941d47f X-Total-Count: - "68" status: 200 OK code: 200 - duration: 50.688516ms + duration: 64.630257ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +240,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -288,33 +256,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 40355bb6-866b-4dfa-85be-2b3949613c9b + - 622da959-f4d4-4f2a-81c0-43163213bcfd X-Total-Count: - "68" status: 200 OK code: 200 - duration: 45.53662ms + duration: 41.092221ms - id: 6 request: proto: HTTP/1.1 @@ -327,7 +287,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -341,33 +303,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 31102301-0252-4451-a7a3-ca6e18b03861 + - d990101c-b2dc-4bea-afd4-2ad603b2e3e2 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 39.128298ms + duration: 75.642891ms - id: 7 request: proto: HTTP/1.1 @@ -380,7 +334,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -394,33 +350,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54:56 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 44e50e35-f4dd-43f0-ae77-4f93cba5aa0e + - d3f90538-3256-40c1-8b50-63d2745a8a1b X-Total-Count: - "68" status: 200 OK code: 200 - duration: 43.148173ms + duration: 102.549797ms - id: 8 request: proto: HTTP/1.1 @@ -433,7 +381,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -445,31 +401,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a9435eff-78ef-439c-ac96-b29cc16ca529 + - b96c1eb0-c628-4c8e-9e44-aa5b56dd60f3 status: 200 OK code: 200 - duration: 34.506706ms + duration: 49.920741ms - id: 9 request: proto: HTTP/1.1 @@ -482,7 +430,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -494,31 +450,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 93be3fef-9851-4189-b683-137b2b01b0d9 + - 0b506bc5-bfd5-4ecb-844a-c0d93e22c6c2 status: 200 OK code: 200 - duration: 45.449797ms + duration: 41.945487ms - id: 10 request: proto: HTTP/1.1 @@ -531,7 +479,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -543,43 +499,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:44 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 983e26d0-fc49-41f5-9b62-d89b8ac6715b + - 2ed2fb17-0c39-4acf-a163-703b8de0e9f8 status: 200 OK code: 200 - duration: 59.618033ms + duration: 45.134772ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 383 + content_length: 387 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":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","placement_group"],"placement_group":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b"}' + 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","1"],"placement_group":"7e146eb5-429d-4b11-9e33-1810d762386f"}' form: {} headers: Content-Type: @@ -594,82 +542,70 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2140 + content_length: 2192 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: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"}}' + body: '{"server": {"id": "2fd0dcab-df5b-4769-b313-cac80c1a6061", "name": "tf-tests-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "13960bfb-50a6-4bd9-9e59-c099944c5a9f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:56.786456+00:00", "modification_date": "2025-10-29T22:54:56.786456+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2140" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2192" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:46 GMT + - Wed, 29 Oct 2025 22:54:57 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ff7a9ff5-aac5-4d90-89f3-3a709cf27823 + - 230b5a00-c85f-47b8-9293-65576202d45d status: 201 Created code: 201 - duration: 1.561037997s + duration: 1.157073459s - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 387 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":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","placement_group","2"],"placement_group":"7e146eb5-429d-4b11-9e33-1810d762386f"}' 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/ba4e57eb-ba72-4e14-94df-2e3be3f747af - 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: 2140 + content_length: 2192 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: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"}}' + body: '{"server": {"id": "db9d0776-54e7-490f-85f8-0f27ccdee8d4", "name": "tf-tests-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.264618+00:00", "modification_date": "2025-10-29T22:54:57.264618+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2140" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2192" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:46 GMT + - Wed, 29 Oct 2025 22:54:57 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c7397c54-31b2-44e2-bfb2-df4291c7c1fb - status: 200 OK - code: 200 - duration: 172.580653ms + - 0e7264e9-6571-4c61-a773-6bb2444659fa + status: 201 Created + code: 201 + duration: 1.305850671s - id: 13 request: proto: HTTP/1.1 @@ -686,7 +622,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 method: GET response: proto: HTTP/2.0 @@ -694,43 +630,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2140 + content_length: 2192 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: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"}}' + body: '{"server": {"id": "2fd0dcab-df5b-4769-b313-cac80c1a6061", "name": "tf-tests-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "13960bfb-50a6-4bd9-9e59-c099944c5a9f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:56.786456+00:00", "modification_date": "2025-10-29T22:54:56.786456+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2140" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2192" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:46 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 482854de-b056-4c28-a09a-a733c0d47e76 + - 10538ef4-df5b-4161-86ad-b2e22b200208 status: 200 OK code: 200 - duration: 136.625391ms + duration: 159.980221ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 383 + content_length: 387 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":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","placement_group"],"placement_group":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b"}' + 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","0"],"placement_group":"7e146eb5-429d-4b11-9e33-1810d762386f"}' form: {} headers: Content-Type: @@ -745,33 +673,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2140 + content_length: 2146 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: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"}}' + body: '{"server": {"id": "21b6dd3e-a037-4905-9d4f-08fb4836216a", "name": "tf-tests-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "54f94f96-c953-44dd-a964-626c96d70bdf", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.345807+00:00", "modification_date": "2025-10-29T22:54:57.345807+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2140" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2146" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:46 GMT + - Wed, 29 Oct 2025 22:54:57 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 82d456bd-f744-48b1-9a52-ca4e6f8784da + - a8eb4fc6-b38d-43a9-a182-e79fb646fff6 status: 201 Created code: 201 - duration: 1.873598058s + duration: 1.396555057s - id: 15 request: proto: HTTP/1.1 @@ -788,7 +708,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d1bd1fde-43e8-45f7-a7cb-268213aee60b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 method: GET response: proto: HTTP/2.0 @@ -796,31 +716,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 2146 uncompressed: false - 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"}' + body: '{"server": {"id": "db9d0776-54e7-490f-85f8-0f27ccdee8d4", "name": "tf-tests-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.264618+00:00", "modification_date": "2025-10-29T22:54:57.264618+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2146" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:46 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5a81d416-179b-4aa5-aa8c-d946fbc0c52f + - 969ee6e1-e27e-48a5-988d-6b885e560b76 status: 200 OK code: 200 - duration: 97.3681ms + duration: 127.352768ms - id: 16 request: proto: HTTP/1.1 @@ -837,7 +749,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 method: GET response: proto: HTTP/2.0 @@ -845,31 +757,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2140 + content_length: 2146 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: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"}}' + body: '{"server": {"id": "2fd0dcab-df5b-4769-b313-cac80c1a6061", "name": "tf-tests-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "13960bfb-50a6-4bd9-9e59-c099944c5a9f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:56.786456+00:00", "modification_date": "2025-10-29T22:54:56.786456+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2140" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2146" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:46 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 11cc62ce-f924-49f8-8cc0-a5ab8359dda8 + - 97030ae5-b499-414f-89c2-64d884f0332f status: 200 OK code: 200 - duration: 144.791227ms + duration: 160.39196ms - id: 17 request: proto: HTTP/1.1 @@ -886,7 +790,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a method: GET response: proto: HTTP/2.0 @@ -894,137 +798,105 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2140 + content_length: 2146 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: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"}}' + body: '{"server": {"id": "21b6dd3e-a037-4905-9d4f-08fb4836216a", "name": "tf-tests-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "54f94f96-c953-44dd-a964-626c96d70bdf", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.345807+00:00", "modification_date": "2025-10-29T22:54:57.345807+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2140" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2146" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e8fb8b86-2d7f-44e8-a3cf-6b4fdeb7c0f9 + - 664bf3e9-f0ec-4169-b4f6-7237a4546f4e status: 200 OK code: 200 - duration: 152.448799ms + duration: 134.500054ms - id: 18 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/ba4e57eb-ba72-4e14-94df-2e3be3f747af/action - method: POST + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/13960bfb-50a6-4bd9-9e59-c099944c5a9f + 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/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"}}' + body: '{"id":"13960bfb-50a6-4bd9-9e59-c099944c5a9f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:56.910641Z", "updated_at":"2025-10-29T22:54:56.910641Z", "references":[{"id":"569f096b-7c02-4465-b2a9-5868d1fa5f77", "product_resource_type":"instance_server", "product_resource_id":"2fd0dcab-df5b-4769-b313-cac80c1a6061", "created_at":"2025-10-29T22:54:56.910641Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5d2f6624-899e-450b-bded-bcc3f6d5e7cc + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9db18be1-c9cd-41ad-8299-1843570e114c - status: 202 Accepted - code: 202 - duration: 282.940545ms + - 1acde451-b6ae-4e70-ae24-45bbf431cc54 + status: 200 OK + code: 200 + duration: 80.012733ms - id: 19 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":"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"}' + 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/db9d0776-54e7-490f-85f8-0f27ccdee8d4 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2140 + content_length: 2192 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: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"}}' + body: '{"server": {"id": "db9d0776-54e7-490f-85f8-0f27ccdee8d4", "name": "tf-tests-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.264618+00:00", "modification_date": "2025-10-29T22:54:57.264618+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2140" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2192" Content-Type: - application/json Date: - - 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 + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - af6a5b63-42e2-4045-a186-01fd7a643a23 - status: 201 Created - code: 201 - duration: 2.233036925s + - a1a4f4b3-3653-41a2-bb20-834bf242aebd + status: 200 OK + code: 200 + duration: 121.707761ms - id: 20 request: proto: HTTP/1.1 @@ -1041,7 +913,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f6ad7e89-76ec-4f88-a2e1-59549f724be0 method: GET response: proto: HTTP/2.0 @@ -1051,29 +923,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - 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"}' + body: '{"id":"f6ad7e89-76ec-4f88-a2e1-59549f724be0", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:56.915862Z", "updated_at":"2025-10-29T22:54:56.915862Z", "references":[{"id":"3b71b4b1-2afc-4563-aa4f-8a23d08f2151", "product_resource_type":"instance_server", "product_resource_id":"db9d0776-54e7-490f-85f8-0f27ccdee8d4", "created_at":"2025-10-29T22:54:56.915862Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9e21386a-0135-47d6-9bed-93b443164933 + - 05383be2-7aca-4458-b58e-657628956a27 status: 200 OK code: 200 - duration: 77.944765ms + duration: 75.871489ms - id: 21 request: proto: HTTP/1.1 @@ -1090,7 +954,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a method: GET response: proto: HTTP/2.0 @@ -1098,31 +962,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2140 + content_length: 2192 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: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"}}' + body: '{"server": {"id": "21b6dd3e-a037-4905-9d4f-08fb4836216a", "name": "tf-tests-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "54f94f96-c953-44dd-a964-626c96d70bdf", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.345807+00:00", "modification_date": "2025-10-29T22:54:57.345807+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2140" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2192" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7673bfc5-1819-4a2e-9046-247cb9b3fece + - 2a9c0fd3-b27c-4fc3-aa82-dab161430059 status: 200 OK code: 200 - duration: 141.851908ms + duration: 140.335675ms - id: 22 request: proto: HTTP/1.1 @@ -1139,7 +995,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54f94f96-c953-44dd-a964-626c96d70bdf method: GET response: proto: HTTP/2.0 @@ -1147,31 +1003,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2162 + 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-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"}}' + body: '{"id":"54f94f96-c953-44dd-a964-626c96d70bdf", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:56.938863Z", "updated_at":"2025-10-29T22:54:56.938863Z", "references":[{"id":"1db4d4f3-c69e-4170-8b9d-4fec0344963c", "product_resource_type":"instance_server", "product_resource_id":"21b6dd3e-a037-4905-9d4f-08fb4836216a", "created_at":"2025-10-29T22:54:56.938863Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "2162" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0e703369-88cb-4df6-b468-7933a53e6dfd + - e80604a1-bcee-43fe-a30d-3f56e08a115b status: 200 OK code: 200 - duration: 143.855795ms + duration: 91.696551ms - id: 23 request: proto: HTTP/1.1 @@ -1190,7 +1038,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/126e051d-5ba0-4e17-bc2a-db8012a1d734/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061/action method: POST response: proto: HTTP/2.0 @@ -1200,80 +1048,68 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "0890b3ca-e692-42c2-b82b-d92c6ae26f74", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061/action", "href_result": "/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061", "started_at": "2025-10-29T22:54:57.958142+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54:58 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7090c45e-26d3-4323-860d-49a5298a2823 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0890b3ca-e692-42c2-b82b-d92c6ae26f74 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1b758c16-31dd-45fe-b217-1bfd1b49e9fb + - aa29eef0-9dee-46fa-954d-d685b9fb241b status: 202 Accepted code: 202 - duration: 284.673765ms + duration: 286.492698ms - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2140 + 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-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"}}' + body: '{"task": {"id": "8f503b86-0e92-4094-bb17-8634c4e26c48", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4/action", "href_result": "/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4", "started_at": "2025-10-29T22:54:58.040932+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "2140" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "357" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54:58 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8f503b86-0e92-4094-bb17-8634c4e26c48 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 56a37aad-143a-499b-a8a5-6038ec6656ee - status: 200 OK - code: 200 - duration: 170.778236ms + - 39ecd0e2-2ce1-489a-bf9a-ba62d8829a18 + status: 202 Accepted + code: 202 + duration: 266.398442ms - id: 25 request: proto: HTTP/1.1 @@ -1290,7 +1126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 method: GET response: proto: HTTP/2.0 @@ -1298,133 +1134,109 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 2168 uncompressed: false - 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"}' + body: '{"server": {"id": "2fd0dcab-df5b-4769-b313-cac80c1a6061", "name": "tf-tests-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "13960bfb-50a6-4bd9-9e59-c099944c5a9f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:56.786456+00:00", "modification_date": "2025-10-29T22:54:57.744629+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2168" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8036d7b8-1791-45e4-97c2-4d989503a865 + - 10d62940-84bd-41a5-b307-52bd8e8874e9 status: 200 OK code: 200 - duration: 74.105128ms + duration: 147.47136ms - id: 26 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/126e051d-5ba0-4e17-bc2a-db8012a1d734 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2162 + 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-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"}}' + body: '{"task": {"id": "99c82cff-7434-4690-8f85-3fca47b1ffbc", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a/action", "href_result": "/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a", "started_at": "2025-10-29T22:54:58.156856+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "2162" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "357" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54:58 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/99c82cff-7434-4690-8f85-3fca47b1ffbc Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 806ee57a-3999-4f49-afb2-6b16c9263d53 - status: 200 OK - code: 200 - duration: 149.793734ms + - 4c162724-3d8c-4dc6-b1dd-fe22578de877 + status: 202 Accepted + code: 202 + duration: 229.227754ms - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2168 uncompressed: false - 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"}}' + body: '{"server": {"id": "db9d0776-54e7-490f-85f8-0f27ccdee8d4", "name": "tf-tests-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.264618+00:00", "modification_date": "2025-10-29T22:54:57.828407+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2168" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/643566ed-60d5-4e25-801e-bdf4d5a9e27b + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 66ea7a59-5a7b-41a2-9df9-6b83f7ab1cc5 - status: 202 Accepted - code: 202 - duration: 255.637902ms + - adddb491-11cb-426b-993a-5239983c4cc1 + status: 200 OK + code: 200 + duration: 146.917975ms - id: 28 request: proto: HTTP/1.1 @@ -1441,7 +1253,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a method: GET response: proto: HTTP/2.0 @@ -1449,31 +1261,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2162 + content_length: 2168 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: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"}}' + body: '{"server": {"id": "21b6dd3e-a037-4905-9d4f-08fb4836216a", "name": "tf-tests-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "54f94f96-c953-44dd-a964-626c96d70bdf", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.345807+00:00", "modification_date": "2025-10-29T22:54:57.976622+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2162" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2168" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:47 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c85374c4-c017-499d-92a2-d7845b429400 + - 34fd05d7-0e8a-4619-8251-f8969a3084f9 status: 200 OK code: 200 - duration: 152.868577ms + duration: 170.046936ms - id: 29 request: proto: HTTP/1.1 @@ -1490,7 +1294,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 method: GET response: proto: HTTP/2.0 @@ -1498,31 +1302,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2296 + content_length: 2348 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: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"}}' + body: '{"server": {"id": "2fd0dcab-df5b-4769-b313-cac80c1a6061", "name": "tf-tests-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "13960bfb-50a6-4bd9-9e59-c099944c5a9f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:56.786456+00:00", "modification_date": "2025-10-29T22:55:01.127361+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2296" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2348" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 480955c9-056f-4358-8962-883c5e846472 + - b5dee1c9-aa01-4e08-a41c-71d0df487d62 status: 200 OK code: 200 - duration: 153.641232ms + duration: 164.585836ms - id: 30 request: proto: HTTP/1.1 @@ -1539,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/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 method: GET response: proto: HTTP/2.0 @@ -1547,31 +1343,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2296 + content_length: 2214 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: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"}}' + body: '{"server": {"id": "db9d0776-54e7-490f-85f8-0f27ccdee8d4", "name": "tf-tests-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.264618+00:00", "modification_date": "2025-10-29T22:54:57.828407+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2296" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2214" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2b077059-85eb-49b0-aec8-592de5391844 + - bd3a5ee1-e5a4-42a8-9e32-4f5ad62d2f27 status: 200 OK code: 200 - duration: 156.917724ms + duration: 143.989531ms - id: 31 request: proto: HTTP/1.1 @@ -1588,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/volumes/d1bd1fde-43e8-45f7-a7cb-268213aee60b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 method: GET response: proto: HTTP/2.0 @@ -1596,31 +1384,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2348 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","type":"not_found"}' + body: '{"server": {"id": "2fd0dcab-df5b-4769-b313-cac80c1a6061", "name": "tf-tests-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "13960bfb-50a6-4bd9-9e59-c099944c5a9f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:56.786456+00:00", "modification_date": "2025-10-29T22:55:01.127361+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2348" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0e45cc17-6bb3-4592-9273-18f45cb0ff77 - status: 404 Not Found - code: 404 - duration: 25.553658ms + - 6715c31b-9bda-467c-a053-780bde106c2d + status: 200 OK + code: 200 + duration: 144.230802ms - id: 32 request: proto: HTTP/1.1 @@ -1637,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/block/v1alpha1/zones/fr-par-1/volumes/d1bd1fde-43e8-45f7-a7cb-268213aee60b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/13960bfb-50a6-4bd9-9e59-c099944c5a9f method: GET response: proto: HTTP/2.0 @@ -1645,31 +1425,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 143 uncompressed: false - 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "13960bfb-50a6-4bd9-9e59-c099944c5a9f"}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0d2b5311-3beb-4f00-bbf2-47e1c2a2078b - status: 200 OK - code: 200 - duration: 93.850051ms + - 1bf37b3b-34b3-49da-9df6-ed7424562fba + status: 404 Not Found + code: 404 + duration: 23.482933ms - id: 33 request: proto: HTTP/1.1 @@ -1686,7 +1458,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a method: GET response: proto: HTTP/2.0 @@ -1694,31 +1466,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2162 + content_length: 2168 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: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"}}' + body: '{"server": {"id": "21b6dd3e-a037-4905-9d4f-08fb4836216a", "name": "tf-tests-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "54f94f96-c953-44dd-a964-626c96d70bdf", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.345807+00:00", "modification_date": "2025-10-29T22:54:57.976622+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2162" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2168" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 17baef5d-7792-4a40-b216-2e53c4f3005a + - e70dddb0-13a2-4400-b615-207bb7eb4652 status: 200 OK code: 200 - duration: 169.058681ms + duration: 144.133109ms - id: 34 request: proto: HTTP/1.1 @@ -1735,7 +1499,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/13960bfb-50a6-4bd9-9e59-c099944c5a9f method: GET response: proto: HTTP/2.0 @@ -1743,31 +1507,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 701 uncompressed: false - body: '{"user_data":[]}' + body: '{"id":"13960bfb-50a6-4bd9-9e59-c099944c5a9f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:56.910641Z", "updated_at":"2025-10-29T22:54:56.910641Z", "references":[{"id":"569f096b-7c02-4465-b2a9-5868d1fa5f77", "product_resource_type":"instance_server", "product_resource_id":"2fd0dcab-df5b-4769-b313-cac80c1a6061", "created_at":"2025-10-29T22:54:56.910641Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e66a5065-b2aa-4ac7-b0b6-457314fb8379 + - fd600d53-327b-4e19-8132-7d403a7f5543 status: 200 OK code: 200 - duration: 89.89113ms + duration: 80.086302ms - id: 35 request: proto: HTTP/1.1 @@ -1784,7 +1540,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061/user_data method: GET response: proto: HTTP/2.0 @@ -1792,35 +1548,23 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 01357e6c-be9d-41b6-b859-7e96dcec7fc0 - X-Total-Count: - - "0" + - 0b1278b5-b769-49ac-beb4-d67cf39a6309 status: 200 OK code: 200 - duration: 102.560317ms + duration: 85.000522ms - id: 36 request: proto: HTTP/1.1 @@ -1837,7 +1581,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061/private_nics method: GET response: proto: HTTP/2.0 @@ -1845,31 +1589,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2162 + 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-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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "2162" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:53 GMT + - Wed, 29 Oct 2025 22:55:03 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3f277b24-a483-4925-9397-ed97e53ea913 + - 03178ccd-d5fd-4f0a-b465-89da677e4160 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 156.219796ms + duration: 102.216205ms - id: 37 request: proto: HTTP/1.1 @@ -1886,7 +1626,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 method: GET response: proto: HTTP/2.0 @@ -1894,31 +1634,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2162 + content_length: 2303 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: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"}}' + body: '{"server": {"id": "db9d0776-54e7-490f-85f8-0f27ccdee8d4", "name": "tf-tests-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.264618+00:00", "modification_date": "2025-10-29T22:55:06.660826+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "146"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2162" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2303" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1d396340-e9f3-4fdc-bc4c-bc9bfc599a1c + - 4c99e6fd-88b6-4f0a-a0b7-2e8b9f33feba status: 200 OK code: 200 - duration: 169.959687ms + duration: 132.999431ms - id: 38 request: proto: HTTP/1.1 @@ -1935,7 +1667,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 method: GET response: proto: HTTP/2.0 @@ -1943,31 +1675,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2162 + content_length: 2349 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: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"}}' + body: '{"server": {"id": "db9d0776-54e7-490f-85f8-0f27ccdee8d4", "name": "tf-tests-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.264618+00:00", "modification_date": "2025-10-29T22:55:06.660826+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "146"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2162" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2349" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 81ced361-7771-4f52-815e-252683df9d64 + - e0d4acc6-ca16-49f4-9f75-703881551f96 status: 200 OK code: 200 - duration: 201.013056ms + duration: 150.990615ms - id: 39 request: proto: HTTP/1.1 @@ -1984,7 +1708,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a method: GET response: proto: HTTP/2.0 @@ -1992,31 +1716,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2265 + content_length: 2349 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: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"}}' + body: '{"server": {"id": "21b6dd3e-a037-4905-9d4f-08fb4836216a", "name": "tf-tests-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "54f94f96-c953-44dd-a964-626c96d70bdf", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.345807+00:00", "modification_date": "2025-10-29T22:55:08.278785+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "125"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2265" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2349" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a9ec9820-7518-4477-8d81-7a09b60cddff + - 8f0e9ffe-acae-4ddc-8b8b-5c832e9306e0 status: 200 OK code: 200 - duration: 138.027389ms + duration: 155.444784ms - id: 40 request: proto: HTTP/1.1 @@ -2033,7 +1749,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f6ad7e89-76ec-4f88-a2e1-59549f724be0 method: GET response: proto: HTTP/2.0 @@ -2041,31 +1757,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2162 + 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-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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0"}' headers: Content-Length: - - "2162" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f61f769b-8186-4d2a-ba4b-15936b52337f - status: 200 OK - code: 200 - duration: 171.423529ms + - 4c397d37-7bfa-44a9-93d1-2be1f078c4e3 + status: 404 Not Found + code: 404 + duration: 31.749903ms - id: 41 request: proto: HTTP/1.1 @@ -2082,7 +1790,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f6ad7e89-76ec-4f88-a2e1-59549f724be0 method: GET response: proto: HTTP/2.0 @@ -2090,31 +1798,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2296 + 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-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"}}' + body: '{"id":"f6ad7e89-76ec-4f88-a2e1-59549f724be0", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:56.915862Z", "updated_at":"2025-10-29T22:54:56.915862Z", "references":[{"id":"3b71b4b1-2afc-4563-aa4f-8a23d08f2151", "product_resource_type":"instance_server", "product_resource_id":"db9d0776-54e7-490f-85f8-0f27ccdee8d4", "created_at":"2025-10-29T22:54:56.915862Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "2296" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d2baf3f7-f19b-4f32-9280-617d56bcdca0 + - 66e191b0-9698-4f43-ad4f-df27a59f845e status: 200 OK code: 200 - duration: 145.143254ms + duration: 94.655907ms - id: 42 request: proto: HTTP/1.1 @@ -2131,7 +1831,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a method: GET response: proto: HTTP/2.0 @@ -2139,31 +1839,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2296 + content_length: 2303 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: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"}}' + body: '{"server": {"id": "21b6dd3e-a037-4905-9d4f-08fb4836216a", "name": "tf-tests-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "54f94f96-c953-44dd-a964-626c96d70bdf", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.345807+00:00", "modification_date": "2025-10-29T22:55:08.278785+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "125"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2296" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2303" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 95dd8ded-f792-454e-9c3a-4cbe3aba4860 + - b19cc8ee-c4ed-43af-bfe3-2c0b2c3e9f8e status: 200 OK code: 200 - duration: 171.464303ms + duration: 142.49098ms - id: 43 request: proto: HTTP/1.1 @@ -2180,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/volumes/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54f94f96-c953-44dd-a964-626c96d70bdf method: GET response: proto: HTTP/2.0 @@ -2190,29 +1882,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "54f94f96-c953-44dd-a964-626c96d70bdf"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5f1cc559-f27a-4a85-b988-942e42de0977 + - 599b27c6-8395-45fa-b201-7a9e43c590cc status: 404 Not Found code: 404 - duration: 27.801825ms + duration: 27.997405ms - id: 44 request: proto: HTTP/1.1 @@ -2229,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/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4/user_data method: GET response: proto: HTTP/2.0 @@ -2237,31 +1921,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 17 uncompressed: false - 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"}' + body: '{"user_data": []}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 70b20759-4cbf-4a56-8e96-c934da4e64ea + - a9b808c6-6a3c-4ea3-893a-f1cc43713ca3 status: 200 OK code: 200 - duration: 80.889158ms + duration: 111.863296ms - id: 45 request: proto: HTTP/1.1 @@ -2278,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/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54f94f96-c953-44dd-a964-626c96d70bdf method: GET response: proto: HTTP/2.0 @@ -2286,31 +1962,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2266 + 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-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"}}' + body: '{"id":"54f94f96-c953-44dd-a964-626c96d70bdf", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:56.938863Z", "updated_at":"2025-10-29T22:54:56.938863Z", "references":[{"id":"1db4d4f3-c69e-4170-8b9d-4fec0344963c", "product_resource_type":"instance_server", "product_resource_id":"21b6dd3e-a037-4905-9d4f-08fb4836216a", "created_at":"2025-10-29T22:54:56.938863Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "2266" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9ecca56d-05cc-43fd-a96a-0b04a61206ad + - 31330043-f458-4691-9fd1-3c759446b2a1 status: 200 OK code: 200 - duration: 142.965302ms + duration: 95.850902ms - id: 46 request: proto: HTTP/1.1 @@ -2327,7 +1995,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4/private_nics method: GET response: proto: HTTP/2.0 @@ -2335,31 +2003,27 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:55:08 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9357cd50-8d51-43a3-825c-d09ce48de315 + - 10d32041-28dc-4f50-ad29-0d718ea0992c + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 104.355026ms + duration: 89.592019ms - id: 47 request: proto: HTTP/1.1 @@ -2376,7 +2040,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a/user_data method: GET response: proto: HTTP/2.0 @@ -2384,35 +2048,23 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 25dae2b3-bbc5-4c1d-9c7f-d4d8abbfc5df - X-Total-Count: - - "0" + - 8b93cc36-72de-4dc1-9ea3-5d87f3fcbd90 status: 200 OK code: 200 - duration: 93.933059ms + duration: 97.773959ms - id: 48 request: proto: HTTP/1.1 @@ -2429,7 +2081,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a/private_nics method: GET response: proto: HTTP/2.0 @@ -2437,31 +2089,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2297 + 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-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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "2297" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0dfeac73-c601-4574-b29c-5e6a66b7ffc4 + - 996fb457-72ed-4e1c-876f-b5f8079e5303 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 155.683488ms + duration: 100.067348ms - id: 49 request: proto: HTTP/1.1 @@ -2478,7 +2126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a method: GET response: proto: HTTP/2.0 @@ -2486,31 +2134,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2297 + content_length: 2303 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: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"}}' + body: '{"server": {"id": "21b6dd3e-a037-4905-9d4f-08fb4836216a", "name": "tf-tests-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "54f94f96-c953-44dd-a964-626c96d70bdf", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.345807+00:00", "modification_date": "2025-10-29T22:55:08.278785+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "125"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2297" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2303" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 64ac90c4-7a62-4525-9748-a2b28df2ed40 + - 5efd9dc7-97ca-44cc-b6f8-d87c9dcf5ee8 status: 200 OK code: 200 - duration: 142.948035ms + duration: 157.407054ms - id: 50 request: proto: HTTP/1.1 @@ -2527,7 +2167,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 method: GET response: proto: HTTP/2.0 @@ -2535,31 +2175,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2348 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","type":"not_found"}' + body: '{"server": {"id": "2fd0dcab-df5b-4769-b313-cac80c1a6061", "name": "tf-tests-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "13960bfb-50a6-4bd9-9e59-c099944c5a9f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:56.786456+00:00", "modification_date": "2025-10-29T22:55:01.127361+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2348" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b93af08f-7cd2-451a-be88-5528af7f3212 - status: 404 Not Found - code: 404 - duration: 35.181661ms + - e73d0b4d-de22-49c4-9104-d8db1caf740a + status: 200 OK + code: 200 + duration: 143.034607ms - id: 51 request: proto: HTTP/1.1 @@ -2576,7 +2208,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 method: GET response: proto: HTTP/2.0 @@ -2584,31 +2216,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 2349 uncompressed: false - 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"}' + body: '{"server": {"id": "db9d0776-54e7-490f-85f8-0f27ccdee8d4", "name": "tf-tests-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.264618+00:00", "modification_date": "2025-10-29T22:55:06.660826+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "146"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2349" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ff5851be-1ceb-4264-8d9a-b892d5d7c75d + - e1f9ffd6-5674-4efc-a0d0-4214aa8d96ae status: 200 OK code: 200 - duration: 74.418622ms + duration: 124.183837ms - id: 52 request: proto: HTTP/1.1 @@ -2625,7 +2249,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7e146eb5-429d-4b11-9e33-1810d762386f method: GET response: proto: HTTP/2.0 @@ -2633,31 +2257,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 326 uncompressed: false - body: '{"user_data":[]}' + body: '{"placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "326" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 26003f84-dd3a-41e3-b021-8318aac09f91 + - c8dc5a5d-ce10-47cf-b0e5-06d9c0f19383 status: 200 OK code: 200 - duration: 113.506075ms + duration: 95.861663ms - id: 53 request: proto: HTTP/1.1 @@ -2674,7 +2290,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7e146eb5-429d-4b11-9e33-1810d762386f method: GET response: proto: HTTP/2.0 @@ -2682,35 +2298,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 326 uncompressed: false - body: '{"private_nics":[]}' + body: '{"placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "326" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2cc76966-689d-4ecc-99f4-b8693dffc4c0 - X-Total-Count: - - "0" + - 91ac4a6d-a8be-4e6c-9be1-f312496445fa status: 200 OK code: 200 - duration: 90.382909ms + duration: 99.273033ms - id: 54 request: proto: HTTP/1.1 @@ -2727,7 +2331,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 method: GET response: proto: HTTP/2.0 @@ -2735,31 +2339,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2297 + content_length: 2349 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: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"}}' + body: '{"server": {"id": "db9d0776-54e7-490f-85f8-0f27ccdee8d4", "name": "tf-tests-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.264618+00:00", "modification_date": "2025-10-29T22:55:06.660826+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "146"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2297" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2349" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c3c5e1bb-b982-43ec-a406-c3b78a82c1a7 + - ba88125e-6104-495f-b2f2-4472ffcadcff status: 200 OK code: 200 - duration: 187.115792ms + duration: 152.778679ms - id: 55 request: proto: HTTP/1.1 @@ -2776,7 +2372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 method: GET response: proto: HTTP/2.0 @@ -2784,31 +2380,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2296 + content_length: 2348 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: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"}}' + body: '{"server": {"id": "2fd0dcab-df5b-4769-b313-cac80c1a6061", "name": "tf-tests-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "13960bfb-50a6-4bd9-9e59-c099944c5a9f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:56.786456+00:00", "modification_date": "2025-10-29T22:55:01.127361+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2296" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2348" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6cfb3ea7-a0c4-4b63-b801-b457a374b930 + - 5d8bdae7-8e4c-4d49-ae30-1bfea58ab789 status: 200 OK code: 200 - duration: 159.198959ms + duration: 155.398328ms - id: 56 request: proto: HTTP/1.1 @@ -2825,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/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a method: GET response: proto: HTTP/2.0 @@ -2833,31 +2421,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2296 + content_length: 2303 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: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"}}' + body: '{"server": {"id": "21b6dd3e-a037-4905-9d4f-08fb4836216a", "name": "tf-tests-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "54f94f96-c953-44dd-a964-626c96d70bdf", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.345807+00:00", "modification_date": "2025-10-29T22:55:08.278785+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "125"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "7e146eb5-429d-4b11-9e33-1810d762386f", "name": "tf-pg-nervous-bartik", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2296" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2303" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ee8a84d9-81d1-4271-959e-b613450ac9b2 + - 6173e42a-509c-472a-81a5-7fa9122fab24 status: 200 OK code: 200 - duration: 203.794106ms + duration: 175.326935ms - id: 57 request: proto: HTTP/1.1 @@ -2874,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/placement_groups/0a5fb281-cbad-4311-9b89-6ebb1fac6f4b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f6ad7e89-76ec-4f88-a2e1-59549f724be0 method: GET response: proto: HTTP/2.0 @@ -2882,31 +2462,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 143 uncompressed: false - 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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0"}' headers: Content-Length: - - "325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2838efff-8600-4f88-a6e8-1c7d2ac1f2d4 - status: 200 OK - code: 200 - duration: 104.661675ms + - 4b1328e9-9d01-425c-81b2-de4d84bb4732 + status: 404 Not Found + code: 404 + duration: 24.648203ms - id: 58 request: proto: HTTP/1.1 @@ -2923,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/placement_groups/0a5fb281-cbad-4311-9b89-6ebb1fac6f4b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/13960bfb-50a6-4bd9-9e59-c099944c5a9f method: GET response: proto: HTTP/2.0 @@ -2931,31 +2503,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 143 uncompressed: false - 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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "13960bfb-50a6-4bd9-9e59-c099944c5a9f"}' headers: Content-Length: - - "325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d41eca19-5fa4-4c40-a517-7fd0b2d78cb7 - status: 200 OK - code: 200 - duration: 120.864159ms + - d2fcdac8-631a-405f-8a18-140e1c206602 + status: 404 Not Found + code: 404 + duration: 32.305091ms - id: 59 request: proto: HTTP/1.1 @@ -2972,7 +2536,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54f94f96-c953-44dd-a964-626c96d70bdf method: GET response: proto: HTTP/2.0 @@ -2980,31 +2544,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2297 + 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-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"}}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "54f94f96-c953-44dd-a964-626c96d70bdf"}' headers: Content-Length: - - "2297" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 469ba0cb-49ae-48f5-a56d-5d5654dea832 - status: 200 OK - code: 200 - duration: 153.774121ms + - 513bc845-bc94-45cb-8d81-f557006e8f0c + status: 404 Not Found + code: 404 + duration: 30.976086ms - id: 60 request: proto: HTTP/1.1 @@ -3021,7 +2577,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f6ad7e89-76ec-4f88-a2e1-59549f724be0 method: GET response: proto: HTTP/2.0 @@ -3029,31 +2585,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2296 + 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-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"}}' + body: '{"id":"f6ad7e89-76ec-4f88-a2e1-59549f724be0", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:56.915862Z", "updated_at":"2025-10-29T22:54:56.915862Z", "references":[{"id":"3b71b4b1-2afc-4563-aa4f-8a23d08f2151", "product_resource_type":"instance_server", "product_resource_id":"db9d0776-54e7-490f-85f8-0f27ccdee8d4", "created_at":"2025-10-29T22:54:56.915862Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "2296" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b0740765-3d65-4efb-97c0-09490ef6624b + - 4ec85278-f72a-439a-9a99-9c02070d28fa status: 200 OK code: 200 - duration: 166.782497ms + duration: 82.035708ms - id: 61 request: proto: HTTP/1.1 @@ -3070,7 +2618,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/13960bfb-50a6-4bd9-9e59-c099944c5a9f method: GET response: proto: HTTP/2.0 @@ -3078,31 +2626,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2296 + 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-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"}}' + body: '{"id":"13960bfb-50a6-4bd9-9e59-c099944c5a9f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:56.910641Z", "updated_at":"2025-10-29T22:54:56.910641Z", "references":[{"id":"569f096b-7c02-4465-b2a9-5868d1fa5f77", "product_resource_type":"instance_server", "product_resource_id":"2fd0dcab-df5b-4769-b313-cac80c1a6061", "created_at":"2025-10-29T22:54:56.910641Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "2296" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 72976ea6-425b-4475-a5e1-0e7d4edabb82 + - d0f390c0-6f70-4021-ab3d-dd37b531e001 status: 200 OK code: 200 - duration: 168.564146ms + duration: 116.139814ms - id: 62 request: proto: HTTP/1.1 @@ -3119,7 +2659,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54f94f96-c953-44dd-a964-626c96d70bdf method: GET response: proto: HTTP/2.0 @@ -3127,31 +2667,23 @@ 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":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","type":"not_found"}' + body: '{"id":"54f94f96-c953-44dd-a964-626c96d70bdf", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:56.938863Z", "updated_at":"2025-10-29T22:54:56.938863Z", "references":[{"id":"1db4d4f3-c69e-4170-8b9d-4fec0344963c", "product_resource_type":"instance_server", "product_resource_id":"21b6dd3e-a037-4905-9d4f-08fb4836216a", "created_at":"2025-10-29T22:54:56.938863Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "701" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d23ef003-5e4c-4065-a3d4-c7e6acb5b1ad - status: 404 Not Found - code: 404 - duration: 23.64315ms + - 1418e8ea-5478-4da7-9452-0e14f0008e20 + status: 200 OK + code: 200 + duration: 98.327234ms - id: 63 request: proto: HTTP/1.1 @@ -3168,7 +2700,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d1bd1fde-43e8-45f7-a7cb-268213aee60b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4/user_data method: GET response: proto: HTTP/2.0 @@ -3176,31 +2708,23 @@ 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":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","type":"not_found"}' + body: '{"user_data": []}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 417561c3-9f6e-4467-adf0-28663596ebe4 - status: 404 Not Found - code: 404 - duration: 25.098709ms + - a3cb0917-aa4d-4eb9-afec-c929362b0c02 + status: 200 OK + code: 200 + duration: 97.731911ms - id: 64 request: proto: HTTP/1.1 @@ -3217,7 +2741,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a/user_data method: GET response: proto: HTTP/2.0 @@ -3225,31 +2749,23 @@ 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":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","type":"not_found"}' + body: '{"user_data": []}' headers: Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d2552ce2-ca41-46b8-8ad5-2872f83e9618 - status: 404 Not Found - code: 404 - duration: 29.015521ms + - f61b2da1-8d86-4b39-82ef-c86db6b3b2e5 + status: 200 OK + code: 200 + duration: 104.869428ms - id: 65 request: proto: HTTP/1.1 @@ -3266,7 +2782,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061/user_data method: GET response: proto: HTTP/2.0 @@ -3274,31 +2790,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 17 uncompressed: false - 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"}' + body: '{"user_data": []}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:15 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3f2ddeee-29d1-48ac-9e22-4b7c034c69ab + - 18ab644c-3ebf-4f47-8a44-cb7b41ae3e24 status: 200 OK code: 200 - duration: 78.003163ms + duration: 109.841596ms - id: 66 request: proto: HTTP/1.1 @@ -3315,7 +2823,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d1bd1fde-43e8-45f7-a7cb-268213aee60b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4/private_nics method: GET response: proto: HTTP/2.0 @@ -3323,31 +2831,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - 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"}' + body: '{"private_nics": []}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:15 GMT + - Wed, 29 Oct 2025 22:55:10 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 90162c97-d930-47aa-a07c-054a4d0fc898 + - bbd905b4-1cf8-4c7e-a954-0f45ed682b7b + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 89.580817ms + duration: 113.304873ms - id: 67 request: proto: HTTP/1.1 @@ -3364,7 +2868,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061/private_nics method: GET response: proto: HTTP/2.0 @@ -3372,31 +2876,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - 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"}' + body: '{"private_nics": []}' headers: Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:15 GMT + - Wed, 29 Oct 2025 22:55:10 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8537d8b7-30ae-48a8-9527-26f4be1f7748 + - d9a53ae1-84ee-49a3-b396-c00467d81bf1 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 90.285627ms + duration: 100.030329ms - id: 68 request: proto: HTTP/1.1 @@ -3413,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/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a/private_nics method: GET response: proto: HTTP/2.0 @@ -3421,307 +2921,46 @@ 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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:15 GMT + - Wed, 29 Oct 2025 22:55:10 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4b2e5fa5-76cf-44f3-945e-f3a7316fa72f + - 4df8834f-4c10-4a69-9196-e1368f011281 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 100.582139ms + duration: 111.893333ms - id: 69 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/ba4e57eb-ba72-4e14-94df-2e3be3f747af/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: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: - - 9bc6770b-c7ee-49f4-bcee-da79e5421005 - status: 200 OK - code: 200 - duration: 96.472585ms - - 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/126e051d-5ba0-4e17-bc2a-db8012a1d734/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: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: - - 56b1e620-330a-4a9b-be4c-d1b95b486f1a - status: 200 OK - code: 200 - duration: 89.80163ms - - 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/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3/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: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: - - 7e6bd7c5-2253-40c8-a0bb-d0c52895cefd - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 116.224172ms - - 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/ba4e57eb-ba72-4e14-94df-2e3be3f747af/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: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: - - c66b0eff-d471-43a5-aa16-587df5276d5e - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 97.67521ms - - 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/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: 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: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: - - 81291570-6eb1-4e86-af9f-facc4ad09930 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 100.389868ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 24 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a method: PATCH response: proto: HTTP/2.0 @@ -3729,32 +2968,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1996 + content_length: 2047 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: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"}}' + body: '{"server": {"id": "21b6dd3e-a037-4905-9d4f-08fb4836216a", "name": "tf-tests-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "54f94f96-c953-44dd-a964-626c96d70bdf", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.345807+00:00", "modification_date": "2025-10-29T22:55:10.956010+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "125"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2047" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ae613e71-810b-4021-9b60-2faba3811959 + - 593126f3-1a1a-4adb-a5d2-137d8d662d23 status: 200 OK code: 200 - duration: 229.044724ms - - id: 75 + duration: 203.772859ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3772,7 +3003,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/ba4e57eb-ba72-4e14-94df-2e3be3f747af + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 method: PATCH response: proto: HTTP/2.0 @@ -3780,32 +3011,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1995 + content_length: 2000 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: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"}}' + body: '{"server": {"id": "2fd0dcab-df5b-4769-b313-cac80c1a6061", "name": "tf-tests-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "13960bfb-50a6-4bd9-9e59-c099944c5a9f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:56.786456+00:00", "modification_date": "2025-10-29T22:55:10.952241+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1995" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2000" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 23d965d7-2d38-479a-81ed-1a41417dec77 + - c403e0a9-860a-48ac-bd44-dd4bfb7ee969 status: 200 OK code: 200 - duration: 256.648729ms - - id: 76 + duration: 223.058634ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3823,7 +3046,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/126e051d-5ba0-4e17-bc2a-db8012a1d734 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 method: PATCH response: proto: HTTP/2.0 @@ -3831,32 +3054,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1995 + content_length: 2047 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: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"}}' + body: '{"server": {"id": "db9d0776-54e7-490f-85f8-0f27ccdee8d4", "name": "tf-tests-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.264618+00:00", "modification_date": "2025-10-29T22:55:10.965174+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "146"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1995" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2047" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 55c5b6d4-735a-41aa-bc92-366311feba04 + - 604136e2-0311-464f-a9cf-7544b21e9a09 status: 200 OK code: 200 - duration: 267.47808ms - - id: 77 + duration: 319.898508ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3872,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/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a method: GET response: proto: HTTP/2.0 @@ -3880,32 +3095,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1996 + content_length: 2001 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: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"}}' + body: '{"server": {"id": "21b6dd3e-a037-4905-9d4f-08fb4836216a", "name": "tf-tests-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "54f94f96-c953-44dd-a964-626c96d70bdf", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.345807+00:00", "modification_date": "2025-10-29T22:55:10.956010+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "125"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2001" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 68d07c62-d2bc-49bf-9d4b-ffeb9e256899 + - 408913b4-bc03-40c2-914f-cba40825ad8b status: 200 OK code: 200 - duration: 147.99558ms - - id: 78 + duration: 153.052261ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3921,7 +3128,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 method: GET response: proto: HTTP/2.0 @@ -3929,32 +3136,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1995 + content_length: 2000 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: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"}}' + body: '{"server": {"id": "2fd0dcab-df5b-4769-b313-cac80c1a6061", "name": "tf-tests-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "13960bfb-50a6-4bd9-9e59-c099944c5a9f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:56.786456+00:00", "modification_date": "2025-10-29T22:55:10.952241+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1995" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2000" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7bec7483-ab97-48c7-8e43-cefea7664215 + - 470937be-f757-4494-879a-211e6d82358d status: 200 OK code: 200 - duration: 135.042899ms - - id: 79 + duration: 139.882864ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3970,7 +3169,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 method: GET response: proto: HTTP/2.0 @@ -3978,32 +3177,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1995 + content_length: 2047 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: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"}}' + body: '{"server": {"id": "db9d0776-54e7-490f-85f8-0f27ccdee8d4", "name": "tf-tests-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.264618+00:00", "modification_date": "2025-10-29T22:55:10.965174+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "146"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1995" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2047" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f36e6fe0-80e2-4156-af66-ad7460878796 + - 5b430a3d-a4b0-4668-898e-8102c66b4ca6 status: 200 OK code: 200 - duration: 152.655035ms - - id: 80 + duration: 135.255922ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -4019,7 +3210,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 method: GET response: proto: HTTP/2.0 @@ -4027,32 +3218,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1996 + content_length: 2046 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: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"}}' + body: '{"server": {"id": "2fd0dcab-df5b-4769-b313-cac80c1a6061", "name": "tf-tests-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "13960bfb-50a6-4bd9-9e59-c099944c5a9f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:56.786456+00:00", "modification_date": "2025-10-29T22:55:10.952241+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2046" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 36d96c77-9a43-41ec-a41b-027bf9ede5aa + - e291560f-a2c7-4602-8ae9-aec70cdda14a status: 200 OK code: 200 - duration: 270.554709ms - - id: 81 + duration: 131.0142ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -4068,7 +3251,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a method: GET response: proto: HTTP/2.0 @@ -4076,32 +3259,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1995 + content_length: 2001 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: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"}}' + body: '{"server": {"id": "21b6dd3e-a037-4905-9d4f-08fb4836216a", "name": "tf-tests-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "54f94f96-c953-44dd-a964-626c96d70bdf", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.345807+00:00", "modification_date": "2025-10-29T22:55:10.956010+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "125"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1995" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2001" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 83bd8c2d-7cff-46c9-86d9-d4fe169b3678 + - 039e3064-cd57-4dfc-8818-7923c94218e1 status: 200 OK code: 200 - duration: 238.902854ms - - id: 82 + duration: 158.347634ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -4117,7 +3292,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 method: GET response: proto: HTTP/2.0 @@ -4125,32 +3300,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1995 + content_length: 2001 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: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"}}' + body: '{"server": {"id": "db9d0776-54e7-490f-85f8-0f27ccdee8d4", "name": "tf-tests-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.264618+00:00", "modification_date": "2025-10-29T22:55:10.965174+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "146"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1995" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2001" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f390167d-f064-42fd-9118-296659ef8ecf + - 87f8020c-c147-4dda-8e02-666ddfa2128f status: 200 OK code: 200 - duration: 245.321436ms - - id: 83 + duration: 167.186122ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -4168,7 +3335,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/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061/action method: POST response: proto: HTTP/2.0 @@ -4178,32 +3345,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "eaffcf1f-1a25-411c-bcbe-7141e6dde133", "description": "server_terminate", "status": "pending", "href_from": "/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061/action", "href_result": "/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061", "started_at": "2025-10-29T22:55:11.637766+00:00", "terminated_at": null, "progress": 0, "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:16 GMT + - Wed, 29 Oct 2025 22:55:11 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a74331a9-bc42-4237-a55f-3393f8221657 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/eaffcf1f-1a25-411c-bcbe-7141e6dde133 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e410a3b-2030-4b96-a164-324ddb1472b9 + - a881bfda-69ee-422b-b26f-ca8416c5255f status: 202 Accepted code: 202 - duration: 248.053868ms - - id: 84 + duration: 284.400085ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -4221,7 +3380,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/126e051d-5ba0-4e17-bc2a-db8012a1d734/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a/action method: POST response: proto: HTTP/2.0 @@ -4231,32 +3390,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "ed650bf4-aee6-4f25-8746-77e1422f2737", "description": "server_terminate", "status": "pending", "href_from": "/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a/action", "href_result": "/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a", "started_at": "2025-10-29T22:55:11.679874+00:00", "terminated_at": null, "progress": 0, "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:16 GMT + - Wed, 29 Oct 2025 22:55:11 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9e896ef2-eb08-4646-86b1-495680d27030 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ed650bf4-aee6-4f25-8746-77e1422f2737 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 02febcb1-0663-45f8-ba30-734e3928c333 + - 198f8c6d-aa2b-4596-9ed1-e2ee1f937089 status: 202 Accepted code: 202 - duration: 275.91675ms - - id: 85 + duration: 293.95352ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -4274,7 +3425,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/ba4e57eb-ba72-4e14-94df-2e3be3f747af/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4/action method: POST response: proto: HTTP/2.0 @@ -4284,32 +3435,24 @@ interactions: trailer: {} content_length: 353 uncompressed: false - 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"}}' + body: '{"task": {"id": "997921f8-b4a3-46ab-8f2a-6a8d4ebce637", "description": "server_terminate", "status": "pending", "href_from": "/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4/action", "href_result": "/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4", "started_at": "2025-10-29T22:55:11.787064+00:00", "terminated_at": null, "progress": 0, "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:16 GMT + - Wed, 29 Oct 2025 22:55:11 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/16481921-4ca5-4a26-9c91-5f901c4678ee + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/997921f8-b4a3-46ab-8f2a-6a8d4ebce637 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0a5f23a6-aa57-4ea8-834a-1bd33cdef1b2 + - b40de2bf-cdd9-4cdf-95b8-06409a0859a6 status: 202 Accepted code: 202 - duration: 282.943242ms - - id: 86 + duration: 304.544646ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -4325,7 +3468,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 method: GET response: proto: HTTP/2.0 @@ -4333,32 +3476,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1959 + content_length: 1963 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: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"}}' + body: '{"server": {"id": "2fd0dcab-df5b-4769-b313-cac80c1a6061", "name": "tf-tests-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "13960bfb-50a6-4bd9-9e59-c099944c5a9f", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:9f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:56.786456+00:00", "modification_date": "2025-10-29T22:55:11.426206+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "901", "node_id": "86"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1959" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1963" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b6bb4aba-6827-4bff-9579-c938e1ee1c42 + - 440edc7b-a55e-479b-ba19-76bbdda8d596 status: 200 OK code: 200 - duration: 136.629444ms - - id: 87 + duration: 158.041361ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4374,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/126e051d-5ba0-4e17-bc2a-db8012a1d734 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a method: GET response: proto: HTTP/2.0 @@ -4382,32 +3517,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1958 + content_length: 2010 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: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"}}' + body: '{"server": {"id": "21b6dd3e-a037-4905-9d4f-08fb4836216a", "name": "tf-tests-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "54f94f96-c953-44dd-a964-626c96d70bdf", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.345807+00:00", "modification_date": "2025-10-29T22:55:11.438153+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "125"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1958" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2010" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 147adc94-e85a-4c13-94b4-61fbb4bd17ea + - f60ea21c-f0c4-42c3-8ba9-dd67f294b4e4 status: 200 OK code: 200 - duration: 127.819819ms - - id: 88 + duration: 146.08929ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4423,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/ba4e57eb-ba72-4e14-94df-2e3be3f747af + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 method: GET response: proto: HTTP/2.0 @@ -4431,32 +3558,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1958 + 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-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"}}' + body: '{"server": {"id": "db9d0776-54e7-490f-85f8-0f27ccdee8d4", "name": "tf-tests-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-tests-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:57.264618+00:00", "modification_date": "2025-10-29T22:55:11.544860+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "501", "node_id": "146"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1958" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1964" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:16 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4f1b1447-c09a-415c-9716-d07889a1c56c + - cf5783b4-8c21-4db1-9bdf-c843ebe4cfbb status: 200 OK code: 200 - duration: 155.650581ms - - id: 89 + duration: 148.981829ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4472,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/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 method: GET response: proto: HTTP/2.0 @@ -4482,30 +3601,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "2fd0dcab-df5b-4769-b313-cac80c1a6061"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bb529f7f-0686-4efb-8fad-5bfc0d6edd84 + - dc592919-49f5-4e46-a7db-b1a1c3b681ad status: 404 Not Found code: 404 - duration: 47.537004ms - - id: 90 + duration: 50.053331ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4521,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/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a method: GET response: proto: HTTP/2.0 @@ -4531,30 +3642,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "21b6dd3e-a037-4905-9d4f-08fb4836216a"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c24ea024-2c02-47d0-a158-e189836e8dbb + - 441a5f04-79c8-434e-980d-a41bac9f6340 status: 404 Not Found code: 404 - duration: 27.044739ms - - id: 91 + duration: 41.430697ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4570,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/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/13960bfb-50a6-4bd9-9e59-c099944c5a9f method: GET response: proto: HTTP/2.0 @@ -4580,30 +3683,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "13960bfb-50a6-4bd9-9e59-c099944c5a9f"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:21 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 45b14700-cd4b-40a6-b36f-4c71c08141ed + - 530c5b93-f6ab-45ba-870f-f925a9eab0be status: 404 Not Found code: 404 - duration: 57.846811ms - - id: 92 + duration: 24.019357ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4619,7 +3714,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54f94f96-c953-44dd-a964-626c96d70bdf method: GET response: proto: HTTP/2.0 @@ -4629,30 +3724,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "54f94f96-c953-44dd-a964-626c96d70bdf"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 654590ea-b691-4d34-9ac5-c7b89aab2b4d + - 3cc8e85c-7ba9-4f9c-9254-5bb5b864d10a status: 404 Not Found code: 404 - duration: 29.98952ms - - id: 93 + duration: 27.191489ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4668,7 +3755,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/13960bfb-50a6-4bd9-9e59-c099944c5a9f method: GET response: proto: HTTP/2.0 @@ -4678,30 +3765,22 @@ interactions: trailer: {} content_length: 494 uncompressed: false - 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"}' + body: '{"id":"13960bfb-50a6-4bd9-9e59-c099944c5a9f", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:56.910641Z", "updated_at":"2025-10-29T22:55:13.576554Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:13.576554Z", "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:04:22 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 77057e71-7450-4670-a132-54001f78b69a + - 56d57202-b619-49fa-93f4-03ed8a87d21f status: 200 OK code: 200 - duration: 92.020345ms - - id: 94 + duration: 75.850884ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4717,7 +3796,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 method: GET response: proto: HTTP/2.0 @@ -4725,32 +3804,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 494 + content_length: 143 uncompressed: false - 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"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "db9d0776-54e7-490f-85f8-0f27ccdee8d4"}' headers: Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9b6a21bd-a25f-48b1-bb4b-84cf7ffb2c97 - status: 200 OK - code: 200 - duration: 75.568654ms - - id: 95 + - ba3c6382-f0fc-48b0-b9fb-d830f2c0f965 + status: 404 Not Found + code: 404 + duration: 49.802913ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4766,7 +3837,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54f94f96-c953-44dd-a964-626c96d70bdf method: GET response: proto: HTTP/2.0 @@ -4774,32 +3845,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1958 + content_length: 494 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"}}' + body: '{"id":"54f94f96-c953-44dd-a964-626c96d70bdf", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:56.938863Z", "updated_at":"2025-10-29T22:55:13.533038Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:13.533038Z", "zone":"fr-par-1"}' headers: Content-Length: - - "1958" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "494" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ccfa5219-412c-4eff-8072-7f2eef8f9f59 + - db74088a-9e6c-48df-b6c5-394f2e502047 status: 200 OK code: 200 - duration: 136.758873ms - - id: 96 + duration: 104.408588ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4815,38 +3878,32 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f6ad7e89-76ec-4f88-a2e1-59549f724be0 + 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: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f6ad7e89-76ec-4f88-a2e1-59549f724be0"}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "143" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:22 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1bb412ae-bd44-495a-b4e9-1ed0b5b4f6f1 - status: 204 No Content - code: 204 - duration: 141.470235ms - - id: 97 + - cbac26f6-79ef-481f-a34b-89cfee417db8 + status: 404 Not Found + code: 404 + duration: 34.331261ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4862,7 +3919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/13960bfb-50a6-4bd9-9e59-c099944c5a9f method: DELETE response: proto: HTTP/2.0 @@ -4874,26 +3931,18 @@ interactions: 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 + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9cd0c45c-1eef-4c88-924a-368e8e377710 + - 0c6888cd-4ccc-42b7-931b-9c565e03bd79 status: 204 No Content code: 204 - duration: 178.124098ms - - id: 98 + duration: 167.432576ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4909,7 +3958,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f6ad7e89-76ec-4f88-a2e1-59549f724be0 method: GET response: proto: HTTP/2.0 @@ -4917,32 +3966,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1958 + content_length: 494 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"}}' + body: '{"id":"f6ad7e89-76ec-4f88-a2e1-59549f724be0", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:54:56.915862Z", "updated_at":"2025-10-29T22:55:13.488822Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:13.488822Z", "zone":"fr-par-1"}' headers: Content-Length: - - "1958" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "494" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:27 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 479fca74-d63b-4302-93d6-a7062db0aee7 + - 69a43a68-14d9-467e-85d4-bf9002f2f077 status: 200 OK code: 200 - duration: 150.259768ms - - id: 99 + duration: 118.92817ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4958,138 +3999,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/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54f94f96-c953-44dd-a964-626c96d70bdf + method: DELETE 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":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","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: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: - - 1ea35589-da4f-4f65-b36f-be3e8a1c8f5d - status: 404 Not Found - code: 404 - duration: 60.930909ms - - 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/d1bd1fde-43e8-45f7-a7cb-268213aee60b - 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":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","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: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: - - 555e289a-d868-491a-80d2-f438a5db0424 - status: 404 Not Found - code: 404 - duration: 27.820135ms - - 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/d1bd1fde-43e8-45f7-a7cb-268213aee60b - 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: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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 46ec8efc-335c-4d72-9623-5ee06662700f - status: 200 OK - code: 200 - duration: 79.074161ms - - id: 102 + - 423bedbd-0db5-49f0-9a32-cb1697a69257 + status: 204 No Content + code: 204 + duration: 178.671813ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -5105,7 +4038,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d1bd1fde-43e8-45f7-a7cb-268213aee60b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f6ad7e89-76ec-4f88-a2e1-59549f724be0 method: DELETE response: proto: HTTP/2.0 @@ -5117,26 +4050,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f4a45fb9-8c56-4b88-b61f-171ccf4a1d54 + - e4190989-27b9-491a-a875-7057ec8aa632 status: 204 No Content code: 204 - duration: 166.042513ms - - id: 103 + duration: 158.48829ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -5152,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/placement_groups/0a5fb281-cbad-4311-9b89-6ebb1fac6f4b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7e146eb5-429d-4b11-9e33-1810d762386f method: DELETE response: proto: HTTP/2.0 @@ -5164,26 +4089,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8276f1e6-9e21-48fd-8bc1-70e0f6bcf049 + - af2e88bb-160c-4747-bcb4-16ac908f7cef status: 204 No Content code: 204 - duration: 191.500119ms - - id: 104 + duration: 171.470176ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -5199,7 +4116,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a method: GET response: proto: HTTP/2.0 @@ -5209,30 +4126,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "21b6dd3e-a037-4905-9d4f-08fb4836216a"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8ef0b36e-0998-45cc-8b25-6f12f399965d + - 04762ae3-c374-48b2-822c-6c62935c0359 status: 404 Not Found code: 404 - duration: 52.960957ms - - id: 105 + duration: 37.696414ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -5248,7 +4157,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 method: GET response: proto: HTTP/2.0 @@ -5258,30 +4167,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "2fd0dcab-df5b-4769-b313-cac80c1a6061"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 668313a8-3552-4042-8fad-e03b0fe5210c + - ef6628bb-876f-43c3-aed0-cb814cc9c1ba status: 404 Not Found code: 404 - duration: 42.304499ms - - id: 106 + duration: 44.270277ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -5297,7 +4198,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 method: GET response: proto: HTTP/2.0 @@ -5307,26 +4208,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "db9d0776-54e7-490f-85f8-0f27ccdee8d4"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:32 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0906cb66-b989-4239-8c8e-6edc94053ab0 + - 5ddf8d98-131e-400b-9da1-0f0be26d3a75 status: 404 Not Found code: 404 - duration: 55.75731ms + duration: 37.280546ms 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 212d5003a..4daf72e3f 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":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}' + body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -29,31 +29,23 @@ interactions: trailer: {} content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.251.137","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:33 GMT + - Wed, 29 Oct 2025 22:55:04 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/305be072-7ba7-4e84-b71c-43e72908b092 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 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: - - 663473f7-9797-43a4-8fc0-b5e1b26e8d4e + - c272c518-acd1-4326-9dfb-c1e4d53aa01d status: 201 Created code: 201 - duration: 349.49607ms + duration: 2.617748513s - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/305be072-7ba7-4e84-b71c-43e72908b092 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -80,29 +72,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.251.137","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:33 GMT + - Wed, 29 Oct 2025 22:55: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: - - 55891b1c-bee8-4886-a148-c18eef910276 + - 5f43b8c1-7fb8-422f-a1c1-fa951ccaab5d status: 200 OK code: 200 - duration: 75.575569ms + duration: 112.035005ms - id: 2 request: proto: HTTP/1.1 @@ -115,7 +99,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -127,35 +113,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:33 GMT + - Wed, 29 Oct 2025 22:55:04 GMT Link: - ; rel="next",; 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: - - 47b88be9-cfcf-49bb-8415-f7382480ac1a + - 2b588217-aa9c-4aff-9c53-9b7e22a7d75e X-Total-Count: - "68" status: 200 OK code: 200 - duration: 40.703211ms + duration: 65.719977ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +146,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -182,33 +162,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:33 GMT + - Wed, 29 Oct 2025 22:55:04 GMT Link: - ; rel="first",; rel="previous",; 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: - - cb8c8cee-2c41-4866-a1ac-940831b2416a + - 55988b6d-ed60-4728-b283-2c792e7628b3 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 44.040731ms + duration: 55.273742ms - id: 4 request: proto: HTTP/1.1 @@ -221,7 +193,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 1403 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: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' headers: Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1403" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:34 GMT + - Wed, 29 Oct 2025 22:55: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: - - aa6d8bff-e8c5-49f5-ac46-baafd8c1fcb7 + - 8fb1e758-4be4-4160-aa4f-2aba41430294 status: 200 OK code: 200 - duration: 119.894252ms + duration: 41.234599ms - id: 5 request: proto: HTTP/1.1 @@ -269,7 +241,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-agitated-bhaskara","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"public_ips":["305be072-7ba7-4e84-b71c-43e72908b092"],"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":["terraform-test","scaleway_instance_server","reserved_ip"]}' + body: '{"name":"tf-srv-flamboyant-turing","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"public_ips":["8f457b60-852b-44a2-9bba-c98d7f41b8c3"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","reserved_ip"]}' form: {} headers: Content-Type: @@ -286,31 +258,23 @@ interactions: trailer: {} content_length: 2329 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-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:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:34.206426+00:00","name":"tf-srv-agitated-bhaskara","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:05.075490+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2329" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:34 GMT + - Wed, 29 Oct 2025 22:55:05 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 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: - - 6599a74f-7a95-4fa9-9c91-4371393ef70f + - 502f957e-ad6d-46bf-bf19-fa405b7f8c89 status: 201 Created code: 201 - duration: 833.804866ms + duration: 1.390483062s - id: 6 request: proto: HTTP/1.1 @@ -327,7 +291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -335,31 +299,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2329 + content_length: 2375 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-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:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:34.206426+00:00","name":"tf-srv-agitated-bhaskara","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:05.075490+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2329" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2375" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:34 GMT + - Wed, 29 Oct 2025 22:55: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: - - 10dea75d-0b0a-40a7-8455-e677f8ba9cc1 + - 3a335824-5bb8-4a4b-8c70-1ee3258c8aed status: 200 OK code: 200 - duration: 99.142339ms + duration: 131.949627ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -384,31 +340,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2329 + content_length: 2375 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-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:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:34.206426+00:00","name":"tf-srv-agitated-bhaskara","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:05.075490+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2329" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2375" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:35 GMT + - Wed, 29 Oct 2025 22:55: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: - - ddf560c5-60f9-497c-8ea1-b23f7c772eec + - 51d2cdd0-92b0-4bd7-8d8c-e8ceb1263db5 status: 200 OK code: 200 - duration: 92.098127ms + duration: 147.124404ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -435,29 +383,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:34.308518Z","id":"34b84a53-4195-4a27-a92a-576044e62e3f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:34.308518Z","id":"f608a265-d22a-40c6-bc6a-20375c612db9","product_resource_id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:34.308518Z","zone":"fr-par-1"}' + body: '{"id":"d8621f39-e0ca-4567-a3b8-657838bee3c8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:05.253586Z", "updated_at":"2025-10-29T22:55:05.253586Z", "references":[{"id":"9287cdd9-6938-4eef-99d2-46f1db6f3340", "product_resource_type":"instance_server", "product_resource_id":"d61b9e5c-8628-4a83-839b-6736905fd9c9", "created_at":"2025-10-29T22:55:05.253586Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:35 GMT + - Wed, 29 Oct 2025 22:55: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: - - 37134692-2dcc-422d-97cf-65528f39ac7e + - 1905a3c4-6cdd-457b-9f6d-c857a1ad06e6 status: 200 OK code: 200 - duration: 53.86735ms + duration: 75.575507ms - id: 9 request: proto: HTTP/1.1 @@ -476,7 +416,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/504adef6-3b2a-4fae-b12e-d32d2ca65e98/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/action method: POST response: proto: HTTP/2.0 @@ -486,31 +426,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/action","href_result":"/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98","id":"3cd14e9d-13dc-4195-884f-b932ec8d06b0","progress":0,"started_at":"2025-10-15T16:37:35.257883+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task": {"id": "da84a8fc-9f97-4560-b062-83cd51341bbe", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/action", "href_result": "/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9", "started_at": "2025-10-29T22:55:06.497466+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:35 GMT + - Wed, 29 Oct 2025 22:55:06 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3cd14e9d-13dc-4195-884f-b932ec8d06b0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/da84a8fc-9f97-4560-b062-83cd51341bbe 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: - - 45a824f4-86a7-41a3-a165-c9a1fc552895 + - 6def66d3-12be-4667-a090-5747e97258ce status: 202 Accepted code: 202 - duration: 185.860449ms + duration: 272.583082ms - id: 10 request: proto: HTTP/1.1 @@ -527,7 +459,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -537,29 +469,21 @@ interactions: trailer: {} 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-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-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:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:35.122315+00:00","name":"tf-srv-agitated-bhaskara","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:06.282690+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - "2351" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:35 GMT + - Wed, 29 Oct 2025 22:55: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: - - 534fdb83-e07e-45cc-8377-eaa3ed574047 + - 6ea0b6a0-6251-459b-ac0e-abd7d20b7df7 status: 200 OK code: 200 - duration: 123.098711ms + duration: 159.333675ms - id: 11 request: proto: HTTP/1.1 @@ -576,7 +500,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -584,31 +508,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2484 + content_length: 2531 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2531" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:40 GMT + - Wed, 29 Oct 2025 22:55: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: - - e32ff36d-3a66-4f51-9d4d-6cad5fe5880f + - 4392763b-f6e0-4e38-9ece-075473435737 status: 200 OK code: 200 - duration: 115.010848ms + duration: 161.963185ms - id: 12 request: proto: HTTP/1.1 @@ -625,7 +541,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -633,31 +549,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2484 + content_length: 2531 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2531" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:40 GMT + - Wed, 29 Oct 2025 22:55: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: - - 29e20ba6-69c2-4117-80fa-77ce29856806 + - ce3fa481-c96d-4923-8225-33c6bee3c54f status: 200 OK code: 200 - duration: 97.14623ms + duration: 157.69843ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -684,29 +592,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"34b84a53-4195-4a27-a92a-576044e62e3f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:40 GMT + - Wed, 29 Oct 2025 22:55: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: - - 9504086d-b956-4c1d-abc9-e34a67cd16ba + - 1c0ae9bd-9d76-4034-8153-d501bbf8558d status: 404 Not Found code: 404 - duration: 34.775496ms + duration: 38.070523ms - id: 14 request: proto: HTTP/1.1 @@ -723,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/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -733,29 +633,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:34.308518Z","id":"34b84a53-4195-4a27-a92a-576044e62e3f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:34.308518Z","id":"f608a265-d22a-40c6-bc6a-20375c612db9","product_resource_id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:34.308518Z","zone":"fr-par-1"}' + body: '{"id":"d8621f39-e0ca-4567-a3b8-657838bee3c8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:05.253586Z", "updated_at":"2025-10-29T22:55:05.253586Z", "references":[{"id":"9287cdd9-6938-4eef-99d2-46f1db6f3340", "product_resource_type":"instance_server", "product_resource_id":"d61b9e5c-8628-4a83-839b-6736905fd9c9", "created_at":"2025-10-29T22:55:05.253586Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:40 GMT + - Wed, 29 Oct 2025 22:55: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: - - 4b51849c-3c95-4b05-be76-183fb249de0f + - ed1c9041-e6c8-47ee-9eb5-03f724411e33 status: 200 OK code: 200 - duration: 40.453673ms + duration: 87.170872ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/user_data method: GET response: proto: HTTP/2.0 @@ -782,29 +674,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:40 GMT + - Wed, 29 Oct 2025 22:55: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: - - 23e5e872-9575-4d29-9c18-8aece134d0a1 + - 5f8069ff-937e-420a-9b58-59e962996aac status: 200 OK code: 200 - duration: 44.25311ms + duration: 104.722424ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/private_nics method: GET response: proto: HTTP/2.0 @@ -831,33 +715,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:40 GMT + - Wed, 29 Oct 2025 22:55:12 GMT Link: - - ; rel="last" + - ; 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: - - 45de00e6-01e4-485a-bc00-9070c9b34602 + - fe1e0ad1-41ea-4bdc-b1d2-6ff1a2aa41a8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.372147ms + duration: 91.89695ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +750,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -882,31 +758,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2484 + content_length: 2531 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2531" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:40 GMT + - Wed, 29 Oct 2025 22:55: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: - - 0d0dbca5-07b6-46e7-add6-4745a5013a21 + - c02d98bf-ed15-45aa-932d-b233dfbec9aa status: 200 OK code: 200 - duration: 116.035754ms + duration: 161.351983ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +791,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/305be072-7ba7-4e84-b71c-43e72908b092 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -933,29 +801,21 @@ interactions: trailer: {} content_length: 443 uncompressed: false - body: '{"ip":{"address":"51.15.251.137","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","name":"tf-srv-agitated-bhaskara"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}}' headers: Content-Length: - "443" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:41 GMT + - Wed, 29 Oct 2025 22:55: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: - - 6fe16f9a-a77e-42ad-9022-992827cd5c8f + - e62e0c91-8f41-446f-8fc7-aee9cb9fe421 status: 200 OK code: 200 - duration: 87.540805ms + duration: 111.283202ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -980,31 +840,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2484 + content_length: 2485 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2485" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:41 GMT + - Wed, 29 Oct 2025 22:55:13 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: - - 5baad49c-3b0b-44e4-b865-0ee28c8491e5 + - 28ff3816-27ba-42d4-8143-2816ffcb970d status: 200 OK code: 200 - duration: 98.589801ms + duration: 140.141699ms - id: 20 request: proto: HTTP/1.1 @@ -1021,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/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -1031,29 +883,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"34b84a53-4195-4a27-a92a-576044e62e3f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:41 GMT + - Wed, 29 Oct 2025 22:55:13 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: - - ff9c30c3-9ee9-4094-a838-336462fd5cf0 + - 383e38c9-aea0-4f60-8e20-54ddde847991 status: 404 Not Found code: 404 - duration: 31.341104ms + duration: 32.614661ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -1080,29 +924,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:34.308518Z","id":"34b84a53-4195-4a27-a92a-576044e62e3f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:34.308518Z","id":"f608a265-d22a-40c6-bc6a-20375c612db9","product_resource_id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:34.308518Z","zone":"fr-par-1"}' + body: '{"id":"d8621f39-e0ca-4567-a3b8-657838bee3c8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:05.253586Z", "updated_at":"2025-10-29T22:55:05.253586Z", "references":[{"id":"9287cdd9-6938-4eef-99d2-46f1db6f3340", "product_resource_type":"instance_server", "product_resource_id":"d61b9e5c-8628-4a83-839b-6736905fd9c9", "created_at":"2025-10-29T22:55:05.253586Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:41 GMT + - Wed, 29 Oct 2025 22:55:13 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: - - c6574c2e-7b86-4dce-916d-99ac5c9aae6b + - 7a274676-1763-4b3b-a300-cbe92562b108 status: 200 OK code: 200 - duration: 54.120555ms + duration: 71.684541ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/user_data method: GET response: proto: HTTP/2.0 @@ -1129,29 +965,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:41 GMT + - Wed, 29 Oct 2025 22:55:13 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: - - c92d1002-7ccb-4d15-a48a-3c28536f0b4e + - 9b847a85-8b50-447f-b286-eb668bd5ce69 status: 200 OK code: 200 - duration: 57.782054ms + duration: 108.722343ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +996,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/private_nics method: GET response: proto: HTTP/2.0 @@ -1178,33 +1006,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:41 GMT + - Wed, 29 Oct 2025 22:55:13 GMT Link: - - ; rel="last" + - ; 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: - - fbd78cea-212a-4f34-86ab-cf041a7ea253 + - b4d4a2af-dc55-4519-9388-9e3f43aa255a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.185124ms + duration: 100.242095ms - id: 24 request: proto: HTTP/1.1 @@ -1221,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/ips/305be072-7ba7-4e84-b71c-43e72908b092 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -1231,29 +1051,21 @@ interactions: trailer: {} content_length: 443 uncompressed: false - body: '{"ip":{"address":"51.15.251.137","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","name":"tf-srv-agitated-bhaskara"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}}' headers: Content-Length: - "443" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:41 GMT + - Wed, 29 Oct 2025 22:55:13 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: - - 4fea0c12-b088-4de4-a7a8-124db3c511dd + - 8f9da216-b249-451e-b844-42d506338ca1 status: 200 OK code: 200 - duration: 84.305218ms + duration: 145.659187ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1082,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -1278,31 +1090,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2484 + content_length: 2531 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2531" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:41 GMT + - Wed, 29 Oct 2025 22:55:13 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: - - fdb77ce2-4065-4435-92b7-2fb3505503ff + - 17fb71f4-3f7a-4497-9b19-20bba60c4e1a status: 200 OK code: 200 - duration: 114.027371ms + duration: 141.756609ms - id: 26 request: proto: HTTP/1.1 @@ -1319,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/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -1329,29 +1133,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"34b84a53-4195-4a27-a92a-576044e62e3f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:41 GMT + - Wed, 29 Oct 2025 22:55:13 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: - - 5a0f00b8-dd5a-4116-bf46-53ab2d0710cc + - 2b722bee-3761-424d-bb54-2d97c90bb1e2 status: 404 Not Found code: 404 - duration: 35.499416ms + duration: 23.56118ms - id: 27 request: proto: HTTP/1.1 @@ -1368,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/block/v1alpha1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -1378,29 +1174,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:34.308518Z","id":"34b84a53-4195-4a27-a92a-576044e62e3f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:34.308518Z","id":"f608a265-d22a-40c6-bc6a-20375c612db9","product_resource_id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:34.308518Z","zone":"fr-par-1"}' + body: '{"id":"d8621f39-e0ca-4567-a3b8-657838bee3c8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:05.253586Z", "updated_at":"2025-10-29T22:55:05.253586Z", "references":[{"id":"9287cdd9-6938-4eef-99d2-46f1db6f3340", "product_resource_type":"instance_server", "product_resource_id":"d61b9e5c-8628-4a83-839b-6736905fd9c9", "created_at":"2025-10-29T22:55:05.253586Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:41 GMT + - Wed, 29 Oct 2025 22:55:13 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: - - 51dac92d-ccb9-4160-9551-940b9fed0f20 + - dd5020c4-e0a9-407d-a8dc-685ae479dbd6 status: 200 OK code: 200 - duration: 36.168913ms + duration: 92.479319ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/user_data method: GET response: proto: HTTP/2.0 @@ -1427,29 +1215,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:41 GMT + - Wed, 29 Oct 2025 22:55:13 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: - - 6c9c0827-5213-4b90-8cdb-9b3050907ee1 + - 30d599ec-844a-4b5d-9ba3-a4632db3058d status: 200 OK code: 200 - duration: 67.255971ms + duration: 106.536897ms - id: 29 request: proto: HTTP/1.1 @@ -1466,7 +1246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/private_nics method: GET response: proto: HTTP/2.0 @@ -1476,33 +1256,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:41 GMT + - Wed, 29 Oct 2025 22:55:14 GMT Link: - - ; rel="last" + - ; 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: - - 9b216667-a8ed-417b-9ca6-4cbff38fac36 + - 2a243c64-9b90-4dfa-bb93-aabc6d189626 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.359121ms + duration: 111.218181ms - id: 30 request: proto: HTTP/1.1 @@ -1514,7 +1286,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}' + body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -1529,33 +1301,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - body: '{"ip":{"address":"51.15.203.96","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","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": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}}' headers: Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "367" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:42 GMT + - Wed, 29 Oct 2025 22:55:14 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/85981408-d7a7-4df5-98f0-c429cc44c5c0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 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: - - 9738e40f-9d8e-483c-b4f9-3cef8eaec290 + - 626e6725-78bd-4700-a447-75c1e0f696f4 status: 201 Created code: 201 - duration: 427.129815ms + duration: 691.919571ms - id: 31 request: proto: HTTP/1.1 @@ -1572,7 +1336,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/85981408-d7a7-4df5-98f0-c429cc44c5c0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -1580,31 +1344,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - body: '{"ip":{"address":"51.15.203.96","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","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": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}}' headers: Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "367" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:42 GMT + - Wed, 29 Oct 2025 22:55: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: - - 73607e0e-fb60-4e1f-9ca3-b5d550c34861 + - 200a1ce1-844a-4288-8501-7dd07262e93f status: 200 OK code: 200 - duration: 96.179173ms + duration: 116.884368ms - id: 32 request: proto: HTTP/1.1 @@ -1621,7 +1377,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -1629,31 +1385,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2484 + content_length: 2531 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2531" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:42 GMT + - Wed, 29 Oct 2025 22:55: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: - - d38e792e-a5bc-4f47-a7c3-b79f86646a92 + - 971b33b8-7f07-4182-baf8-ba21b2d7190a status: 200 OK code: 200 - duration: 118.903741ms + duration: 152.174021ms - id: 33 request: proto: HTTP/1.1 @@ -1670,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/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -1678,31 +1426,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2484 + content_length: 2531 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.251.137","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}, "public_ips": [{"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2531" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:42 GMT + - Wed, 29 Oct 2025 22:55: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: - - 59288331-ccbb-4326-acf2-dd02d02e06c6 + - 2577ae18-83a7-49c2-aad9-15c58d291c54 status: 200 OK code: 200 - duration: 114.453421ms + duration: 161.999875ms - id: 34 request: proto: HTTP/1.1 @@ -1721,7 +1461,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/305be072-7ba7-4e84-b71c-43e72908b092 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: PATCH response: proto: HTTP/2.0 @@ -1731,29 +1471,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.251.137","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:43 GMT + - Wed, 29 Oct 2025 22:55: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: - - 82a81827-06b2-445b-9fc8-7837c38e693a + - 04f2402b-e52a-430e-a11c-55c094eb7a64 status: 200 OK code: 200 - duration: 505.162139ms + duration: 578.828278ms - id: 35 request: proto: HTTP/1.1 @@ -1765,14 +1497,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"server":"504adef6-3b2a-4fae-b12e-d32d2ca65e98"}' + body: '{"server":"d61b9e5c-8628-4a83-839b-6736905fd9c9"}' 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/85981408-d7a7-4df5-98f0-c429cc44c5c0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: PATCH response: proto: HTTP/2.0 @@ -1780,31 +1512,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 441 + content_length: 444 uncompressed: false - body: '{"ip":{"address":"51.15.203.96","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","name":"tf-srv-agitated-bhaskara"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "pending", "tags": [], "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}}' headers: Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "444" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:43 GMT + - Wed, 29 Oct 2025 22:55: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: - - f48608be-8242-4313-b6e7-9d60468b9fdf + - a18c10ad-9734-432c-84e7-6b759e4b7877 status: 200 OK code: 200 - duration: 516.190716ms + duration: 903.109898ms - id: 36 request: proto: HTTP/1.1 @@ -1821,7 +1545,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -1829,31 +1553,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2480 + content_length: 2533 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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.203.96","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.203.96","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}, "public_ips": [{"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2480" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2533" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:44 GMT + - Wed, 29 Oct 2025 22:55: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: - - 83fa6d50-912a-40c6-87b9-d6c95384c0db + - bf0eaeee-5695-4bea-893e-139c150d2a60 status: 200 OK code: 200 - duration: 109.777367ms + duration: 173.030193ms - id: 37 request: proto: HTTP/1.1 @@ -1870,7 +1586,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -1878,31 +1594,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2480 + content_length: 2487 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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.203.96","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.203.96","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}, "public_ips": [{"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2480" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2487" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:44 GMT + - Wed, 29 Oct 2025 22:55: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: - - afac20ef-e164-423e-8678-5815185e5aed + - 7e7fff07-4aaa-48b2-b075-c88643e9100c status: 200 OK code: 200 - duration: 112.323991ms + duration: 150.632058ms - id: 38 request: proto: HTTP/1.1 @@ -1919,7 +1627,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -1929,29 +1637,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"34b84a53-4195-4a27-a92a-576044e62e3f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:44 GMT + - Wed, 29 Oct 2025 22:55: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: - - 518a8272-65a6-49ae-b234-7af2ff424f6a + - e8c9e7b2-aaed-4c81-9513-a71d2580827e status: 404 Not Found code: 404 - duration: 25.944607ms + duration: 29.058551ms - id: 39 request: proto: HTTP/1.1 @@ -1968,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/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -1978,29 +1678,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:34.308518Z","id":"34b84a53-4195-4a27-a92a-576044e62e3f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:34.308518Z","id":"f608a265-d22a-40c6-bc6a-20375c612db9","product_resource_id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:34.308518Z","zone":"fr-par-1"}' + body: '{"id":"d8621f39-e0ca-4567-a3b8-657838bee3c8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:05.253586Z", "updated_at":"2025-10-29T22:55:05.253586Z", "references":[{"id":"9287cdd9-6938-4eef-99d2-46f1db6f3340", "product_resource_type":"instance_server", "product_resource_id":"d61b9e5c-8628-4a83-839b-6736905fd9c9", "created_at":"2025-10-29T22:55:05.253586Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:44 GMT + - Wed, 29 Oct 2025 22:55: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: - - 9773b446-d7b1-425e-a50f-ce90fac1e74f + - 801ced1e-256a-458d-a48f-e2a6cb7665a6 status: 200 OK code: 200 - duration: 42.961253ms + duration: 83.010593ms - id: 40 request: proto: HTTP/1.1 @@ -2017,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/504adef6-3b2a-4fae-b12e-d32d2ca65e98/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/user_data method: GET response: proto: HTTP/2.0 @@ -2027,29 +1719,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:44 GMT + - Wed, 29 Oct 2025 22:55: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: - - 2d68739a-ea05-4a18-b770-eb4fe0bd5c3a + - 76daee27-5287-4849-8965-d2318daa9d32 status: 200 OK code: 200 - duration: 63.589934ms + duration: 102.950992ms - id: 41 request: proto: HTTP/1.1 @@ -2066,7 +1750,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/private_nics method: GET response: proto: HTTP/2.0 @@ -2076,33 +1760,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:44 GMT + - Wed, 29 Oct 2025 22:55:17 GMT Link: - - ; rel="last" + - ; 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: - - 028f7da0-0e56-4443-8147-21177b440d66 + - 89096e92-cc1b-48e5-bafa-bf1249e47b0b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.140691ms + duration: 95.262876ms - id: 42 request: proto: HTTP/1.1 @@ -2119,7 +1795,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -2127,31 +1803,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2480 + content_length: 2533 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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.203.96","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.203.96","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}, "public_ips": [{"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2480" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2533" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:44 GMT + - Wed, 29 Oct 2025 22:55: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: - - 9c50b5f0-e31b-461c-b949-ff201382902e + - 5f0b7aa5-35d8-4737-94df-1d088b1dd6b2 status: 200 OK code: 200 - duration: 93.3566ms + duration: 137.825269ms - id: 43 request: proto: HTTP/1.1 @@ -2168,7 +1836,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -2176,31 +1844,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2480 + content_length: 2533 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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.203.96","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.203.96","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}, "public_ips": [{"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2480" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2533" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:44 GMT + - Wed, 29 Oct 2025 22:55: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: - - a934ba43-5221-477f-8356-431808ca8009 + - e41ce611-8826-4a5a-a34f-0569d5941175 status: 200 OK code: 200 - duration: 120.142218ms + duration: 161.542932ms - id: 44 request: proto: HTTP/1.1 @@ -2217,7 +1877,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/85981408-d7a7-4df5-98f0-c429cc44c5c0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -2225,31 +1885,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 441 + content_length: 444 uncompressed: false - body: '{"ip":{"address":"51.15.203.96","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","name":"tf-srv-agitated-bhaskara"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "pending", "tags": [], "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}}' headers: Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "444" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:44 GMT + - Wed, 29 Oct 2025 22:55:18 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: - - 508322f1-5485-4408-9438-62d3372c8581 + - 059d3ba0-ac93-4e54-a909-f2c30a5bb5f3 status: 200 OK code: 200 - duration: 75.397033ms + duration: 107.482787ms - id: 45 request: proto: HTTP/1.1 @@ -2266,7 +1918,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/85981408-d7a7-4df5-98f0-c429cc44c5c0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -2274,31 +1926,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 441 + content_length: 444 uncompressed: false - body: '{"ip":{"address":"51.15.203.96","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","name":"tf-srv-agitated-bhaskara"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "pending", "tags": [], "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}}' headers: Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "444" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:44 GMT + - Wed, 29 Oct 2025 22:55:18 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: - - 19e03bf0-282e-477c-8d82-e79202772f83 + - 01430008-f77b-4611-8ac7-a1f0af7d7b20 status: 200 OK code: 200 - duration: 76.953427ms + duration: 111.61783ms - id: 46 request: proto: HTTP/1.1 @@ -2315,7 +1959,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/305be072-7ba7-4e84-b71c-43e72908b092 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -2325,29 +1969,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.251.137","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:44 GMT + - Wed, 29 Oct 2025 22:55:18 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: - - ed76fe2b-4e5a-4e6c-86c5-91d74fba8205 + - f29e5304-5d6c-4ac8-ab31-330c68001aa3 status: 200 OK code: 200 - duration: 77.530732ms + duration: 122.225437ms - id: 47 request: proto: HTTP/1.1 @@ -2364,7 +2000,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -2372,31 +2008,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2480 + content_length: 2533 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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.203.96","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.203.96","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}, "public_ips": [{"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2480" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2533" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:45 GMT + - Wed, 29 Oct 2025 22:55:18 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: - - 1cf976a7-98c9-4397-89f3-7d683249dd6d + - 4605b4a9-8379-4cfd-9c35-e065ea4ec30e status: 200 OK code: 200 - duration: 100.736664ms + duration: 154.383644ms - id: 48 request: proto: HTTP/1.1 @@ -2413,7 +2041,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -2423,29 +2051,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"34b84a53-4195-4a27-a92a-576044e62e3f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:45 GMT + - Wed, 29 Oct 2025 22:55:18 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: - - 76b0045b-dab0-4a17-bc5d-87e2eac27d1a + - 7e8705d0-e522-4b16-971b-3c66ca5e9126 status: 404 Not Found code: 404 - duration: 38.255584ms + duration: 30.747399ms - id: 49 request: proto: HTTP/1.1 @@ -2462,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/block/v1alpha1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -2472,29 +2092,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:34.308518Z","id":"34b84a53-4195-4a27-a92a-576044e62e3f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:34.308518Z","id":"f608a265-d22a-40c6-bc6a-20375c612db9","product_resource_id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:34.308518Z","zone":"fr-par-1"}' + body: '{"id":"d8621f39-e0ca-4567-a3b8-657838bee3c8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:05.253586Z", "updated_at":"2025-10-29T22:55:05.253586Z", "references":[{"id":"9287cdd9-6938-4eef-99d2-46f1db6f3340", "product_resource_type":"instance_server", "product_resource_id":"d61b9e5c-8628-4a83-839b-6736905fd9c9", "created_at":"2025-10-29T22:55:05.253586Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:45 GMT + - Wed, 29 Oct 2025 22:55:18 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: - - 1b94d0bc-7142-49a8-a791-37864d53a0cd + - 4176413c-849e-4c49-b8da-442e47dffd39 status: 200 OK code: 200 - duration: 50.996767ms + duration: 89.038496ms - id: 50 request: proto: HTTP/1.1 @@ -2511,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/504adef6-3b2a-4fae-b12e-d32d2ca65e98/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/user_data method: GET response: proto: HTTP/2.0 @@ -2521,29 +2133,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:45 GMT + - Wed, 29 Oct 2025 22:55:18 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: - - 86519a1d-35ff-4456-b60b-c4a4950e3cc5 + - 33f011ef-1a0b-47b5-b464-ddb68dc5b3a7 status: 200 OK code: 200 - duration: 67.815832ms + duration: 88.754855ms - id: 51 request: proto: HTTP/1.1 @@ -2560,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/504adef6-3b2a-4fae-b12e-d32d2ca65e98/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/private_nics method: GET response: proto: HTTP/2.0 @@ -2570,33 +2174,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:45 GMT + - Wed, 29 Oct 2025 22:55:18 GMT Link: - - ; rel="last" + - ; 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: - - f1e71c42-0b8d-4e09-8100-d8c7d0bc365a + - 9a45a7b0-133a-4751-96d1-0cbc2ff3a3b6 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.030688ms + duration: 100.760737ms - id: 52 request: proto: HTTP/1.1 @@ -2613,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/ips/305be072-7ba7-4e84-b71c-43e72908b092 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -2623,29 +2219,21 @@ interactions: trailer: {} content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.251.137","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}}' headers: Content-Length: - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:45 GMT + - Wed, 29 Oct 2025 22:55: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: - - c5fd75d8-1b96-4d36-ad91-d5249ef38e26 + - 5fc3832a-a015-4c52-a488-079ab2b75e10 status: 200 OK code: 200 - duration: 72.945258ms + duration: 100.913663ms - id: 53 request: proto: HTTP/1.1 @@ -2662,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/ips/85981408-d7a7-4df5-98f0-c429cc44c5c0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -2670,31 +2258,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 441 + content_length: 2487 uncompressed: false - body: '{"ip":{"address":"51.15.203.96","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","name":"tf-srv-agitated-bhaskara"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}, "public_ips": [{"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2487" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:45 GMT + - Wed, 29 Oct 2025 22:55: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: - - e90eead4-b96f-4ca3-b7b8-867829e81440 + - dfa279fe-2f90-44ec-886f-0e0c63d35cc2 status: 200 OK code: 200 - duration: 89.433281ms + duration: 134.664438ms - id: 54 request: proto: HTTP/1.1 @@ -2711,7 +2291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -2719,31 +2299,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2480 + content_length: 444 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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.203.96","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.203.96","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing"}, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "pending", "tags": [], "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}}' headers: Content-Length: - - "2480" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "444" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:45 GMT + - Wed, 29 Oct 2025 22:55: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: - - a084340b-1340-4d3d-9832-df4283c692b5 + - 1b827e92-85e3-4130-ac04-27a751ced814 status: 200 OK code: 200 - duration: 101.462818ms + duration: 140.065238ms - id: 55 request: proto: HTTP/1.1 @@ -2760,7 +2332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -2770,29 +2342,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"34b84a53-4195-4a27-a92a-576044e62e3f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:45 GMT + - Wed, 29 Oct 2025 22:55: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: - - 96c7dd97-86d4-4929-bdec-09df0e0c372d + - 64fa11a7-3f85-432e-b95a-25faa4ea42f6 status: 404 Not Found code: 404 - duration: 27.725031ms + duration: 32.237015ms - id: 56 request: proto: HTTP/1.1 @@ -2809,7 +2373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -2819,29 +2383,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:34.308518Z","id":"34b84a53-4195-4a27-a92a-576044e62e3f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:34.308518Z","id":"f608a265-d22a-40c6-bc6a-20375c612db9","product_resource_id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:34.308518Z","zone":"fr-par-1"}' + body: '{"id":"d8621f39-e0ca-4567-a3b8-657838bee3c8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:05.253586Z", "updated_at":"2025-10-29T22:55:05.253586Z", "references":[{"id":"9287cdd9-6938-4eef-99d2-46f1db6f3340", "product_resource_type":"instance_server", "product_resource_id":"d61b9e5c-8628-4a83-839b-6736905fd9c9", "created_at":"2025-10-29T22:55:05.253586Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:45 GMT + - Wed, 29 Oct 2025 22:55: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: - - 701fdcc6-30f5-44d3-b107-2c72b52968c9 + - a1a87c1a-36aa-43ce-b755-ed64cfdeff1a status: 200 OK code: 200 - duration: 46.841412ms + duration: 94.339499ms - id: 57 request: proto: HTTP/1.1 @@ -2858,7 +2414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/user_data method: GET response: proto: HTTP/2.0 @@ -2868,29 +2424,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:45 GMT + - Wed, 29 Oct 2025 22:55: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: - - d9db17e9-9977-41cf-bf8e-152451a4e3cf + - 2dc36994-1d34-4d15-b193-1e31daa10bb3 status: 200 OK code: 200 - duration: 67.55936ms + duration: 90.416412ms - id: 58 request: proto: HTTP/1.1 @@ -2907,7 +2455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/private_nics method: GET response: proto: HTTP/2.0 @@ -2917,33 +2465,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:45 GMT + - Wed, 29 Oct 2025 22:55:19 GMT Link: - - ; rel="last" + - ; 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: - - 5c37d603-9f10-4ec3-8d15-bba7a209ece0 + - d394df33-dd75-48e2-bf90-68fdf88ccaae X-Total-Count: - "0" status: 200 OK code: 200 - duration: 45.28583ms + duration: 97.307319ms - id: 59 request: proto: HTTP/1.1 @@ -2960,7 +2500,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -2968,31 +2508,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2480 + content_length: 2487 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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.203.96","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.203.96","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}, "public_ips": [{"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2480" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2487" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:45 GMT + - Wed, 29 Oct 2025 22:55: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: - - 3449f4c6-a85f-456e-95a6-a3f7daea3ea2 + - f17c03cf-ca15-4ab5-9d8d-9276a99ebaa8 status: 200 OK code: 200 - duration: 98.092086ms + duration: 147.15183ms - id: 60 request: proto: HTTP/1.1 @@ -3011,7 +2543,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/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: PATCH response: proto: HTTP/2.0 @@ -3019,31 +2551,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1958 + content_length: 1959 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1958" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1959" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:46 GMT + - Wed, 29 Oct 2025 22:55: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: - - 19f9cc54-7918-4b25-b25b-303b7ebee79e + - 57b0053d-9e17-482d-bf52-f16f1ccf05b2 status: 200 OK code: 200 - duration: 759.330966ms + duration: 594.785857ms - id: 61 request: proto: HTTP/1.1 @@ -3060,7 +2584,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -3068,31 +2592,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1958 + content_length: 1959 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1958" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1959" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:46 GMT + - Wed, 29 Oct 2025 22:55: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: - - 1f553b17-e1bb-40cd-8843-e77b3cf01487 + - e588708e-51ed-4aee-84ba-f71bc8a75ce8 status: 200 OK code: 200 - duration: 107.88394ms + duration: 143.502156ms - id: 62 request: proto: HTTP/1.1 @@ -3109,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/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -3117,31 +2633,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1958 + content_length: 1959 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1958" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1959" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:46 GMT + - Wed, 29 Oct 2025 22:55: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: - - b06343f4-66dd-42af-a2b1-684b5f156466 + - 880be059-59f6-42ef-a4c8-b2f993cb0a90 status: 200 OK code: 200 - duration: 92.936101ms + duration: 156.866157ms - id: 63 request: proto: HTTP/1.1 @@ -3158,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/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -3168,29 +2676,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"34b84a53-4195-4a27-a92a-576044e62e3f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:46 GMT + - Wed, 29 Oct 2025 22:55: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: - - 4ad2bf8f-2b95-424a-b75b-13c449b5b305 + - ca500dec-ac7e-49d6-aa66-b93151aaedf5 status: 404 Not Found code: 404 - duration: 29.605995ms + duration: 31.132439ms - id: 64 request: proto: HTTP/1.1 @@ -3207,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/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -3217,29 +2717,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:34.308518Z","id":"34b84a53-4195-4a27-a92a-576044e62e3f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:34.308518Z","id":"f608a265-d22a-40c6-bc6a-20375c612db9","product_resource_id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:34.308518Z","zone":"fr-par-1"}' + body: '{"id":"d8621f39-e0ca-4567-a3b8-657838bee3c8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:05.253586Z", "updated_at":"2025-10-29T22:55:05.253586Z", "references":[{"id":"9287cdd9-6938-4eef-99d2-46f1db6f3340", "product_resource_type":"instance_server", "product_resource_id":"d61b9e5c-8628-4a83-839b-6736905fd9c9", "created_at":"2025-10-29T22:55:05.253586Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:46 GMT + - Wed, 29 Oct 2025 22:55: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: - - afb3de9d-fe90-4a13-a8d9-2d63201be553 + - 69f39c0b-6f65-4d65-8206-21b1cee6f39f status: 200 OK code: 200 - duration: 48.90595ms + duration: 86.020152ms - id: 65 request: proto: HTTP/1.1 @@ -3256,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/504adef6-3b2a-4fae-b12e-d32d2ca65e98/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/user_data method: GET response: proto: HTTP/2.0 @@ -3266,29 +2758,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:46 GMT + - Wed, 29 Oct 2025 22:55: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: - - b913314d-5804-4846-8553-ba4cf60526e4 + - 8b3b334e-558a-4a2f-937c-6e1ff74b6343 status: 200 OK code: 200 - duration: 51.992909ms + duration: 92.563989ms - id: 66 request: proto: HTTP/1.1 @@ -3305,7 +2789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/private_nics method: GET response: proto: HTTP/2.0 @@ -3315,33 +2799,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:47 GMT + - Wed, 29 Oct 2025 22:55:21 GMT Link: - - ; rel="last" + - ; 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: - - 24f089a6-6eea-46aa-bbe9-5f5f11445cae + - 679a914c-6d2d-442e-b5c2-12ce02c49667 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 64.905045ms + duration: 115.327147ms - id: 67 request: proto: HTTP/1.1 @@ -3358,7 +2834,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -3366,31 +2842,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1958 + content_length: 2005 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1958" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2005" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:47 GMT + - Wed, 29 Oct 2025 22:55: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: - - da92b009-7494-4023-9e00-1ccefa39df99 + - 22635bb0-12fc-48e6-bee9-f87b8c25b913 status: 200 OK code: 200 - duration: 103.963175ms + duration: 163.473613ms - id: 68 request: proto: HTTP/1.1 @@ -3407,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/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -3415,31 +2883,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1958 + content_length: 1959 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1958" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "1959" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:47 GMT + - Wed, 29 Oct 2025 22:55: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: - - b4f594ae-cd7a-412f-b7dc-18f21422e146 + - 5ed1c454-7e00-49dd-8806-b93300866ec4 status: 200 OK code: 200 - duration: 89.990918ms + duration: 174.350404ms - id: 69 request: proto: HTTP/1.1 @@ -3456,7 +2916,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/305be072-7ba7-4e84-b71c-43e72908b092 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -3464,31 +2924,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 367 uncompressed: false - body: '{"ip":{"address":"51.15.251.137","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}}' headers: Content-Length: - - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "367" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:47 GMT + - Wed, 29 Oct 2025 22:55: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: - - 6ca65310-db64-4f8f-a9fd-eca511a8b296 + - ad28e9de-5267-4d33-b47e-8035060f92a2 status: 200 OK code: 200 - duration: 76.774781ms + duration: 111.860084ms - id: 70 request: proto: HTTP/1.1 @@ -3505,7 +2957,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/85981408-d7a7-4df5-98f0-c429cc44c5c0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -3513,31 +2965,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 2005 uncompressed: false - body: '{"ip":{"address":"51.15.203.96","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","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: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2005" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:47 GMT + - Wed, 29 Oct 2025 22:55: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: - - 23f8d1bd-411d-46dd-9633-a52f532acbc7 + - e45898bd-6811-4a19-9b2a-7ceb272ace93 status: 200 OK code: 200 - duration: 82.448599ms + duration: 125.718961ms - id: 71 request: proto: HTTP/1.1 @@ -3554,7 +2998,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -3562,31 +3006,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1958 + content_length: 365 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}}' headers: Content-Length: - - "1958" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "365" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:47 GMT + - Wed, 29 Oct 2025 22:55: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: - - dcc2068c-39c3-4f5c-9124-7c38136bb2c8 + - 3088dfb6-e951-480d-89ed-33b03531db4d status: 200 OK code: 200 - duration: 104.161377ms + duration: 145.280451ms - id: 72 request: proto: HTTP/1.1 @@ -3603,7 +3039,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -3613,29 +3049,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"34b84a53-4195-4a27-a92a-576044e62e3f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:47 GMT + - Wed, 29 Oct 2025 22:55: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: - - 9bffc889-5770-4bbb-abb7-26d87f26c885 + - 2ed284a8-04f2-4d4b-8608-3ce79236f8b0 status: 404 Not Found code: 404 - duration: 27.965593ms + duration: 23.585206ms - id: 73 request: proto: HTTP/1.1 @@ -3652,7 +3080,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -3662,29 +3090,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:34.308518Z","id":"34b84a53-4195-4a27-a92a-576044e62e3f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:34.308518Z","id":"f608a265-d22a-40c6-bc6a-20375c612db9","product_resource_id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:34.308518Z","zone":"fr-par-1"}' + body: '{"id":"d8621f39-e0ca-4567-a3b8-657838bee3c8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:05.253586Z", "updated_at":"2025-10-29T22:55:05.253586Z", "references":[{"id":"9287cdd9-6938-4eef-99d2-46f1db6f3340", "product_resource_type":"instance_server", "product_resource_id":"d61b9e5c-8628-4a83-839b-6736905fd9c9", "created_at":"2025-10-29T22:55:05.253586Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:47 GMT + - Wed, 29 Oct 2025 22:55: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: - - ef9bcf85-ad1d-4e4e-b13b-3b89e2e1f000 + - b4426bd1-58c5-456c-bb1a-e9c2f60f0e16 status: 200 OK code: 200 - duration: 48.934062ms + duration: 101.111533ms - id: 74 request: proto: HTTP/1.1 @@ -3701,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/504adef6-3b2a-4fae-b12e-d32d2ca65e98/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/user_data method: GET response: proto: HTTP/2.0 @@ -3711,29 +3131,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:47 GMT + - Wed, 29 Oct 2025 22:55: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: - - 0364003c-01f2-4d42-935c-ccbe791dace8 + - ada72de3-c2d8-42f1-9e1c-2dbed18eb8ff status: 200 OK code: 200 - duration: 55.777659ms + duration: 104.721486ms - id: 75 request: proto: HTTP/1.1 @@ -3750,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/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/private_nics method: GET response: proto: HTTP/2.0 @@ -3760,33 +3172,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:47 GMT + - Wed, 29 Oct 2025 22:55:22 GMT Link: - - ; rel="last" + - ; 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: - - 000cc548-baaf-4425-a717-4f3846f56d0d + - 6ed39fa6-65dd-4853-8abc-a5b2b921f435 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 48.890231ms + duration: 95.336103ms - id: 76 request: proto: HTTP/1.1 @@ -3803,7 +3207,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/85981408-d7a7-4df5-98f0-c429cc44c5c0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -3811,31 +3215,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.203.96","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","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": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}}' headers: Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "365" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:47 GMT + - Wed, 29 Oct 2025 22:55: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: - - 0270300a-fb99-4b2c-b7f1-89a8007f0087 + - 3d42aecd-7d13-4e28-b2a1-ec8489613540 status: 200 OK code: 200 - duration: 78.503519ms + duration: 104.402007ms - id: 77 request: proto: HTTP/1.1 @@ -3852,7 +3248,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/305be072-7ba7-4e84-b71c-43e72908b092 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -3860,31 +3256,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 367 uncompressed: false - body: '{"ip":{"address":"51.15.251.137","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}}' headers: Content-Length: - - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "367" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:47 GMT + - Wed, 29 Oct 2025 22:55: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: - - 987ae783-03de-47d7-8b61-0ed0fa76d936 + - 6af29e40-a84f-49c1-9e4e-4e74d310bcc7 status: 200 OK code: 200 - duration: 79.654571ms + duration: 130.459847ms - id: 78 request: proto: HTTP/1.1 @@ -3901,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/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -3909,31 +3297,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1958 + content_length: 2005 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1958" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2005" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:48 GMT + - Wed, 29 Oct 2025 22:55: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: - - 59192ef7-6b1d-4508-9026-ac8a981081c7 + - 2ba11078-180a-480b-87c1-98344113c409 status: 200 OK code: 200 - duration: 118.372944ms + duration: 133.999185ms - id: 79 request: proto: HTTP/1.1 @@ -3950,7 +3330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -3960,29 +3340,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"34b84a53-4195-4a27-a92a-576044e62e3f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:48 GMT + - Wed, 29 Oct 2025 22:55: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: - - ad63a3f0-84f9-41bc-9c3f-f571da8f207a + - 4077fd9d-abbe-4f8d-86f1-f335c8574d88 status: 404 Not Found code: 404 - duration: 33.738658ms + duration: 31.412143ms - id: 80 request: proto: HTTP/1.1 @@ -3999,7 +3371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -4009,29 +3381,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:34.308518Z","id":"34b84a53-4195-4a27-a92a-576044e62e3f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:34.308518Z","id":"f608a265-d22a-40c6-bc6a-20375c612db9","product_resource_id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:34.308518Z","zone":"fr-par-1"}' + body: '{"id":"d8621f39-e0ca-4567-a3b8-657838bee3c8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:05.253586Z", "updated_at":"2025-10-29T22:55:05.253586Z", "references":[{"id":"9287cdd9-6938-4eef-99d2-46f1db6f3340", "product_resource_type":"instance_server", "product_resource_id":"d61b9e5c-8628-4a83-839b-6736905fd9c9", "created_at":"2025-10-29T22:55:05.253586Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:48 GMT + - Wed, 29 Oct 2025 22:55: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: - - 50e70c80-f350-4eef-bd74-8956ee40b9b2 + - 13cc6260-db45-4038-a8c7-448ce866d5f3 status: 200 OK code: 200 - duration: 45.759569ms + duration: 97.797777ms - id: 81 request: proto: HTTP/1.1 @@ -4048,7 +3412,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/user_data method: GET response: proto: HTTP/2.0 @@ -4058,29 +3422,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:48 GMT + - Wed, 29 Oct 2025 22:55: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: - - 2d03422a-bc3d-4680-976b-5b6a4e989cc1 + - e4b1f967-299f-42fb-a1f4-87560b41fcd3 status: 200 OK code: 200 - duration: 59.64874ms + duration: 115.080567ms - id: 82 request: proto: HTTP/1.1 @@ -4097,7 +3453,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/private_nics method: GET response: proto: HTTP/2.0 @@ -4107,33 +3463,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:48 GMT + - Wed, 29 Oct 2025 22:55:22 GMT Link: - - ; rel="last" + - ; 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: - - 8bfa2c50-2a49-4d70-b7ff-e33eea161fd7 + - be44b33d-99c0-4dc2-9136-32e5409f20e6 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 59.568059ms + duration: 97.498547ms - id: 83 request: proto: HTTP/1.1 @@ -4150,7 +3498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -4158,31 +3506,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1958 + content_length: 2005 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:37.478905+00:00","name":"tf-srv-agitated-bhaskara","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":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:08.669613+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "1958" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2005" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:48 GMT + - Wed, 29 Oct 2025 22:55:23 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: - - 04bbfb72-570f-440a-87d2-f2c31de93e63 + - 4b6994af-4585-488c-99f4-deaa0df13e1d status: 200 OK code: 200 - duration: 104.176095ms + duration: 151.5674ms - id: 84 request: proto: HTTP/1.1 @@ -4201,7 +3541,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/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: PATCH response: proto: HTTP/2.0 @@ -4209,31 +3549,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2481 + content_length: 2480 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:48.552541+00:00","name":"tf-srv-agitated-bhaskara","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.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:23.217669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2480" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:49 GMT + - Wed, 29 Oct 2025 22:55:24 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: - - 994f7ee9-23b8-49d5-ba7c-b70c2da9b754 + - 245d410c-2a97-402e-8c4d-f68d44eb762c status: 200 OK code: 200 - duration: 628.783481ms + duration: 947.220717ms - id: 85 request: proto: HTTP/1.1 @@ -4250,7 +3582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -4258,31 +3590,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2481 + content_length: 2480 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:48.552541+00:00","name":"tf-srv-agitated-bhaskara","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.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:23.217669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2480" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:49 GMT + - Wed, 29 Oct 2025 22:55:24 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: - - 9b6143e6-e749-4747-932d-9f2cb95c8160 + - f3a75a04-a104-4d29-bb84-c7edb4fb6075 status: 200 OK code: 200 - duration: 93.362903ms + duration: 141.553842ms - id: 86 request: proto: HTTP/1.1 @@ -4299,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/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -4307,31 +3631,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2481 + content_length: 2480 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:48.552541+00:00","name":"tf-srv-agitated-bhaskara","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.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:23.217669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2480" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:49 GMT + - Wed, 29 Oct 2025 22:55:24 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: - - 8f92604e-453a-43f3-b86c-289b904d5b7d + - 0dbf618b-bd11-445d-9995-372868003760 status: 200 OK code: 200 - duration: 94.61785ms + duration: 148.84029ms - id: 87 request: proto: HTTP/1.1 @@ -4348,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/instance/v1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -4358,29 +3674,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"34b84a53-4195-4a27-a92a-576044e62e3f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:49 GMT + - Wed, 29 Oct 2025 22:55:24 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: - - bc642e31-12b2-4078-b646-4a3ad8c89920 + - 342d2eb9-a6e9-4ca8-9117-51d5d05ef00b status: 404 Not Found code: 404 - duration: 51.729584ms + duration: 24.545381ms - id: 88 request: proto: HTTP/1.1 @@ -4397,7 +3705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -4407,29 +3715,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:34.308518Z","id":"34b84a53-4195-4a27-a92a-576044e62e3f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:34.308518Z","id":"f608a265-d22a-40c6-bc6a-20375c612db9","product_resource_id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:34.308518Z","zone":"fr-par-1"}' + body: '{"id":"d8621f39-e0ca-4567-a3b8-657838bee3c8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:05.253586Z", "updated_at":"2025-10-29T22:55:05.253586Z", "references":[{"id":"9287cdd9-6938-4eef-99d2-46f1db6f3340", "product_resource_type":"instance_server", "product_resource_id":"d61b9e5c-8628-4a83-839b-6736905fd9c9", "created_at":"2025-10-29T22:55:05.253586Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:49 GMT + - Wed, 29 Oct 2025 22:55:24 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: - - 805e9005-25dc-4fee-ab3c-c9907f5d1f80 + - d043b99d-7e42-437a-9822-eb875ef80148 status: 200 OK code: 200 - duration: 57.035612ms + duration: 86.251385ms - id: 89 request: proto: HTTP/1.1 @@ -4446,7 +3746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/user_data method: GET response: proto: HTTP/2.0 @@ -4456,29 +3756,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:49 GMT + - Wed, 29 Oct 2025 22:55:24 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: - - b19d7d57-e3f7-4c13-afa9-a06a3c2cede9 + - c660b431-e691-4211-bd35-aa098ba3b625 status: 200 OK code: 200 - duration: 61.843433ms + duration: 118.51504ms - id: 90 request: proto: HTTP/1.1 @@ -4495,7 +3787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/private_nics method: GET response: proto: HTTP/2.0 @@ -4505,33 +3797,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:49 GMT + - Wed, 29 Oct 2025 22:55:24 GMT Link: - - ; rel="last" + - ; 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: - - 9b547dcf-ad78-40e5-bd29-434f3f9bf843 + - 496f6369-1b8d-45cc-94ec-45d8fc33b7ba X-Total-Count: - "0" status: 200 OK code: 200 - duration: 60.375165ms + duration: 120.296231ms - id: 91 request: proto: HTTP/1.1 @@ -4548,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/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -4556,31 +3840,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2481 + content_length: 2526 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:48.552541+00:00","name":"tf-srv-agitated-bhaskara","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.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:23.217669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2526" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:49 GMT + - Wed, 29 Oct 2025 22:55: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: - - e41448f4-f1ba-404d-aebb-712e07927abf + - c79dd782-79e6-4938-ac6d-ea0b9766c721 status: 200 OK code: 200 - duration: 100.410041ms + duration: 156.335146ms - id: 92 request: proto: HTTP/1.1 @@ -4597,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/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -4605,31 +3881,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2481 + content_length: 2526 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:48.552541+00:00","name":"tf-srv-agitated-bhaskara","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.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:23.217669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2526" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:49 GMT + - Wed, 29 Oct 2025 22:55: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: - - 5d142ff5-2278-4596-9052-2528456414c6 + - 620f2621-1428-4b27-b0df-2faae25450f7 status: 200 OK code: 200 - duration: 108.817453ms + duration: 153.049652ms - id: 93 request: proto: HTTP/1.1 @@ -4646,7 +3914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/85981408-d7a7-4df5-98f0-c429cc44c5c0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -4654,31 +3922,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - body: '{"ip":{"address":"51.15.203.96","id":"85981408-d7a7-4df5-98f0-c429cc44c5c0","ipam_id":"bc9a6924-64db-4d0f-b992-f9114ff5c451","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": {"id": "5e1fe2cf-537e-4763-9643-89980a20a0b0", "address": "163.172.149.221", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "6bc89eff-de51-4bea-8286-207cda3cf0cf"}}' headers: Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "367" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - b75094c0-ca93-4934-8f53-1aa5590e52bb + - 73b41a9b-7a3d-4add-9c65-b8bc72ab706c status: 200 OK code: 200 - duration: 75.69841ms + duration: 105.042556ms - id: 94 request: proto: HTTP/1.1 @@ -4695,7 +3955,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: GET response: proto: HTTP/2.0 @@ -4703,31 +3963,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2481 + content_length: 365 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:48.552541+00:00","name":"tf-srv-agitated-bhaskara","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.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ip": {"id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3", "address": "51.15.230.164", "prefix": null, "reverse": null, "server": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "zone": "fr-par-1", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "f36d8be3-5d0c-4b42-9ae3-a0ec86fb48ee"}}' headers: Content-Length: - - "2481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "365" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - a81c6323-b15a-4dd6-9b29-22627cf2c201 + - 6f8fe368-1b41-458a-90a8-53aab3eec3bd status: 200 OK code: 200 - duration: 87.642847ms + duration: 137.080388ms - id: 95 request: proto: HTTP/1.1 @@ -4744,7 +3996,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/305be072-7ba7-4e84-b71c-43e72908b092 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -4752,31 +4004,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 2480 uncompressed: false - body: '{"ip":{"address":"51.15.251.137","id":"305be072-7ba7-4e84-b71c-43e72908b092","ipam_id":"980aef89-f8fd-4e7b-98fa-bdddd846d7ec","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: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:23.217669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2480" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - b88951ce-f2b1-4117-ac77-1e92a3cb5080 + - 9ad8f6fd-9c32-4b9e-aa3c-482b44b5c2b6 status: 200 OK code: 200 - duration: 91.361913ms + duration: 165.41142ms - id: 96 request: proto: HTTP/1.1 @@ -4793,7 +4037,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -4803,29 +4047,21 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"34b84a53-4195-4a27-a92a-576044e62e3f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - 3fc4740d-e1f8-4212-8bbe-bf9c60c2092f + - 981fc27b-4322-4ec0-9b10-d18f21e2d847 status: 404 Not Found code: 404 - duration: 29.174474ms + duration: 29.959085ms - id: 97 request: proto: HTTP/1.1 @@ -4842,7 +4078,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -4852,29 +4088,21 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:34.308518Z","id":"34b84a53-4195-4a27-a92a-576044e62e3f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-10-15T16:37:34.308518Z","id":"f608a265-d22a-40c6-bc6a-20375c612db9","product_resource_id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T16:37:34.308518Z","zone":"fr-par-1"}' + body: '{"id":"d8621f39-e0ca-4567-a3b8-657838bee3c8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:05.253586Z", "updated_at":"2025-10-29T22:55:05.253586Z", "references":[{"id":"9287cdd9-6938-4eef-99d2-46f1db6f3340", "product_resource_type":"instance_server", "product_resource_id":"d61b9e5c-8628-4a83-839b-6736905fd9c9", "created_at":"2025-10-29T22:55:05.253586Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "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 16:37:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - 09c1d339-81c4-4260-aa37-d43554b1e4ef + - 9531a01f-0cd1-40ad-9144-2df3e117b734 status: 200 OK code: 200 - duration: 45.954075ms + duration: 86.074735ms - id: 98 request: proto: HTTP/1.1 @@ -4891,7 +4119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/user_data method: GET response: proto: HTTP/2.0 @@ -4901,29 +4129,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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 16:37:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - 8dfed1e4-9578-4849-866b-4c0b68ae7987 + - 85784df6-08f5-4aa8-9940-7aaf51a5269b status: 200 OK code: 200 - duration: 48.407023ms + duration: 102.09847ms - id: 99 request: proto: HTTP/1.1 @@ -4940,7 +4160,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/private_nics method: GET response: proto: HTTP/2.0 @@ -4950,33 +4170,25 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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 16:37:50 GMT + - Wed, 29 Oct 2025 22:55:25 GMT Link: - - ; rel="last" + - ; 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: - - 34cb68c8-4519-4157-a02e-0e644cb69d7d + - 3b62d27a-a1a9-4f2c-a349-eb012b005d1d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 65.801499ms + duration: 106.091297ms - id: 100 request: proto: HTTP/1.1 @@ -4993,7 +4205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -5001,31 +4213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2481 + content_length: 2480 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T16:37:34.206426+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:48.552541+00:00","name":"tf-srv-agitated-bhaskara","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.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:23.217669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2480" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - c99d3a02-ff01-488a-9c67-30c0a633a53e + - c7707bb1-56ac-4706-9dcb-057f331f22c4 status: 200 OK code: 200 - duration: 98.111583ms + duration: 145.092732ms - id: 101 request: proto: HTTP/1.1 @@ -5042,39 +4246,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2481 + 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-15T16:37:34.206426+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:48.552541+00:00","name":"tf-srv-agitated-bhaskara","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.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "2481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - efed9f68-8640-4772-9870-0cd11f4d5a26 - status: 200 OK - code: 200 - duration: 95.087462ms + - cfaae40e-776b-408d-a865-f33ec6c6d7b1 + status: 204 No Content + code: 204 + duration: 308.503731ms - id: 102 request: proto: HTTP/1.1 @@ -5091,37 +4285,31 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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/305be072-7ba7-4e84-b71c-43e72908b092 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2526 uncompressed: false - body: "" + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:23.217669+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + Content-Length: + - "2526" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - afee1aa0-c97e-4bfd-8ae1-841da72e2d5e - status: 204 No Content - code: 204 - duration: 267.636256ms + - 059bdac2-35df-474d-8b91-ab754c88d041 + status: 200 OK + code: 200 + duration: 162.00533ms - id: 103 request: proto: HTTP/1.1 @@ -5138,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/ips/85981408-d7a7-4df5-98f0-c429cc44c5c0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 method: DELETE response: proto: HTTP/2.0 @@ -5150,25 +4338,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:50 GMT + - Wed, 29 Oct 2025 22:55: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: - - bd42dd74-ffcb-4ff0-94b4-1f283bca6549 + - 3163a147-3a29-411b-83bd-64eed91d7138 status: 204 No Content code: 204 - duration: 284.896328ms + duration: 422.953769ms - id: 104 request: proto: HTTP/1.1 @@ -5187,7 +4367,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/504adef6-3b2a-4fae-b12e-d32d2ca65e98/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/action method: POST response: proto: HTTP/2.0 @@ -5197,31 +4377,23 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98/action","href_result":"/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98","id":"069d0c2f-8baa-412e-b569-d7bc75094c53","progress":0,"started_at":"2025-10-15T16:37:50.990543+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task": {"id": "e9568521-9ce0-46a6-beeb-27bf4c48abc4", "description": "server_terminate", "status": "pending", "href_from": "/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/action", "href_result": "/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9", "started_at": "2025-10-29T22:55:26.754779+00:00", "terminated_at": null, "progress": 0, "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 16:37:51 GMT + - Wed, 29 Oct 2025 22:55:26 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/069d0c2f-8baa-412e-b569-d7bc75094c53 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e9568521-9ce0-46a6-beeb-27bf4c48abc4 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: - - c1d52d95-7b62-4643-8a64-ad21f3c4c500 + - b9fce54e-c90e-4544-be4f-e1f38708b542 status: 202 Accepted code: 202 - duration: 191.71139ms + duration: 270.576144ms - id: 105 request: proto: HTTP/1.1 @@ -5238,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/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -5246,31 +4418,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2444 + content_length: 2489 uncompressed: 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-15T16:37:34.206426+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-bhaskara","id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"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":"304","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:bb:a7","maintenances":[],"modification_date":"2025-10-15T16:37:50.857658+00:00","name":"tf-srv-agitated-bhaskara","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.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.105.246","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"f80e5386-98f0-4e2f-98b2-3744ebb1dfb2","ipam_id":"045b397d-51bb-4747-8ce6-8a1baf0b8272","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"34b84a53-4195-4a27-a92a-576044e62e3f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": {"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}, "public_ips": [{"id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3", "address": "51.15.236.240", "dynamic": true, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "pending", "ipam_id": "aefabfce-65bd-4693-84bb-b0156cacbc36"}], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:26.531863+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2444" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2489" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:51 GMT + - Wed, 29 Oct 2025 22:55: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: - - c85980d4-3f9f-4f72-818b-10d96d30421d + - bc51a97d-bf04-43eb-9932-7d22eec14155 status: 200 OK code: 200 - duration: 111.476208ms + duration: 148.848927ms - id: 106 request: proto: HTTP/1.1 @@ -5287,7 +4451,89 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1967 + uncompressed: false + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:26.531863+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' + headers: + Content-Length: + - "1967" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:55:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - 7364392d-cfec-491a-9aff-5a029b023c0c + status: 200 OK + code: 200 + duration: 147.458378ms + - 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/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1921 + uncompressed: false + body: '{"server": {"id": "d61b9e5c-8628-4a83-839b-6736905fd9c9", "name": "tf-srv-flamboyant-turing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-flamboyant-turing", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d8621f39-e0ca-4567-a3b8-657838bee3c8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "reserved_ip"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:55:05.075490+00:00", "modification_date": "2025-10-29T22:55:26.531863+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "401", "node_id": "40"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "1921" + Content-Type: + - application/json + Date: + - Wed, 29 Oct 2025 22:55:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + X-Request-Id: + - c97ff46f-b116-40ca-a55e-ee10d586e502 + status: 200 OK + code: 200 + duration: 151.822061ms + - 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/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -5297,30 +4543,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "d61b9e5c-8628-4a83-839b-6736905fd9c9"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:56 GMT + - Wed, 29 Oct 2025 22:55: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: - - 3c96294a-1a52-4a08-992e-f831d5815f4d + - 50022953-e316-425d-bef6-670b3a95d364 status: 404 Not Found code: 404 - duration: 52.021783ms - - id: 107 + duration: 52.440269ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5336,7 +4574,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -5346,30 +4584,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"34b84a53-4195-4a27-a92a-576044e62e3f","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:56 GMT + - Wed, 29 Oct 2025 22:55: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: - - 748dbb5a-ca7c-4687-b0e3-f2327b6aaab4 + - 92f99ab1-4d51-4b6f-83e5-89f26b2fc5ac status: 404 Not Found code: 404 - duration: 32.285108ms - - id: 108 + duration: 28.439955ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5385,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/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: GET response: proto: HTTP/2.0 @@ -5395,30 +4625,22 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-15T16:37:34.308518Z","id":"34b84a53-4195-4a27-a92a-576044e62e3f","last_detached_at":"2025-10-15T16:37:54.805017Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","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-10-15T16:37:54.805017Z","zone":"fr-par-1"}' + body: '{"id":"d8621f39-e0ca-4567-a3b8-657838bee3c8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"105bdce1-64c0-48ab-899d-868455867ecf", "created_at":"2025-10-29T22:55:05.253586Z", "updated_at":"2025-10-29T22:55:40.678925Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2025-10-29T22:55:40.678925Z", "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 16:37:56 GMT + - Wed, 29 Oct 2025 22:55: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: - - 85bba7d6-6522-4ea6-9580-4a2ee0123868 + - cccb14e5-7597-414f-8c0d-cab0f4108aec status: 200 OK code: 200 - duration: 46.706278ms - - id: 109 + duration: 96.478354ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5434,7 +4656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/34b84a53-4195-4a27-a92a-576044e62e3f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 method: DELETE response: proto: HTTP/2.0 @@ -5446,26 +4668,18 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:56 GMT + - Wed, 29 Oct 2025 22:55: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: - - 9fcf731f-8931-4bcd-841e-970da99ca1db + - 7f131e7b-a1d4-435b-b45e-a1a4471f1685 status: 204 No Content code: 204 - duration: 79.130216ms - - id: 110 + duration: 141.60732ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5481,7 +4695,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/504adef6-3b2a-4fae-b12e-d32d2ca65e98 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 method: GET response: proto: HTTP/2.0 @@ -5491,26 +4705,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"504adef6-3b2a-4fae-b12e-d32d2ca65e98","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "d61b9e5c-8628-4a83-839b-6736905fd9c9"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 16:37:56 GMT + - Wed, 29 Oct 2025 22:55: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: - - b5e50d19-7ac0-43a6-9f57-c96237453101 + - d8aa802d-13f4-4041-8b7c-c48e5e17b399 status: 404 Not Found code: 404 - duration: 43.703858ms + duration: 57.344941ms diff --git a/internal/services/instance/testdata/snapshot-from-s3.cassette.yaml b/internal/services/instance/testdata/snapshot-from-s3.cassette.yaml index f39bbb6f0..1647bdb4c 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-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -18,7 +18,7 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - aa797379-ed9e-44f4-87a0-8d3ae0bcc5eb + - c1b39faf-dc5a-431f-b159-daaa712c6ac1 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -26,8 +26,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150259Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/ + - 20251029T225357Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/ method: PUT response: proto: HTTP/2.0 @@ -42,16 +42,16 @@ interactions: Content-Length: - "0" Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 29 Oct 2025 22:53:57 GMT Location: - - /test-acc-scaleway-instance-snapshot-689159877034620738 + - /test-acc-scaleway-instance-snapshot-4680108982039155704 X-Amz-Id-2: - - txg5c52665be4024a118863-0068efb7a3 + - txgc94a0854d49e4612ae31-0069029b05 X-Amz-Request-Id: - - txg5c52665be4024a118863-0068efb7a3 + - txgc94a0854d49e4612ae31-0069029b05 status: 200 OK code: 200 - duration: 3.90455116s + duration: 523.164613ms - id: 1 request: proto: HTTP/1.1 @@ -60,16 +60,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + acl: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 08f9538d-5b28-492e-961e-835f052c680f + - c2af11c8-59b9-4d85-8870-303fe22c26ca Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -81,8 +83,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150303Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?acl= + - 20251029T225358Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?acl= method: PUT response: proto: HTTP/2.0 @@ -97,14 +99,14 @@ interactions: Content-Length: - "0" Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53:58 GMT X-Amz-Id-2: - - txg63ec2673e7a749f5a45c-0068efb7a7 + - txgee4a6929c25a4ea68e86-0069029b06 X-Amz-Request-Id: - - txg63ec2673e7a749f5a45c-0068efb7a7 + - txgee4a6929c25a4ea68e86-0069029b06 status: 200 OK code: 200 - duration: 223.144447ms + duration: 119.424482ms - id: 2 request: proto: HTTP/1.1 @@ -113,16 +115,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + acl: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 6547fb37-12ec-4221-b917-14643ca56fae + - 386ed1cd-04e2-4510-9135-ad0a574fad75 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -130,8 +134,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150303Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?acl= + - 20251029T225358Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -150,14 +154,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53:58 GMT X-Amz-Id-2: - - txg335d3aa6d9314ee78c0a-0068efb7a7 + - txga45284206f254693a51d-0069029b06 X-Amz-Request-Id: - - txg335d3aa6d9314ee78c0a-0068efb7a7 + - txga45284206f254693a51d-0069029b06 status: 200 OK code: 200 - duration: 144.894552ms + duration: 26.306107ms - id: 3 request: proto: HTTP/1.1 @@ -166,16 +170,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + object-lock: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 8bef4253-3141-4fd7-abe9-c62a0f40e363 + - 6e183bdd-dbb5-4743-9871-ca5cfa0c06ec Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -183,8 +189,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150303Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?object-lock= + - 20251029T225358Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -192,23 +198,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 323 + content_length: 324 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg1428b3a4d8d74bbdbd58-0068efb7a7txg1428b3a4d8d74bbdbd58-0068efb7a7/test-acc-scaleway-instance-snapshot-689159877034620738 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg307ece8a011843619e36-0069029b06txg307ece8a011843619e36-0069029b06/test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "323" + - "324" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53:58 GMT X-Amz-Id-2: - - txg1428b3a4d8d74bbdbd58-0068efb7a7 + - txg307ece8a011843619e36-0069029b06 X-Amz-Request-Id: - - txg1428b3a4d8d74bbdbd58-0068efb7a7 + - txg307ece8a011843619e36-0069029b06 status: 404 Not Found code: 404 - duration: 130.240642ms + duration: 59.138819ms - id: 4 request: proto: HTTP/1.1 @@ -217,7 +223,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -226,7 +232,7 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - cd94262a-ae50-4a46-a9f2-3c2f94c87b61 + - 145a157e-c3fa-4173-89f2-0f606be70e66 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -234,8 +240,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150303Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/ + - 20251029T225358Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -243,25 +249,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 280 + content_length: 281 uncompressed: false body: |- - test-acc-scaleway-instance-snapshot-6891598770346207381000false + test-acc-scaleway-instance-snapshot-46801089820391557041000false headers: Content-Length: - - "280" + - "281" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53:58 GMT X-Amz-Id-2: - - txge35f12cd4daa454bb0f6-0068efb7a7 + - txgd24f0c0fdef94601910a-0069029b06 X-Amz-Request-Id: - - txge35f12cd4daa454bb0f6-0068efb7a7 + - txgd24f0c0fdef94601910a-0069029b06 status: 200 OK code: 200 - duration: 113.914257ms + duration: 152.265359ms - id: 5 request: proto: HTTP/1.1 @@ -270,16 +276,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + tagging: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - a00b44ea-62af-49b8-b4c2-fb3b2344f376 + - cea6a59f-fb9d-4856-9f82-d9d367000434 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -287,8 +295,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150303Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?tagging= + - 20251029T225358Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -296,23 +304,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 347 + content_length: 349 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg42448f7557194e69b8a8-0068efb7a7txg42448f7557194e69b8a8-0068efb7a7/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 + body: NoSuchTagSetThe TagSet does not existtxg9163d9d13a0549c3b637-0069029b06txg9163d9d13a0549c3b637-0069029b06/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "347" + - "349" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53:58 GMT X-Amz-Id-2: - - txg42448f7557194e69b8a8-0068efb7a7 + - txg9163d9d13a0549c3b637-0069029b06 X-Amz-Request-Id: - - txg42448f7557194e69b8a8-0068efb7a7 + - txg9163d9d13a0549c3b637-0069029b06 status: 404 Not Found code: 404 - duration: 43.799828ms + duration: 17.799712ms - id: 6 request: proto: HTTP/1.1 @@ -321,16 +329,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + cors: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - fb317ad9-b50a-45f0-aafb-62633c8a0ff1 + - 2b2b577c-3bff-44c3-a0a7-7a4e670942bf Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -338,8 +348,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150303Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?cors= + - 20251029T225358Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -347,23 +357,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 291 + content_length: 292 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg01007a6368f2417494d1-0068efb7a7txg01007a6368f2417494d1-0068efb7a7/test-acc-scaleway-instance-snapshot-689159877034620738 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxgddde6ce40ca34962ab14-0069029b06txgddde6ce40ca34962ab14-0069029b06/test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "291" + - "292" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53:58 GMT X-Amz-Id-2: - - txg01007a6368f2417494d1-0068efb7a7 + - txgddde6ce40ca34962ab14-0069029b06 X-Amz-Request-Id: - - txg01007a6368f2417494d1-0068efb7a7 + - txgddde6ce40ca34962ab14-0069029b06 status: 404 Not Found code: 404 - duration: 50.263691ms + duration: 18.366372ms - id: 7 request: proto: HTTP/1.1 @@ -372,16 +382,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + versioning: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - a5d2f081-9086-4491-9574-c02a58da588a + - 03e3169e-34b5-44e9-92d2-46aeb8ffa54b Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -389,8 +401,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150303Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?versioning= + - 20251029T225358Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -409,14 +421,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53:58 GMT X-Amz-Id-2: - - txgb1b09e558e3e4db89550-0068efb7a7 + - txgfba92c55d5314e58b882-0069029b06 X-Amz-Request-Id: - - txgb1b09e558e3e4db89550-0068efb7a7 + - txgfba92c55d5314e58b882-0069029b06 status: 200 OK code: 200 - duration: 5.785923ms + duration: 66.919938ms - id: 8 request: proto: HTTP/1.1 @@ -425,16 +437,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + lifecycle: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - d182bdd4-3a9c-45fe-bd94-8c0e8b977552 + - 90edf8a1-52bf-4d44-860a-718e146b8ea0 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -442,8 +456,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150303Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?lifecycle= + - 20251029T225358Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -451,23 +465,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 380 + content_length: 382 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg74124894226548b78628-0068efb7a7txg74124894226548b78628-0068efb7a7/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg469621e8959b41f8a676-0069029b06txg469621e8959b41f8a676-0069029b06/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "380" + - "382" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53:58 GMT X-Amz-Id-2: - - txg74124894226548b78628-0068efb7a7 + - txg469621e8959b41f8a676-0069029b06 X-Amz-Request-Id: - - txg74124894226548b78628-0068efb7a7 + - txg469621e8959b41f8a676-0069029b06 status: 404 Not Found code: 404 - duration: 11.034158ms + duration: 22.946766ms - id: 9 request: proto: HTTP/1.1 @@ -476,3763 +490,18 @@ interactions: content_length: 196669 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" - body: !!binary | - MzAwMTANClFGSfsAAAADAAAAAAAAAAAAAAAAAAAAEAAAAABAAAAAAAAAAAAAAAIAAAAAAA - MAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAQAAABwAAAAAAAAAABoA/hXAAABgAAAZGlydHkgYml0AAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAABY29ycnVwdCBiaXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAACZXh0ZXJuYWwgZGF0YSBmaWxlAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAADY29tcHJlc3Npb24gdHlwZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAEZXh0ZW5kZWQgTDIgZW50cmllcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - EAbGF6eSByZWZjb3VudHMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAYml0 - bWFwcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBcmF3IGV4dG - VybmFsIGRhdGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAANCjANCngtYW16LWNoZWNrc3VtLWNyYzMyOngyTThQZz09 - DQoNCg== - form: {} + body: MzAwMTANClFGSfsAAAADAAAAAAAAAAAAAAAAAAAAEAAAAABAAAAAAAAAAAAAAAIAAAAAAAMAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAABwAAAAAAAAAABoA/hXAAABgAAAZGlydHkgYml0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABY29ycnVwdCBiaXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZXh0ZXJuYWwgZGF0YSBmaWxlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY29tcHJlc3Npb24gdHlwZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEZXh0ZW5kZWQgTDIgZW50cmllcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAbGF6eSByZWZjb3VudHMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAYml0bWFwcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBcmF3IGV4dGVybmFsIGRhdGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANCjANCngtYW16LWNoZWNrc3VtLWNyYzMyOngyTThQZz09DQoNCg== + form: + x-id: + - PutObject headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - dea98b2c-73ef-4200-938c-190a3db2c620 + - c7a419c8-0d03-4c31-afe5-84ab6f022718 Amz-Sdk-Request: - attempt=1; max=3 Content-Encoding: @@ -4244,12 +513,12 @@ interactions: X-Amz-Content-Sha256: - STREAMING-UNSIGNED-PAYLOAD-TRAILER X-Amz-Date: - - 20251015T150303Z + - 20251029T225358Z X-Amz-Decoded-Content-Length: - "196624" X-Amz-Trailer: - x-amz-checksum-crc32 - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?x-id=PutObject + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?x-id=PutObject method: PUT response: proto: HTTP/2.0 @@ -4264,7 +533,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53:58 GMT Etag: - '"59868f85d88d34ee79e32759dad70bf7"' X-Amz-Checksum-Crc32: @@ -4272,12 +541,12 @@ interactions: X-Amz-Checksum-Type: - FULL_OBJECT X-Amz-Id-2: - - txg737bce7458744ed8a5ed-0068efb7a7 + - txgd2829f2c617b4eab8eff-0069029b06 X-Amz-Request-Id: - - txg737bce7458744ed8a5ed-0068efb7a7 + - txgd2829f2c617b4eab8eff-0069029b06 status: 200 OK code: 200 - duration: 4.115790392s + duration: 4.412826502s - id: 10 request: proto: HTTP/1.1 @@ -4286,7 +555,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -4295,7 +564,7 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - f6b38f3b-1a14-48aa-b8da-e6cc78c48ea3 + - 201dcb39-4fc2-478b-9beb-fa23f1124c35 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -4303,8 +572,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150307Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 + - 20251029T225402Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 method: HEAD response: proto: HTTP/2.0 @@ -4323,18 +592,18 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:54:02 GMT Etag: - '"59868f85d88d34ee79e32759dad70bf7"' Last-Modified: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53:58 GMT X-Amz-Id-2: - - txg350e11a1f3064495841c-0068efb7ab + - txg774669afc3144eca8715-0069029b0a X-Amz-Request-Id: - - txg350e11a1f3064495841c-0068efb7ab + - txg774669afc3144eca8715-0069029b0a status: 200 OK code: 200 - duration: 17.167942ms + duration: 20.682923ms - id: 11 request: proto: HTTP/1.1 @@ -4343,16 +612,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + tagging: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 0addcf1c-e71b-4206-b6ac-8e1a2a8820ae + - a492b190-7c58-452f-8612-c5831c61e30f Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -4360,8 +631,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150307Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= + - 20251029T225402Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= method: GET response: proto: HTTP/2.0 @@ -4380,14 +651,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:54:03 GMT X-Amz-Id-2: - - txg7a90982b52074c0c9cbc-0068efb7ab + - txg6dbe0bab79654d87aa0e-0069029b0b X-Amz-Request-Id: - - txg7a90982b52074c0c9cbc-0068efb7ab + - txg6dbe0bab79654d87aa0e-0069029b0b status: 200 OK code: 200 - duration: 14.891787ms + duration: 19.476328ms - id: 12 request: proto: HTTP/1.1 @@ -4396,16 +667,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + acl: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 491f5218-d28c-4545-a88a-2cd47849c0cc + - 5c164095-375d-479c-a676-6c5b58985d2f Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -4413,8 +686,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150307Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= + - 20251029T225402Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= method: GET response: proto: HTTP/2.0 @@ -4433,26 +706,26 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:07 GMT + - Wed, 29 Oct 2025 22:54:03 GMT X-Amz-Id-2: - - txg44c299434507492881cf-0068efb7ab + - txg0c6515ae68aa48d4b2ad-0069029b0b X-Amz-Request-Id: - - txg44c299434507492881cf-0068efb7ab + - txg0c6515ae68aa48d4b2ad-0069029b0b status: 200 OK code: 200 - duration: 111.252313ms + duration: 22.405304ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 221 + content_length: 222 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"test-acc-snapshot-import-default","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"l_ssd","bucket":"test-acc-scaleway-instance-snapshot-4680108982039155704","key":"test-acc-instance-snapshot.qcow2"}' form: {} headers: Content-Type: @@ -4469,29 +742,21 @@ interactions: trailer: {} content_length: 774 uncompressed: false - 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"}}' + body: '{"snapshot": {"id": "0b287075-35eb-4caf-94b4-74f372ddea3d", "name": "test-acc-snapshot-import-default", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:03.934770+00:00", "modification_date": "2025-10-29T22:54:03.934770+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 1073741824, "state": "importing", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}, "task": {"id": "0023a130-b118-49ab-93ad-ff921f561488", "description": "import_snapshot", "status": "pending", "href_from": "/snapshots", "href_result": "snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d", "started_at": "2025-10-29T22:54:04.080338+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "774" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 87f525c2-cd92-4e8d-9399-bbb70bea02a0 + - 452b7b39-1290-4c41-a83a-5ba83671c0bf status: 201 Created code: 201 - duration: 1.08227353s + duration: 1.073824566s - id: 14 request: proto: HTTP/1.1 @@ -4508,7 +773,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d method: GET response: proto: HTTP/2.0 @@ -4518,29 +783,21 @@ interactions: trailer: {} content_length: 463 uncompressed: false - 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"}}' + body: '{"snapshot": {"id": "0b287075-35eb-4caf-94b4-74f372ddea3d", "name": "test-acc-snapshot-import-default", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:03.934770+00:00", "modification_date": "2025-10-29T22:54:03.934770+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 1073741824, "state": "importing", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - "463" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:09 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 239f037d-ee46-4bbd-a244-e2bbd59ee919 + - c2051398-4615-4989-a7e9-98332969c3b5 status: 200 OK code: 200 - duration: 110.73708ms + duration: 107.48546ms - id: 15 request: proto: HTTP/1.1 @@ -4557,7 +814,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d method: GET response: proto: HTTP/2.0 @@ -4567,29 +824,21 @@ interactions: trailer: {} content_length: 463 uncompressed: false - 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"}}' + body: '{"snapshot": {"id": "0b287075-35eb-4caf-94b4-74f372ddea3d", "name": "test-acc-snapshot-import-default", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:03.934770+00:00", "modification_date": "2025-10-29T22:54:05.520406+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 1073741824, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - "463" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e595ac75-672d-465d-acd6-5db37902eff3 + - 2e357fef-845c-4ac8-914c-ea96d9ce14f1 status: 200 OK code: 200 - duration: 111.562843ms + duration: 90.555405ms - id: 16 request: proto: HTTP/1.1 @@ -4606,7 +855,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d method: GET response: proto: HTTP/2.0 @@ -4616,29 +865,21 @@ interactions: trailer: {} content_length: 463 uncompressed: false - 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"}}' + body: '{"snapshot": {"id": "0b287075-35eb-4caf-94b4-74f372ddea3d", "name": "test-acc-snapshot-import-default", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:03.934770+00:00", "modification_date": "2025-10-29T22:54:05.520406+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 1073741824, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - "463" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0c71d4c4-265e-4aab-9537-f50d46418269 + - fbbc894b-391f-4d7c-9a4c-c6ef27ccc0a7 status: 200 OK code: 200 - duration: 104.127649ms + duration: 101.32372ms - id: 17 request: proto: HTTP/1.1 @@ -4655,7 +896,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d method: GET response: proto: HTTP/2.0 @@ -4665,29 +906,21 @@ interactions: trailer: {} content_length: 463 uncompressed: false - 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"}}' + body: '{"snapshot": {"id": "0b287075-35eb-4caf-94b4-74f372ddea3d", "name": "test-acc-snapshot-import-default", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:03.934770+00:00", "modification_date": "2025-10-29T22:54:05.520406+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 1073741824, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - "463" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 41bc33ba-5efc-4c39-b177-9f15b4c195f5 + - 9535a324-2564-4ed7-a2fa-e3b858ca3304 status: 200 OK code: 200 - duration: 89.99272ms + duration: 86.574291ms - id: 18 request: proto: HTTP/1.1 @@ -4696,16 +929,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + acl: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 753d13f6-1fba-48bf-b310-7112150e108b + - 863e262f-bf0a-4ee0-9755-495f892137d1 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -4713,8 +948,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150314Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?acl= + - 20251029T225409Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -4733,14 +968,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:54:09 GMT X-Amz-Id-2: - - txgd7bb8329e3d14e0b99fa-0068efb7b2 + - txgd717e441121440869fdc-0069029b11 X-Amz-Request-Id: - - txgd7bb8329e3d14e0b99fa-0068efb7b2 + - txgd717e441121440869fdc-0069029b11 status: 200 OK code: 200 - duration: 127.102354ms + duration: 131.721791ms - id: 19 request: proto: HTTP/1.1 @@ -4749,16 +984,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + object-lock: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 14b2903f-2e5f-48e7-912d-a86c61f2a284 + - f33fbfac-3692-486f-8eca-10d4c4d9cfe8 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -4766,8 +1003,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150314Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?object-lock= + - 20251029T225409Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -4775,23 +1012,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 323 + content_length: 324 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg7f437d581e7049ada249-0068efb7b2txg7f437d581e7049ada249-0068efb7b2/test-acc-scaleway-instance-snapshot-689159877034620738 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg1eb31795f1f54e348df3-0069029b12txg1eb31795f1f54e348df3-0069029b12/test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "323" + - "324" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:14 GMT + - Wed, 29 Oct 2025 22:54:10 GMT X-Amz-Id-2: - - txg7f437d581e7049ada249-0068efb7b2 + - txg1eb31795f1f54e348df3-0069029b12 X-Amz-Request-Id: - - txg7f437d581e7049ada249-0068efb7b2 + - txg1eb31795f1f54e348df3-0069029b12 status: 404 Not Found code: 404 - duration: 93.376391ms + duration: 116.38335ms - id: 20 request: proto: HTTP/1.1 @@ -4800,7 +1037,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -4809,7 +1046,7 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 8c68d34a-7aa7-4c0a-aaf4-b9d402513aee + - 9994bae4-f2d6-43dd-a8fb-d666546f626b Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -4817,8 +1054,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150315Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/ + - 20251029T225410Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -4826,25 +1063,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 789 + content_length: 790 uncompressed: false body: |- - 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 + test-acc-scaleway-instance-snapshot-46801089820391557041000falsetest-acc-instance-snapshot.qcow22025-10-29T22:53:58.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" + - "790" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54:10 GMT X-Amz-Id-2: - - txg9225ee37836d44379981-0068efb7b3 + - txg75189b6cbc4b42fc9f6e-0069029b12 X-Amz-Request-Id: - - txg9225ee37836d44379981-0068efb7b3 + - txg75189b6cbc4b42fc9f6e-0069029b12 status: 200 OK code: 200 - duration: 114.923562ms + duration: 154.608065ms - id: 21 request: proto: HTTP/1.1 @@ -4853,16 +1090,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + tagging: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 5a38413b-610c-4737-bd05-e57244ea508a + - ebf6e1fd-c639-4c64-81a6-fe039ed06d11 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -4870,8 +1109,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150315Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?tagging= + - 20251029T225410Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -4879,23 +1118,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 347 + content_length: 349 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxge952751684ea432e8640-0068efb7b3txge952751684ea432e8640-0068efb7b3/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 + body: NoSuchTagSetThe TagSet does not existtxg390407c0204346e9b400-0069029b12txg390407c0204346e9b400-0069029b12/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "347" + - "349" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54:10 GMT X-Amz-Id-2: - - txge952751684ea432e8640-0068efb7b3 + - txg390407c0204346e9b400-0069029b12 X-Amz-Request-Id: - - txge952751684ea432e8640-0068efb7b3 + - txg390407c0204346e9b400-0069029b12 status: 404 Not Found code: 404 - duration: 43.822576ms + duration: 47.357962ms - id: 22 request: proto: HTTP/1.1 @@ -4904,16 +1143,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + cors: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 0e9c70a4-3fb6-4149-97d5-13aac3bfd30d + - dfeddc17-f943-45bd-98d7-1d5f4f4a9421 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -4921,8 +1162,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150315Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?cors= + - 20251029T225410Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -4930,23 +1171,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 291 + content_length: 292 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg6f3f335df6444e30b7e5-0068efb7b3txg6f3f335df6444e30b7e5-0068efb7b3/test-acc-scaleway-instance-snapshot-689159877034620738 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxg2718bf0e497e4b88a10b-0069029b12txg2718bf0e497e4b88a10b-0069029b12/test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "291" + - "292" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54:10 GMT X-Amz-Id-2: - - txg6f3f335df6444e30b7e5-0068efb7b3 + - txg2718bf0e497e4b88a10b-0069029b12 X-Amz-Request-Id: - - txg6f3f335df6444e30b7e5-0068efb7b3 + - txg2718bf0e497e4b88a10b-0069029b12 status: 404 Not Found code: 404 - duration: 9.048437ms + duration: 37.610477ms - id: 23 request: proto: HTTP/1.1 @@ -4955,16 +1196,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + versioning: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 7d7c1a4a-bd4e-4edd-bd61-be485036305f + - c35c7eae-c1a7-4399-84eb-5b379661512d Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -4972,8 +1215,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150315Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?versioning= + - 20251029T225410Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -4992,14 +1235,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54:10 GMT X-Amz-Id-2: - - txg2129e28789e0465f9e6d-0068efb7b3 + - txgf3bb66eb52d04643b4d9-0069029b12 X-Amz-Request-Id: - - txg2129e28789e0465f9e6d-0068efb7b3 + - txgf3bb66eb52d04643b4d9-0069029b12 status: 200 OK code: 200 - duration: 110.283075ms + duration: 42.5006ms - id: 24 request: proto: HTTP/1.1 @@ -5008,16 +1251,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + lifecycle: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 68ca08f7-a48d-4025-bca9-7dc521d7249b + - 277109f8-ff8d-4c1e-819b-a52065677e2e Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -5025,8 +1270,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150315Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?lifecycle= + - 20251029T225410Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -5034,23 +1279,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 380 + content_length: 382 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgbb2476407e7746be830a-0068efb7b3txgbb2476407e7746be830a-0068efb7b3/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg97a065dd0ba6414b9dbb-0069029b12txg97a065dd0ba6414b9dbb-0069029b12/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "380" + - "382" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54:10 GMT X-Amz-Id-2: - - txgbb2476407e7746be830a-0068efb7b3 + - txg97a065dd0ba6414b9dbb-0069029b12 X-Amz-Request-Id: - - txgbb2476407e7746be830a-0068efb7b3 + - txg97a065dd0ba6414b9dbb-0069029b12 status: 404 Not Found code: 404 - duration: 8.765267ms + duration: 13.244425ms - id: 25 request: proto: HTTP/1.1 @@ -5059,7 +1304,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5068,7 +1313,7 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 8fc80cff-d6d9-4b3b-b8d4-9ca2fd695d46 + - a24d1a65-b18e-4acb-96a4-904729fabee4 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -5076,8 +1321,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150315Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 + - 20251029T225410Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 method: HEAD response: proto: HTTP/2.0 @@ -5096,18 +1341,18 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54:10 GMT Etag: - '"59868f85d88d34ee79e32759dad70bf7"' Last-Modified: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53:58 GMT X-Amz-Id-2: - - txgcbe837040b3e4e879b41-0068efb7b3 + - txg5b4e0a0235094d1784dc-0069029b12 X-Amz-Request-Id: - - txgcbe837040b3e4e879b41-0068efb7b3 + - txg5b4e0a0235094d1784dc-0069029b12 status: 200 OK code: 200 - duration: 10.695123ms + duration: 10.968189ms - id: 26 request: proto: HTTP/1.1 @@ -5116,16 +1361,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + tagging: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 4443c3d8-91a0-40d3-a56b-e52a75908c3c + - 51c92d12-3b11-44e7-9649-a5714c7fc73c Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -5133,8 +1380,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150315Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= + - 20251029T225410Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= method: GET response: proto: HTTP/2.0 @@ -5153,14 +1400,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54:10 GMT X-Amz-Id-2: - - txgb14b2828ed294339962f-0068efb7b3 + - txgc0de39e7c627406fa977-0069029b12 X-Amz-Request-Id: - - txgb14b2828ed294339962f-0068efb7b3 + - txgc0de39e7c627406fa977-0069029b12 status: 200 OK code: 200 - duration: 62.608782ms + duration: 93.381661ms - id: 27 request: proto: HTTP/1.1 @@ -5169,16 +1416,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + acl: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - b661f0e4-bfa5-4803-9dd0-d609d0c5960d + - ddc0fed5-ea5a-4298-99c8-4ffced593d7d Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -5186,8 +1435,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150315Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= + - 20251029T225410Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= method: GET response: proto: HTTP/2.0 @@ -5206,14 +1455,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54:10 GMT X-Amz-Id-2: - - txg38f2a7d9ec294fa696fe-0068efb7b3 + - txg7449007572244172bcb2-0069029b12 X-Amz-Request-Id: - - txg38f2a7d9ec294fa696fe-0068efb7b3 + - txg7449007572244172bcb2-0069029b12 status: 200 OK code: 200 - duration: 12.530062ms + duration: 47.251784ms - id: 28 request: proto: HTTP/1.1 @@ -5230,7 +1479,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d method: GET response: proto: HTTP/2.0 @@ -5240,29 +1489,21 @@ interactions: trailer: {} content_length: 463 uncompressed: false - 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"}}' + body: '{"snapshot": {"id": "0b287075-35eb-4caf-94b4-74f372ddea3d", "name": "test-acc-snapshot-import-default", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:03.934770+00:00", "modification_date": "2025-10-29T22:54:05.520406+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 1073741824, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - "463" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e18f0e9c-5696-4320-86a6-893578c70a18 + - 81e66c99-b29f-4764-99d0-5c2fa60103b5 status: 200 OK code: 200 - duration: 93.988689ms + duration: 100.104902ms - id: 29 request: proto: HTTP/1.1 @@ -5271,16 +1512,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + acl: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - aa1ca1fb-8841-411e-94aa-828643d42270 + - 8b138ae1-cfd5-460b-b045-f9471508a9d3 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -5288,8 +1531,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150315Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?acl= + - 20251029T225410Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -5308,14 +1551,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54:10 GMT X-Amz-Id-2: - - txgd423211dbc4b4281b4b2-0068efb7b3 + - txgd1eff684cf5e4298acff-0069029b12 X-Amz-Request-Id: - - txgd423211dbc4b4281b4b2-0068efb7b3 + - txgd1eff684cf5e4298acff-0069029b12 status: 200 OK code: 200 - duration: 12.462325ms + duration: 15.667326ms - id: 30 request: proto: HTTP/1.1 @@ -5324,16 +1567,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + object-lock: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 6b927d13-c9bb-4e72-b114-49241b03aee0 + - 9120be4a-a2c6-4ef8-abb2-4197693da697 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -5341,8 +1586,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150315Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?object-lock= + - 20251029T225410Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -5350,23 +1595,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 323 + content_length: 324 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg9e7f71ed84614da48a36-0068efb7b3txg9e7f71ed84614da48a36-0068efb7b3/test-acc-scaleway-instance-snapshot-689159877034620738 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg4ae69ba99b0541899f3a-0069029b12txg4ae69ba99b0541899f3a-0069029b12/test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "323" + - "324" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54:10 GMT X-Amz-Id-2: - - txg9e7f71ed84614da48a36-0068efb7b3 + - txg4ae69ba99b0541899f3a-0069029b12 X-Amz-Request-Id: - - txg9e7f71ed84614da48a36-0068efb7b3 + - txg4ae69ba99b0541899f3a-0069029b12 status: 404 Not Found code: 404 - duration: 39.989502ms + duration: 33.594888ms - id: 31 request: proto: HTTP/1.1 @@ -5375,7 +1620,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5384,7 +1629,7 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 5dfb3161-9893-48cc-bd1c-2f604c6b7f1f + - 50bab079-50e8-40ba-b624-368616e0a399 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -5392,8 +1637,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150315Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/ + - 20251029T225410Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -5401,25 +1646,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 789 + content_length: 790 uncompressed: false body: |- - 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 + test-acc-scaleway-instance-snapshot-46801089820391557041000falsetest-acc-instance-snapshot.qcow22025-10-29T22:53:58.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" + - "790" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54:10 GMT X-Amz-Id-2: - - txgfaf6dd2cf28540039be2-0068efb7b3 + - txg210c3244baaa4babb6f7-0069029b12 X-Amz-Request-Id: - - txgfaf6dd2cf28540039be2-0068efb7b3 + - txg210c3244baaa4babb6f7-0069029b12 status: 200 OK code: 200 - duration: 13.566003ms + duration: 111.840285ms - id: 32 request: proto: HTTP/1.1 @@ -5428,16 +1673,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + tagging: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - a6804808-1b08-45d8-85e2-8ee58a15231b + - c9f59e97-a935-48be-90c2-e0665a619b82 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -5445,8 +1692,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150315Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?tagging= + - 20251029T225411Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -5454,23 +1701,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 347 + content_length: 349 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg4f2b5e03c336463591fb-0068efb7b3txg4f2b5e03c336463591fb-0068efb7b3/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 + body: NoSuchTagSetThe TagSet does not existtxg6b2ad1780f8a4b71ab71-0069029b13txg6b2ad1780f8a4b71ab71-0069029b13/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "347" + - "349" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54:11 GMT X-Amz-Id-2: - - txg4f2b5e03c336463591fb-0068efb7b3 + - txg6b2ad1780f8a4b71ab71-0069029b13 X-Amz-Request-Id: - - txg4f2b5e03c336463591fb-0068efb7b3 + - txg6b2ad1780f8a4b71ab71-0069029b13 status: 404 Not Found code: 404 - duration: 65.027594ms + duration: 49.512441ms - id: 33 request: proto: HTTP/1.1 @@ -5479,16 +1726,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + cors: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 936ba5bd-496c-4de5-84ca-03ddf36dfe3d + - 9a91f208-034e-42bc-8e9d-c8c6590a6879 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -5496,8 +1745,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150315Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?cors= + - 20251029T225411Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -5505,23 +1754,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 291 + content_length: 292 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg2e46ff71ffcf44198c94-0068efb7b3txg2e46ff71ffcf44198c94-0068efb7b3/test-acc-scaleway-instance-snapshot-689159877034620738 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxg16b188ad70f643309ec8-0069029b13txg16b188ad70f643309ec8-0069029b13/test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "291" + - "292" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54:11 GMT X-Amz-Id-2: - - txg2e46ff71ffcf44198c94-0068efb7b3 + - txg16b188ad70f643309ec8-0069029b13 X-Amz-Request-Id: - - txg2e46ff71ffcf44198c94-0068efb7b3 + - txg16b188ad70f643309ec8-0069029b13 status: 404 Not Found code: 404 - duration: 106.366455ms + duration: 110.950852ms - id: 34 request: proto: HTTP/1.1 @@ -5530,16 +1779,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + versioning: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - d40cb98d-8f0c-4068-85f8-fa579e16c41a + - c92c2dfe-4c0d-4d8a-9667-cd342fce6f04 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -5547,8 +1798,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150315Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?versioning= + - 20251029T225411Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -5567,14 +1818,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54:11 GMT X-Amz-Id-2: - - txg2c7790a35e6a47adb515-0068efb7b3 + - txg1f53a541f101457b99cf-0069029b13 X-Amz-Request-Id: - - txg2c7790a35e6a47adb515-0068efb7b3 + - txg1f53a541f101457b99cf-0069029b13 status: 200 OK code: 200 - duration: 101.457967ms + duration: 111.258037ms - id: 35 request: proto: HTTP/1.1 @@ -5583,16 +1834,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + lifecycle: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 16463fa9-ecb2-490a-ae05-36408ff67102 + - 4f1d2b5a-660d-4acf-963a-3f373685fed1 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -5600,8 +1853,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150315Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?lifecycle= + - 20251029T225411Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -5609,23 +1862,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 380 + content_length: 382 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxga6e21a915a124bd08ea6-0068efb7b3txga6e21a915a124bd08ea6-0068efb7b3/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg272e92f2912c41b69f1d-0069029b13txg272e92f2912c41b69f1d-0069029b13/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "380" + - "382" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:15 GMT + - Wed, 29 Oct 2025 22:54:11 GMT X-Amz-Id-2: - - txga6e21a915a124bd08ea6-0068efb7b3 + - txg272e92f2912c41b69f1d-0069029b13 X-Amz-Request-Id: - - txga6e21a915a124bd08ea6-0068efb7b3 + - txg272e92f2912c41b69f1d-0069029b13 status: 404 Not Found code: 404 - duration: 102.35024ms + duration: 15.105596ms - id: 36 request: proto: HTTP/1.1 @@ -5634,7 +1887,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5643,7 +1896,7 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 9d9e8896-c66f-40ff-a217-2648cd959855 + - c7125a4d-eddf-46a5-9cde-1af39beacdb8 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -5651,8 +1904,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150316Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 + - 20251029T225411Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 method: HEAD response: proto: HTTP/2.0 @@ -5671,18 +1924,18 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:54:11 GMT Etag: - '"59868f85d88d34ee79e32759dad70bf7"' Last-Modified: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53:58 GMT X-Amz-Id-2: - - txg27285c842d1b4a398c1f-0068efb7b4 + - txg3f55a270661b4f58b32b-0069029b13 X-Amz-Request-Id: - - txg27285c842d1b4a398c1f-0068efb7b4 + - txg3f55a270661b4f58b32b-0069029b13 status: 200 OK code: 200 - duration: 14.274771ms + duration: 12.61573ms - id: 37 request: proto: HTTP/1.1 @@ -5691,16 +1944,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + tagging: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 311d3805-99c1-4d59-a8ad-8fa4cec7473f + - 0ea4952d-af5d-4f5f-8d18-f59c5986f0ac Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -5708,8 +1963,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150316Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= + - 20251029T225411Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= method: GET response: proto: HTTP/2.0 @@ -5728,14 +1983,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:54:11 GMT X-Amz-Id-2: - - txgaff79856d59840209832-0068efb7b4 + - txgcfa0f674c8fd4a9e99e8-0069029b13 X-Amz-Request-Id: - - txgaff79856d59840209832-0068efb7b4 + - txgcfa0f674c8fd4a9e99e8-0069029b13 status: 200 OK code: 200 - duration: 7.12914ms + duration: 45.453542ms - id: 38 request: proto: HTTP/1.1 @@ -5744,16 +1999,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + acl: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - a427f2e5-219c-458c-af42-3fe5b069ad0a + - afbe5cc2-ed1d-4245-bebf-be03f065749b Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -5761,8 +2018,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150316Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= + - 20251029T225411Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= method: GET response: proto: HTTP/2.0 @@ -5781,14 +2038,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:54:11 GMT X-Amz-Id-2: - - txgd7401486990142448304-0068efb7b4 + - txg9f3c177a68ac41efba40-0069029b13 X-Amz-Request-Id: - - txgd7401486990142448304-0068efb7b4 + - txg9f3c177a68ac41efba40-0069029b13 status: 200 OK code: 200 - duration: 8.381518ms + duration: 46.823013ms - id: 39 request: proto: HTTP/1.1 @@ -5805,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/instance/v1/zones/fr-par-1/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d method: GET response: proto: HTTP/2.0 @@ -5815,29 +2072,21 @@ interactions: trailer: {} content_length: 463 uncompressed: false - 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"}}' + body: '{"snapshot": {"id": "0b287075-35eb-4caf-94b4-74f372ddea3d", "name": "test-acc-snapshot-import-default", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:03.934770+00:00", "modification_date": "2025-10-29T22:54:05.520406+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 1073741824, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - "463" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 0e38a47c-5479-49c1-8c8c-e5e883c401e3 + - cf728fa0-1a09-4dd1-9229-6095d42644be status: 200 OK code: 200 - duration: 85.777181ms + duration: 87.57341ms - id: 40 request: proto: HTTP/1.1 @@ -5856,7 +2105,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/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d method: PATCH response: proto: HTTP/2.0 @@ -5866,29 +2115,21 @@ interactions: trailer: {} content_length: 460 uncompressed: false - 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"}}' + body: '{"snapshot": {"id": "0b287075-35eb-4caf-94b4-74f372ddea3d", "name": "test-acc-snapshot-import-lssd", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:03.934770+00:00", "modification_date": "2025-10-29T22:54:11.736669+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 1073741824, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - "460" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - cf848778-2d92-49b1-93c7-6a899436ca81 + - 7aac810c-80a0-461a-8b04-dd2d17922217 status: 200 OK code: 200 - duration: 131.813536ms + duration: 114.341282ms - id: 41 request: proto: HTTP/1.1 @@ -5905,7 +2146,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d method: GET response: proto: HTTP/2.0 @@ -5915,29 +2156,21 @@ interactions: trailer: {} content_length: 460 uncompressed: false - 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"}}' + body: '{"snapshot": {"id": "0b287075-35eb-4caf-94b4-74f372ddea3d", "name": "test-acc-snapshot-import-lssd", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:03.934770+00:00", "modification_date": "2025-10-29T22:54:11.736669+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 1073741824, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - "460" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a675046a-83ab-4ea1-b062-4e53773c29d9 + - c203d51b-d4d4-4d3c-aacb-967aed175eae status: 200 OK code: 200 - duration: 96.783227ms + duration: 96.838234ms - id: 42 request: proto: HTTP/1.1 @@ -5954,7 +2187,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d method: GET response: proto: HTTP/2.0 @@ -5964,29 +2197,21 @@ interactions: trailer: {} content_length: 460 uncompressed: false - 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"}}' + body: '{"snapshot": {"id": "0b287075-35eb-4caf-94b4-74f372ddea3d", "name": "test-acc-snapshot-import-lssd", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:03.934770+00:00", "modification_date": "2025-10-29T22:54:11.736669+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 1073741824, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - "460" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 40b30ed5-412b-4624-80cb-6dd4226f4de9 + - 5b9e9365-7bd4-4f31-a5fc-d178e9dbda0f status: 200 OK code: 200 - duration: 115.003222ms + duration: 83.655475ms - id: 43 request: proto: HTTP/1.1 @@ -5995,16 +2220,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + acl: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - e98b24a9-e44f-4afe-a113-e5efba2f28fb + - 7a3c7b8e-30ac-4d0d-a6f2-39e635ed413f Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -6012,8 +2239,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150316Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?acl= + - 20251029T225412Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -6032,14 +2259,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:54:12 GMT X-Amz-Id-2: - - txg61c14de614a64f739827-0068efb7b4 + - txga0d80038e5214d8e9fdc-0069029b14 X-Amz-Request-Id: - - txg61c14de614a64f739827-0068efb7b4 + - txga0d80038e5214d8e9fdc-0069029b14 status: 200 OK code: 200 - duration: 7.492652ms + duration: 7.411729ms - id: 44 request: proto: HTTP/1.1 @@ -6048,16 +2275,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + object-lock: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 5e441e5e-8139-447d-9303-c5ffb6b8839e + - 7a0e97cb-5434-4c09-8c36-f41f4c7bc490 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -6065,8 +2294,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150316Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?object-lock= + - 20251029T225412Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -6074,23 +2303,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 323 + content_length: 324 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg1cc8699062bb4b4eb2ee-0068efb7b4txg1cc8699062bb4b4eb2ee-0068efb7b4/test-acc-scaleway-instance-snapshot-689159877034620738 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgba20564a700842268ee4-0069029b14txgba20564a700842268ee4-0069029b14/test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "323" + - "324" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:54:12 GMT X-Amz-Id-2: - - txg1cc8699062bb4b4eb2ee-0068efb7b4 + - txgba20564a700842268ee4-0069029b14 X-Amz-Request-Id: - - txg1cc8699062bb4b4eb2ee-0068efb7b4 + - txgba20564a700842268ee4-0069029b14 status: 404 Not Found code: 404 - duration: 44.425666ms + duration: 12.58869ms - id: 45 request: proto: HTTP/1.1 @@ -6099,7 +2328,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6108,7 +2337,7 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 303c277a-ecf0-4595-89e5-cc9883629c50 + - 5b87a259-0f99-4599-ae92-f5598e52a304 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -6116,8 +2345,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150316Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/ + - 20251029T225412Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -6125,25 +2354,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 789 + content_length: 790 uncompressed: false body: |- - 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 + test-acc-scaleway-instance-snapshot-46801089820391557041000falsetest-acc-instance-snapshot.qcow22025-10-29T22:53:58.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" + - "790" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:54:12 GMT X-Amz-Id-2: - - txg984661219bd94b5f8531-0068efb7b4 + - txge1b3fdc4c6cd43998074-0069029b14 X-Amz-Request-Id: - - txg984661219bd94b5f8531-0068efb7b4 + - txge1b3fdc4c6cd43998074-0069029b14 status: 200 OK code: 200 - duration: 11.935007ms + duration: 146.030637ms - id: 46 request: proto: HTTP/1.1 @@ -6152,16 +2381,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + tagging: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - ce0a2ebc-88cf-4eef-a654-464ddc238427 + - 469375f5-3f05-46f6-b575-598f0fcc9222 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -6169,8 +2400,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150316Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?tagging= + - 20251029T225412Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -6178,23 +2409,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 347 + content_length: 349 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg37315e7f14f6453ebf72-0068efb7b4txg37315e7f14f6453ebf72-0068efb7b4/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 + body: NoSuchTagSetThe TagSet does not existtxg06e3b9c012804834a04e-0069029b14txg06e3b9c012804834a04e-0069029b14/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "347" + - "349" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 29 Oct 2025 22:54:12 GMT X-Amz-Id-2: - - txg37315e7f14f6453ebf72-0068efb7b4 + - txg06e3b9c012804834a04e-0069029b14 X-Amz-Request-Id: - - txg37315e7f14f6453ebf72-0068efb7b4 + - txg06e3b9c012804834a04e-0069029b14 status: 404 Not Found code: 404 - duration: 23.835679ms + duration: 12.051225ms - id: 47 request: proto: HTTP/1.1 @@ -6203,16 +2434,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + cors: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 4e49209f-64ca-4c87-b6fd-70e2ac80934f + - 1684e190-60b2-49af-a784-22809c3c7d2b Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -6220,8 +2453,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150317Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?cors= + - 20251029T225412Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -6229,23 +2462,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 291 + content_length: 292 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxgf24078eca2c34d849171-0068efb7b5txgf24078eca2c34d849171-0068efb7b5/test-acc-scaleway-instance-snapshot-689159877034620738 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxg5b176f4ca28641d5b179-0069029b14txg5b176f4ca28641d5b179-0069029b14/test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "291" + - "292" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:54:12 GMT X-Amz-Id-2: - - txgf24078eca2c34d849171-0068efb7b5 + - txg5b176f4ca28641d5b179-0069029b14 X-Amz-Request-Id: - - txgf24078eca2c34d849171-0068efb7b5 + - txg5b176f4ca28641d5b179-0069029b14 status: 404 Not Found code: 404 - duration: 9.723082ms + duration: 12.434842ms - id: 48 request: proto: HTTP/1.1 @@ -6254,16 +2487,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + versioning: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - ead8a99d-6b62-416b-9b70-7280e1a9bd81 + - 35d319dc-01dc-4ec5-8959-8967b9810bca Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -6271,8 +2506,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150317Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?versioning= + - 20251029T225412Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -6291,14 +2526,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:54:12 GMT X-Amz-Id-2: - - txgb39dc72d6f1740b29a29-0068efb7b5 + - txg5edd2a0be56a47e0b971-0069029b14 X-Amz-Request-Id: - - txgb39dc72d6f1740b29a29-0068efb7b5 + - txg5edd2a0be56a47e0b971-0069029b14 status: 200 OK code: 200 - duration: 38.295198ms + duration: 13.994378ms - id: 49 request: proto: HTTP/1.1 @@ -6307,16 +2542,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + lifecycle: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 002630a6-f293-408d-a07c-da2431496976 + - 48d9d485-17b7-4a58-bb94-bfbe13cf1609 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -6324,8 +2561,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150317Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?lifecycle= + - 20251029T225412Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -6333,23 +2570,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 380 + content_length: 382 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg2fb3feed561e4b39a9d5-0068efb7b5txg2fb3feed561e4b39a9d5-0068efb7b5/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg147b49aa90a8462b8196-0069029b14txg147b49aa90a8462b8196-0069029b14/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 headers: Content-Length: - - "380" + - "382" Content-Type: - application/xml Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:54:12 GMT X-Amz-Id-2: - - txg2fb3feed561e4b39a9d5-0068efb7b5 + - txg147b49aa90a8462b8196-0069029b14 X-Amz-Request-Id: - - txg2fb3feed561e4b39a9d5-0068efb7b5 + - txg147b49aa90a8462b8196-0069029b14 status: 404 Not Found code: 404 - duration: 6.656224ms + duration: 14.417459ms - id: 50 request: proto: HTTP/1.1 @@ -6358,7 +2595,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6367,7 +2604,7 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 2bed1f36-9f13-46ca-9e22-462f11172b8d + - 3c36eaec-4ee4-43c3-9618-63b32a025577 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -6375,8 +2612,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150317Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 + - 20251029T225412Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 method: HEAD response: proto: HTTP/2.0 @@ -6395,18 +2632,18 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:54:12 GMT Etag: - '"59868f85d88d34ee79e32759dad70bf7"' Last-Modified: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 29 Oct 2025 22:53:58 GMT X-Amz-Id-2: - - txg4b53efd63db3426194d8-0068efb7b5 + - txg116fa095ff2e43588de6-0069029b14 X-Amz-Request-Id: - - txg4b53efd63db3426194d8-0068efb7b5 + - txg116fa095ff2e43588de6-0069029b14 status: 200 OK code: 200 - duration: 8.686069ms + duration: 12.841392ms - id: 51 request: proto: HTTP/1.1 @@ -6415,16 +2652,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + tagging: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 7ac23077-f4a4-4315-adde-ddec97648117 + - c3701f2a-8b77-41d8-ac7c-80d9fe04f349 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -6432,8 +2671,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150317Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= + - 20251029T225412Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= method: GET response: proto: HTTP/2.0 @@ -6452,14 +2691,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:54:12 GMT X-Amz-Id-2: - - txg159f5e81eb5c45c7809a-0068efb7b5 + - txg5afce80246914cfb8f06-0069029b14 X-Amz-Request-Id: - - txg159f5e81eb5c45c7809a-0068efb7b5 + - txg5afce80246914cfb8f06-0069029b14 status: 200 OK code: 200 - duration: 88.144739ms + duration: 125.776765ms - id: 52 request: proto: HTTP/1.1 @@ -6468,16 +2707,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + acl: + - "" headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 4fac9295-bbdd-4d81-8ea7-565f689b9e25 + - 3b141069-2a85-4384-9059-08333732034d Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -6485,8 +2726,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150317Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= + - 20251029T225412Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= method: GET response: proto: HTTP/2.0 @@ -6505,14 +2746,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:54:12 GMT X-Amz-Id-2: - - txge7fac7c57c834b92a876-0068efb7b5 + - txg57eea5e4f326440a8fa8-0069029b14 X-Amz-Request-Id: - - txge7fac7c57c834b92a876-0068efb7b5 + - txg57eea5e4f326440a8fa8-0069029b14 status: 200 OK code: 200 - duration: 96.577573ms + duration: 7.247172ms - id: 53 request: proto: HTTP/1.1 @@ -6529,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/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d method: GET response: proto: HTTP/2.0 @@ -6539,29 +2780,21 @@ interactions: trailer: {} content_length: 460 uncompressed: false - 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"}}' + body: '{"snapshot": {"id": "0b287075-35eb-4caf-94b4-74f372ddea3d", "name": "test-acc-snapshot-import-lssd", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:03.934770+00:00", "modification_date": "2025-10-29T22:54:11.736669+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 1073741824, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - "460" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 132352c0-2262-4c01-ae94-953f0f345a5e + - bef5aef0-3d62-4371-b3c6-96b7af1223ed status: 200 OK code: 200 - duration: 106.379091ms + duration: 91.839026ms - id: 54 request: proto: HTTP/1.1 @@ -6578,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/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d method: GET response: proto: HTTP/2.0 @@ -6588,29 +2821,21 @@ interactions: trailer: {} content_length: 460 uncompressed: false - 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"}}' + body: '{"snapshot": {"id": "0b287075-35eb-4caf-94b4-74f372ddea3d", "name": "test-acc-snapshot-import-lssd", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:03.934770+00:00", "modification_date": "2025-10-29T22:54:11.736669+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 1073741824, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - "460" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - d4ff66c2-c08e-4c09-b9d1-dc216d35fd9e + - cbae28f4-598c-494b-a30d-02d96e376cea status: 200 OK code: 200 - duration: 97.852392ms + duration: 89.060371ms - id: 55 request: proto: HTTP/1.1 @@ -6627,7 +2852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d method: DELETE response: proto: HTTP/2.0 @@ -6639,25 +2864,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 08990a95-495d-4165-984c-c5c63f5cea8c + - b08c2401-a12d-4215-9a7c-ed64f2fbf26e status: 204 No Content code: 204 - duration: 178.197504ms + duration: 167.58435ms - id: 56 request: proto: HTTP/1.1 @@ -6674,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/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d method: GET response: proto: HTTP/2.0 @@ -6684,29 +2901,21 @@ interactions: trailer: {} content_length: 145 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"693c1a0c-fb1b-4902-b70f-c608a8497183","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "0b287075-35eb-4caf-94b4-74f372ddea3d"}' headers: Content-Length: - "145" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c7a71732-ee22-4d94-8cf7-98e3d5b3bf3d + - 5e87fcdd-f184-4356-a082-ec9aee910bf7 status: 404 Not Found code: 404 - duration: 31.622562ms + duration: 26.933672ms - id: 57 request: proto: HTTP/1.1 @@ -6715,16 +2924,18 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" - form: {} + form: + x-id: + - DeleteObject headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - aa3403b0-7755-4336-a92e-baaf47aa1106 + - dca01de9-f1ef-4a18-916b-94debd197ef7 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -6732,8 +2943,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150317Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?x-id=DeleteObject + - 20251029T225413Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?x-id=DeleteObject method: DELETE response: proto: HTTP/2.0 @@ -6746,14 +2957,14 @@ interactions: body: "" headers: Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 29 Oct 2025 22:54:13 GMT X-Amz-Id-2: - - txg20b86aed452040dfa7da-0068efb7b5 + - txg9a0e6f997bae49da89a7-0069029b15 X-Amz-Request-Id: - - txg20b86aed452040dfa7da-0068efb7b5 + - txg9a0e6f997bae49da89a7-0069029b15 status: 204 No Content code: 204 - duration: 115.498441ms + duration: 232.576126ms - id: 58 request: proto: HTTP/1.1 @@ -6762,7 +2973,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6771,7 +2982,7 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 82d11849-6985-4e65-ac49-d41a71075b37 + - 420769fa-6d5c-4b9a-8f00-5c923facdd67 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: @@ -6779,8 +2990,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20251015T150317Z - url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/ + - 20251029T225413Z + url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/ method: DELETE response: proto: HTTP/2.0 @@ -6793,14 +3004,14 @@ interactions: body: "" headers: Date: - - Wed, 15 Oct 2025 15:03:18 GMT + - Wed, 29 Oct 2025 22:54:13 GMT X-Amz-Id-2: - - txgd7235932deef40e18023-0068efb7b6 + - txge489cb2b03a447d3b6ab-0069029b15 X-Amz-Request-Id: - - txgd7235932deef40e18023-0068efb7b6 + - txge489cb2b03a447d3b6ab-0069029b15 status: 204 No Content code: 204 - duration: 105.781002ms + duration: 418.241416ms - id: 59 request: proto: HTTP/1.1 @@ -6817,7 +3028,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d method: GET response: proto: HTTP/2.0 @@ -6827,26 +3038,18 @@ interactions: trailer: {} content_length: 145 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"693c1a0c-fb1b-4902-b70f-c608a8497183","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "0b287075-35eb-4caf-94b4-74f372ddea3d"}' headers: Content-Length: - "145" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:18 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e120410d-0ce6-4b5f-baf7-795ac72a8a6e + - efa2ce6c-fae8-4915-9f7d-d2e335ac0e4f status: 404 Not Found code: 404 - duration: 36.138036ms + duration: 36.823966ms diff --git a/internal/services/instance/testdata/snapshot-server.cassette.yaml b/internal/services/instance/testdata/snapshot-server.cassette.yaml index 976d776e0..b709b2baa 100644 --- a/internal/services/instance/testdata/snapshot-server.cassette.yaml +++ b/internal/services/instance/testdata/snapshot-server.cassette.yaml @@ -13,7 +13,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -25,35 +27,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39263 + content_length: 39264 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}}}}' + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' headers: Content-Length: - - "39263" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "39264" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:56 GMT + - Wed, 29 Oct 2025 22:54:00 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 10c82e9c-e196-4b35-adf7-f8f9f72febc2 + - 180f7cc2-8cf2-4024-8384-470ed36aa943 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 46.855076ms + duration: 124.522356ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +60,9 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -80,33 +76,25 @@ interactions: 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}}}}' + body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - "14295" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:56 GMT + - Wed, 29 Oct 2025 22:54:00 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 83ea545a-2df5-4ccc-9d7a-3b2f8964aa7c + - 77ef0f87-3204-40eb-ba08-49d16fd31ae3 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 41.946115ms + duration: 36.993292ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +107,15 @@ interactions: remote_addr: "" request_uri: "" body: "" - form: {} + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests @@ -133,41 +129,33 @@ interactions: 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}' + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:56 GMT + - Wed, 29 Oct 2025 22:54:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f1e79498-1dd9-40a7-9d68-014c8a7dc91f + - ac42b195-8e82-4e69-99cb-4223dd81a3a2 status: 200 OK code: 200 - duration: 46.349579ms + duration: 38.57056ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 276 + content_length: 279 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"name":"tf-srv-wizardly-chaplygin","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,33 +170,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2160 + content_length: 2169 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: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"}}' + body: '{"server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-chaplygin", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:00.898303+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:75", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:00.898303+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2160" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2169" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:54:01 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9be13cba-92f7-441b-9ce0-da4e0b4d4b66 + - d429e375-1b74-408f-a380-28dfd8d9faeb status: 201 Created code: 201 - duration: 839.622205ms + duration: 792.707586ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded method: GET response: proto: HTTP/2.0 @@ -233,31 +213,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2160 + content_length: 2169 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: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"}}' + body: '{"server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-chaplygin", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:00.898303+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:75", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:00.898303+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2160" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2169" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 48b095d7-2534-4782-804f-661e8b633138 + - d5c2421c-fcb6-4769-a6a4-0a28f0ad4e97 status: 200 OK code: 200 - duration: 130.342778ms + duration: 138.418409ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded method: GET response: proto: HTTP/2.0 @@ -282,31 +254,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2160 + content_length: 2215 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: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"}}' + body: '{"server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-chaplygin", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:00.898303+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:75", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:00.898303+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2160" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2215" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f5704e64-ef2b-449e-a4e4-b60c74e5eedc + - aa1b3590-f7a6-44cf-90f0-9ed7c1bb0fff status: 200 OK code: 200 - duration: 126.189983ms + duration: 172.573192ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +289,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/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded/action method: POST response: proto: HTTP/2.0 @@ -335,31 +299,23 @@ interactions: trailer: {} content_length: 357 uncompressed: false - 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"}}' + body: '{"task": {"id": "c6c3d7f1-4fad-4008-9e1b-70a1d0213fe8", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/1950811c-fdcb-4292-ae51-aade3eed2ded/action", "href_result": "/servers/1950811c-fdcb-4292-ae51-aade3eed2ded", "started_at": "2025-10-29T22:54:01.668696+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:57 GMT + - Wed, 29 Oct 2025 22:54:01 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a1a93381-08f5-4abd-8322-8d7816339be7 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c6c3d7f1-4fad-4008-9e1b-70a1d0213fe8 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9a9536a7-a4f4-40b9-a5bb-3436034c6281 + - 2ff15e7b-de1f-4261-81ff-0051471fde3f status: 202 Accepted code: 202 - duration: 302.837096ms + duration: 295.702552ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded method: GET response: proto: HTTP/2.0 @@ -384,31 +340,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2182 + content_length: 2237 uncompressed: 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: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"}}' + body: '{"server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-chaplygin", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:00.898303+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:75", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:01.428729+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2182" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2237" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:58 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 03c4c9be-b412-4396-b439-160de5e172a5 + - ca7d2102-0118-4743-9cff-8f8ee5b480c9 status: 200 OK code: 200 - duration: 132.336535ms + duration: 162.710049ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded method: GET response: proto: HTTP/2.0 @@ -433,31 +381,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2284 + 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-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"}}' + body: '{"server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-chaplygin", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:00.898303+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:75", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:01.428729+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "104", "node_id": "48"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2284" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2340" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:03 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4ac53c62-810b-4a9b-879c-e48aa3a6da6a + - 415bb44b-7c7e-477e-895a-1ab3d82f2ee3 status: 200 OK code: 200 - duration: 149.638083ms + duration: 136.524449ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded method: GET response: proto: HTTP/2.0 @@ -482,31 +422,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2284 + 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-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"}}' + body: '{"server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-chaplygin", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:00.898303+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:75", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:01.428729+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "104", "node_id": "48"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2284" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2340" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:08 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5929faf5-5df8-409a-9b8b-c465668fb7e3 + - 59a8bbfe-5b00-4f37-b707-97fd602aee71 status: 200 OK code: 200 - duration: 128.321451ms + duration: 131.565289ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded method: GET response: proto: HTTP/2.0 @@ -531,31 +463,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + content_length: 2371 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-chaplygin", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:00.898303+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:75", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:13.771555+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "104", "node_id": "48"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2371" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 09b1dd79-60e5-4ae5-ba5f-bbaa5e389524 + - 0db73db5-1a8a-4851-b1fd-386e07dae77a status: 200 OK code: 200 - duration: 132.480423ms + duration: 117.789391ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded method: GET response: proto: HTTP/2.0 @@ -580,31 +504,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + content_length: 2371 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-chaplygin", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:00.898303+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:75", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:13.771555+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "104", "node_id": "48"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2371" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3dad10ab-a7da-486d-8d40-e639d520498e + - 21fa05f9-9665-4264-b707-567463b9d701 status: 200 OK code: 200 - duration: 161.487157ms + duration: 131.274767ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9880215-441f-4cb3-b1b8-aafa8e43b1b6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8502977f-722a-4b1b-9c02-4395a1c8208f method: GET response: proto: HTTP/2.0 @@ -629,31 +545,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 525 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"}}' + body: '{"volume": {"id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:00.898303+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "522" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "525" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bc1b928e-fc1f-41c2-aece-094bf8311666 + - cfe24a56-4c89-472e-9db0-815841c2e474 status: 200 OK code: 200 - duration: 105.149059ms + duration: 89.005088ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded/user_data method: GET response: proto: HTTP/2.0 @@ -680,29 +588,21 @@ interactions: trailer: {} content_length: 17 uncompressed: false - body: '{"user_data":[]}' + 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:13 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f7ebecac-37a3-4220-b3a6-646eb4dad059 + - f0ca7444-ee23-4fbc-be52-e836a25b8929 status: 200 OK code: 200 - duration: 93.120781ms + duration: 108.712078ms - id: 14 request: proto: HTTP/1.1 @@ -719,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/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded/private_nics method: GET response: proto: HTTP/2.0 @@ -729,45 +629,37 @@ interactions: trailer: {} content_length: 20 uncompressed: false - body: '{"private_nics":[]}' + 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:13 GMT + - Wed, 29 Oct 2025 22:54:17 GMT Link: - - ; rel="last" + - ; 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ea5885fd-6945-4168-9ef0-27b4a6c4d19e + - 7334d053-f550-4fb3-985d-3afebc3b41a8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 84.660442ms + duration: 100.345874ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 136 + content_length: 133 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-snap-practical-mestorf","volume_id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-snap-hungry-gagarin","volume_id":"8502977f-722a-4b1b-9c02-4395a1c8208f","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -782,31 +674,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 849 + content_length: 846 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: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"}}' + body: '{"snapshot": {"id": "1c9516a7-7264-433a-90c7-04d8fe2fbb79", "name": "tf-snap-hungry-gagarin", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:17.975775+00:00", "modification_date": "2025-10-29T22:54:17.975775+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}, "task": {"id": "61fe5e29-c241-4108-8f5d-3513287af122", "description": "volume_snapshot", "status": "pending", "href_from": "/snapshots", "href_result": "snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79", "started_at": "2025-10-29T22:54:18.149596+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "849" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "846" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9328d4ed-e86b-46ee-9ee0-5442bd1384f3 + - b770ec69-ba1e-42fc-b63c-3be710c3a58e status: 201 Created code: 201 - duration: 636.029562ms + duration: 578.054212ms - id: 16 request: proto: HTTP/1.1 @@ -823,7 +707,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 method: GET response: proto: HTTP/2.0 @@ -831,31 +715,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + 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: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"}}' + body: '{"snapshot": {"id": "1c9516a7-7264-433a-90c7-04d8fe2fbb79", "name": "tf-snap-hungry-gagarin", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:17.975775+00:00", "modification_date": "2025-10-29T22:54:17.975775+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "535" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:14 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 551594de-d40d-4bbb-8629-f1a21fdcd00b + - 5edd59c5-df18-4a87-84b5-8cd8f5e30d32 status: 200 OK code: 200 - duration: 102.117176ms + duration: 107.695648ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +748,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 method: GET response: proto: HTTP/2.0 @@ -880,31 +756,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + 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: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"}}' + body: '{"snapshot": {"id": "1c9516a7-7264-433a-90c7-04d8fe2fbb79", "name": "tf-snap-hungry-gagarin", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:17.975775+00:00", "modification_date": "2025-10-29T22:54:17.975775+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "535" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:19 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c725d721-6f37-4e95-9a0e-7f08bf7fd0f2 + - 26c693b4-7407-40a6-a7ed-a12846bac0da status: 200 OK code: 200 - duration: 88.131261ms + duration: 119.503389ms - id: 18 request: proto: HTTP/1.1 @@ -921,7 +789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 method: GET response: proto: HTTP/2.0 @@ -929,31 +797,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + 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: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"}}' + body: '{"snapshot": {"id": "1c9516a7-7264-433a-90c7-04d8fe2fbb79", "name": "tf-snap-hungry-gagarin", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:17.975775+00:00", "modification_date": "2025-10-29T22:54:17.975775+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "535" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:24 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8979e531-38c2-4313-a3e2-82ed9f8bf7e6 + - 15d30a70-8716-42a7-b880-3eb54a15a2e1 status: 200 OK code: 200 - duration: 108.977445ms + duration: 104.806699ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +830,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 method: GET response: proto: HTTP/2.0 @@ -978,31 +838,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + 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: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"}}' + body: '{"snapshot": {"id": "1c9516a7-7264-433a-90c7-04d8fe2fbb79", "name": "tf-snap-hungry-gagarin", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:17.975775+00:00", "modification_date": "2025-10-29T22:54:17.975775+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "535" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:29 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 03b54e2a-2b33-4d50-8c42-9d27938d44dc + - 85b06927-c01f-41ac-9087-28b3ea459d69 status: 200 OK code: 200 - duration: 100.870912ms + duration: 141.057837ms - id: 20 request: proto: HTTP/1.1 @@ -1019,7 +871,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 method: GET response: proto: HTTP/2.0 @@ -1027,31 +879,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + 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: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"}}' + body: '{"snapshot": {"id": "1c9516a7-7264-433a-90c7-04d8fe2fbb79", "name": "tf-snap-hungry-gagarin", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:17.975775+00:00", "modification_date": "2025-10-29T22:54:17.975775+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "535" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:35 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e7b6340a-0a50-419d-8e5d-fc3015d21bd6 + - 458519de-d5a1-487d-8fc1-e595f6c1fad0 status: 200 OK code: 200 - duration: 110.327576ms + duration: 135.468627ms - id: 21 request: proto: HTTP/1.1 @@ -1068,7 +912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 method: GET response: proto: HTTP/2.0 @@ -1076,31 +920,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + 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: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"}}' + body: '{"snapshot": {"id": "1c9516a7-7264-433a-90c7-04d8fe2fbb79", "name": "tf-snap-hungry-gagarin", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:17.975775+00:00", "modification_date": "2025-10-29T22:54:17.975775+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "535" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:40 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a56ddc1f-0046-4585-8223-19ab6aeda8b7 + - 6d6c919c-5f50-42a5-92da-2cae1dbb0199 status: 200 OK code: 200 - duration: 90.136647ms + duration: 94.758924ms - id: 22 request: proto: HTTP/1.1 @@ -1117,7 +953,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 method: GET response: proto: HTTP/2.0 @@ -1125,31 +961,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + 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: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"}}' + body: '{"snapshot": {"id": "1c9516a7-7264-433a-90c7-04d8fe2fbb79", "name": "tf-snap-hungry-gagarin", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:17.975775+00:00", "modification_date": "2025-10-29T22:54:17.975775+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "535" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:45 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e408d920-5cc8-4ed8-8ead-f7b1ec170927 + - 0e54fb08-443b-4e89-adf2-9b2fc5916b29 status: 200 OK code: 200 - duration: 94.104529ms + duration: 91.24754ms - id: 23 request: proto: HTTP/1.1 @@ -1166,7 +994,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 method: GET response: proto: HTTP/2.0 @@ -1174,31 +1002,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 532 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: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"}}' + body: '{"snapshot": {"id": "1c9516a7-7264-433a-90c7-04d8fe2fbb79", "name": "tf-snap-hungry-gagarin", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:17.975775+00:00", "modification_date": "2025-10-29T22:54:51.391301+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "available", "base_volume": {"id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "532" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:50 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6f8dc2a4-a85f-4f68-beae-bd2201dcd37b + - 4b36bdca-12d9-4a65-8809-b4b7c02cf604 status: 200 OK code: 200 - duration: 97.69775ms + duration: 94.910281ms - id: 24 request: proto: HTTP/1.1 @@ -1215,7 +1035,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 method: GET response: proto: HTTP/2.0 @@ -1223,31 +1043,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 532 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: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"}}' + body: '{"snapshot": {"id": "1c9516a7-7264-433a-90c7-04d8fe2fbb79", "name": "tf-snap-hungry-gagarin", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:17.975775+00:00", "modification_date": "2025-10-29T22:54:51.391301+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "available", "base_volume": {"id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "532" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:55 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c57dc92f-346a-4a7e-bfb1-c1e51e182556 + - 73993d17-1fac-4d0a-84dd-d33e19d5724b status: 200 OK code: 200 - duration: 104.97062ms + duration: 114.466641ms - id: 25 request: proto: HTTP/1.1 @@ -1264,7 +1076,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 method: GET response: proto: HTTP/2.0 @@ -1272,31 +1084,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 532 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: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"}}' + body: '{"snapshot": {"id": "1c9516a7-7264-433a-90c7-04d8fe2fbb79", "name": "tf-snap-hungry-gagarin", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:17.975775+00:00", "modification_date": "2025-10-29T22:54:51.391301+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "available", "base_volume": {"id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "532" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:00 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 43815580-5f75-4f4b-b144-810af2022df7 + - 3b263954-a201-4359-8e21-1268dc73671e status: 200 OK code: 200 - duration: 106.62215ms + duration: 100.673668ms - id: 26 request: proto: HTTP/1.1 @@ -1313,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/bec5e4e2-8823-4971-9179-76753093234e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded method: GET response: proto: HTTP/2.0 @@ -1321,31 +1125,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 2371 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: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"}}' + body: '{"server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-chaplygin", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:51.391301+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:75", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:13.771555+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "104", "node_id": "48"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2371" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:05 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 3ffe69cf-31ba-4a3c-a676-e9df3fbb9bb4 + - d3196608-e4b2-4465-a978-de77f556c879 status: 200 OK code: 200 - duration: 116.914101ms + duration: 121.285511ms - id: 27 request: proto: HTTP/1.1 @@ -1362,7 +1158,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8502977f-722a-4b1b-9c02-4395a1c8208f method: GET response: proto: HTTP/2.0 @@ -1370,31 +1166,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 525 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"}}' + body: '{"volume": {"id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:51.391301+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "525" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e1e44dd6-3948-469c-83a7-66e7815447da + - dd41dab2-62a9-4128-8503-beef9174038a status: 200 OK code: 200 - duration: 95.779127ms + duration: 109.208438ms - id: 28 request: proto: HTTP/1.1 @@ -1411,7 +1199,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded/user_data method: GET response: proto: HTTP/2.0 @@ -1419,31 +1207,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 17 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"}}' + body: '{"user_data": []}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "17" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:10 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b6177d47-69d6-41a3-bcd4-1fc321a182ee + - e84ed4a5-516f-4d32-a961-a78391c2cc38 status: 200 OK code: 200 - duration: 107.25245ms + duration: 94.262339ms - id: 29 request: proto: HTTP/1.1 @@ -1460,7 +1240,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded/private_nics method: GET response: proto: HTTP/2.0 @@ -1468,31 +1248,27 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 20 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"}}' + body: '{"private_nics": []}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "20" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:11 GMT + - Wed, 29 Oct 2025 22:54:55 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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7837ad32-a746-47e4-b10e-c62edc11af76 + - 43e4be33-007b-4b53-bbd1-07ca708dd5af + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 110.825079ms + duration: 101.538685ms - id: 30 request: proto: HTTP/1.1 @@ -1509,7 +1285,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 method: GET response: proto: HTTP/2.0 @@ -1517,31 +1293,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + 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-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"}}' + body: '{"snapshot": {"id": "1c9516a7-7264-433a-90c7-04d8fe2fbb79", "name": "tf-snap-hungry-gagarin", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:17.975775+00:00", "modification_date": "2025-10-29T22:54:51.391301+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "available", "base_volume": {"id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "532" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c4dc41bc-c5e6-491f-8bda-6f9e76b1df73 + - 3eb73415-222a-408e-b788-e3727d3936a3 status: 200 OK code: 200 - duration: 126.548631ms + duration: 96.206515ms - id: 31 request: proto: HTTP/1.1 @@ -1558,7 +1326,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9880215-441f-4cb3-b1b8-aafa8e43b1b6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 method: GET response: proto: HTTP/2.0 @@ -1566,31 +1334,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 532 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"}}' + body: '{"snapshot": {"id": "1c9516a7-7264-433a-90c7-04d8fe2fbb79", "name": "tf-snap-hungry-gagarin", "volume_type": "l_ssd", "creation_date": "2025-10-29T22:54:17.975775+00:00", "modification_date": "2025-10-29T22:54:51.391301+00:00", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "size": 20000000000, "state": "available", "base_volume": {"id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa"}, "tags": [], "zone": "fr-par-1", "error_details": null}}' headers: Content-Length: - - "522" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "532" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 39ea8b73-2e7f-44bf-9d14-bff65c1d9b30 + - 5f60e060-7f2d-4bad-834b-c48f8bf3d545 status: 200 OK code: 200 - duration: 104.912503ms + duration: 92.807458ms - id: 32 request: proto: HTTP/1.1 @@ -1607,39 +1367,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 + 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, 15 Oct 2025 15:05:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e9b808f-a64a-461f-be5e-4844ac085721 - status: 200 OK - code: 200 - duration: 92.274938ms + - c7614bad-8bb4-492c-a73c-c51d597a3355 + status: 204 No Content + code: 204 + duration: 142.968819ms - id: 33 request: proto: HTTP/1.1 @@ -1656,7 +1406,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 method: GET response: proto: HTTP/2.0 @@ -1664,35 +1414,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 145 uncompressed: false - body: '{"private_nics":[]}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "1c9516a7-7264-433a-90c7-04d8fe2fbb79"}' headers: Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "145" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:11 GMT - Link: - - ; rel="last" + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6faf2b12-3499-4f63-ace4-40066c1bcd65 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 116.08886ms + - ff8c2a8a-c8ac-42da-b6be-e896d7b1b65f + status: 404 Not Found + code: 404 + duration: 35.967799ms - id: 34 request: proto: HTTP/1.1 @@ -1709,7 +1447,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded method: GET response: proto: HTTP/2.0 @@ -1717,31 +1455,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 2325 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"}}' + body: '{"server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-chaplygin", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:51.391301+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:75", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:13.771555+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "104", "node_id": "48"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2325" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:11 GMT + - Wed, 29 Oct 2025 22:54: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2770f76a-1c86-46e8-8fc0-356e3538ec28 + - cb30dd15-3f33-4b7e-95ec-3e3bce01fd7d status: 200 OK code: 200 - duration: 97.699479ms + duration: 155.840419ms - id: 35 request: proto: HTTP/1.1 @@ -1758,7 +1488,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded method: GET response: proto: HTTP/2.0 @@ -1766,128 +1496,69 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 2325 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"}}' + body: '{"server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-chaplygin", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:51.391301+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:75", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:13.771555+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "104", "node_id": "48"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2325" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:12 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a2029fb0-717c-4350-b30e-7a5aae329e42 + - ebf40f07-91b3-4e06-9f47-77e748780cb8 status: 200 OK code: 200 - duration: 113.334636ms + duration: 342.994814ms - id: 36 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; 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: 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: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: - - 8c7c84f9-435e-404b-b50b-7f02f47593d1 - status: 204 No Content - code: 204 - duration: 164.297082ms - - 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.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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 145 + content_length: 353 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"bec5e4e2-8823-4971-9179-76753093234e","type":"not_found"}' + body: '{"task": {"id": "c4174fd8-3e71-451a-bb32-d0912285f02c", "description": "server_terminate", "status": "pending", "href_from": "/servers/1950811c-fdcb-4292-ae51-aade3eed2ded/action", "href_result": "/servers/1950811c-fdcb-4292-ae51-aade3eed2ded", "started_at": "2025-10-29T22:54:56.555767+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "145" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "353" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:12 GMT + - Wed, 29 Oct 2025 22:54:56 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c4174fd8-3e71-451a-bb32-d0912285f02c Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - a065d7b2-cb72-41aa-87ba-1ae183e9fbae - status: 404 Not Found - code: 404 - duration: 21.996614ms - - id: 38 + - b07cb506-7ca4-430a-94d8-e0abae74a01a + status: 202 Accepted + code: 202 + duration: 260.377503ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1903,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/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded method: GET response: proto: HTTP/2.0 @@ -1911,32 +1582,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + content_length: 2288 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-chaplygin", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:51.391301+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:75", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:56.350495+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "104", "node_id": "48"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2288" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:12 GMT + - Wed, 29 Oct 2025 22:54:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9d6e8ce1-904f-45de-9c1e-dac26ffbd3b8 + - 167e0704-d24f-47e0-9c0c-e9428ee0b59a status: 200 OK code: 200 - duration: 143.632635ms - - id: 39 + duration: 184.967466ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1952,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/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded method: GET response: proto: HTTP/2.0 @@ -1960,85 +1623,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + content_length: 2288 uncompressed: false - body: '{"server":{"allowed_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"}}' + body: '{"server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-chaplygin", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:51.391301+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:75", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:56.350495+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "104", "node_id": "48"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2288" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:12 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b6354eb7-bc02-40f5-a6a5-0fb46ae1a0bd + - ed01c6fa-1ec6-48a1-8665-004b85a1c30a status: 200 OK code: 200 - duration: 134.156037ms - - id: 40 - 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/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa/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/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" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:05:12 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4103b8e5-8135-4d35-9563-b1778ff3271e - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4ded956a-2601-40d1-b535-cf5d7b595b69 - status: 202 Accepted - code: 202 - duration: 309.135398ms - - id: 41 + duration: 136.482952ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2054,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/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded method: GET response: proto: HTTP/2.0 @@ -2062,32 +1664,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2278 + content_length: 2334 uncompressed: 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: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"}}' + body: '{"server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "tf-srv-wizardly-chaplygin", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8502977f-722a-4b1b-9c02-4395a1c8208f", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": {"id": "1950811c-fdcb-4292-ae51-aade3eed2ded", "name": "tf-srv-wizardly-chaplygin"}, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:51.391301+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:d0:41:75", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-10-29T22:54:00.898303+00:00", "modification_date": "2025-10-29T22:54:56.350495+00:00", "bootscript": null, "security_group": {"id": "5881315f-2400-43a0-ac75-08adf6cb8c12", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "104", "node_id": "48"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' headers: Content-Length: - - "2278" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "2334" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:13 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ac9c487e-5935-49ad-be6c-982fe9150dc7 + - 50ea0352-6d99-44c3-9894-e1038834d7c8 status: 200 OK code: 200 - duration: 132.553853ms - - id: 42 + duration: 119.275787ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2103,7 +1697,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded method: GET response: proto: HTTP/2.0 @@ -2113,30 +1707,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "1950811c-fdcb-4292-ae51-aade3eed2ded"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:18 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 06190ec2-41bf-4342-92e3-c3d901952b01 + - 873be9db-2042-4677-bd48-140531d14c14 status: 404 Not Found code: 404 - duration: 53.48618ms - - id: 43 + duration: 50.042641ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2152,7 +1738,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9880215-441f-4cb3-b1b8-aafa8e43b1b6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8502977f-722a-4b1b-9c02-4395a1c8208f method: GET response: proto: HTTP/2.0 @@ -2162,30 +1748,22 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "8502977f-722a-4b1b-9c02-4395a1c8208f"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:05:18 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 078c50c2-03e1-47da-aab2-9be4afc22c0a + - bc794a03-dba5-4fdf-8e6a-ef8462844e78 status: 404 Not Found code: 404 - duration: 37.706673ms - - id: 44 + duration: 29.394508ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2201,7 +1779,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9880215-441f-4cb3-b1b8-aafa8e43b1b6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8502977f-722a-4b1b-9c02-4395a1c8208f method: GET response: proto: HTTP/2.0 @@ -2211,26 +1789,18 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"8502977f-722a-4b1b-9c02-4395a1c8208f","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:05:18 GMT + - Wed, 29 Oct 2025 22:55: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 9b148050-db85-4ff6-8988-0b7082c9748e + - 187e9385-70e2-4f61-8866-c9e79c5bbea5 status: 404 Not Found code: 404 - duration: 19.167751ms + duration: 19.733022ms diff --git a/internal/services/instance/testdata/volume-basic.cassette.yaml b/internal/services/instance/testdata/volume-basic.cassette.yaml index 010aced61..200845209 100644 --- a/internal/services/instance/testdata/volume-basic.cassette.yaml +++ b/internal/services/instance/testdata/volume-basic.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 150 + content_length: 146 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vol-serene-antonelli","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"volume_type":"l_ssd","size":20000000000}' + body: '{"name":"tf-vol-angry-panini","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"volume_type":"l_ssd","size":20000000000}' form: {} headers: Content-Type: @@ -27,33 +27,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 461 + content_length: 457 uncompressed: false - 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"}}' + body: '{"volume": {"id": "3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3", "name": "tf-vol-angry-panini", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:54.382410+00:00", "modification_date": "2025-10-29T22:53:54.382410+00:00", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "461" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "457" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:24 GMT + - Wed, 29 Oct 2025 22:53:54 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/06d5871f-9092-40a3-b244-82e7609434c9 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f62e3825-1c59-47ac-ad15-a80136ea8d62 + - 9e49b05c-c709-47c9-9b58-b49d5b2ccb27 status: 201 Created code: 201 - duration: 492.349885ms + duration: 222.340804ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 method: GET response: proto: HTTP/2.0 @@ -78,31 +70,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 461 + content_length: 457 uncompressed: false - 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"}}' + body: '{"volume": {"id": "3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3", "name": "tf-vol-angry-panini", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:54.382410+00:00", "modification_date": "2025-10-29T22:53:54.382410+00:00", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "461" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "457" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c143ddb1-aaeb-44ea-b74e-49699b6786bc + - a93f80f1-f153-45b8-914e-b2acd29f3416 status: 200 OK code: 200 - duration: 104.31815ms + duration: 87.384052ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 method: GET response: proto: HTTP/2.0 @@ -127,31 +111,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 461 + content_length: 457 uncompressed: false - 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"}}' + body: '{"volume": {"id": "3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3", "name": "tf-vol-angry-panini", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:54.382410+00:00", "modification_date": "2025-10-29T22:53:54.382410+00:00", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "461" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "457" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:24 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c085615d-4cb6-42b5-98c3-c7c682e02bcd + - 62ac84da-e9b4-4030-a2ca-ec024893d88e status: 200 OK code: 200 - duration: 100.165025ms + duration: 97.5232ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 method: GET response: proto: HTTP/2.0 @@ -176,31 +152,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 461 + content_length: 457 uncompressed: false - 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"}}' + body: '{"volume": {"id": "3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3", "name": "tf-vol-angry-panini", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:54.382410+00:00", "modification_date": "2025-10-29T22:53:54.382410+00:00", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "461" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "457" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 89df3247-551f-4abb-b553-b09e8d691e21 + - 4c4e2964-9ff5-4dfd-9a36-f912e32df89e status: 200 OK code: 200 - duration: 90.879869ms + duration: 96.503223ms - id: 4 request: proto: HTTP/1.1 @@ -217,7 +185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 method: GET response: proto: HTTP/2.0 @@ -225,31 +193,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 461 + content_length: 457 uncompressed: false - 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"}}' + body: '{"volume": {"id": "3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3", "name": "tf-vol-angry-panini", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:54.382410+00:00", "modification_date": "2025-10-29T22:53:54.382410+00:00", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "461" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "457" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 93c0b122-c098-4365-8dd9-26251759aef8 + - b2e78df9-5b41-4b20-a9e3-5cadb01c66ca status: 200 OK code: 200 - duration: 108.446861ms + duration: 97.703126ms - id: 5 request: proto: HTTP/1.1 @@ -266,7 +226,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 method: GET response: proto: HTTP/2.0 @@ -274,31 +234,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 461 + content_length: 457 uncompressed: false - 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"}}' + body: '{"volume": {"id": "3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3", "name": "tf-vol-angry-panini", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:54.382410+00:00", "modification_date": "2025-10-29T22:53:54.382410+00:00", "tags": ["test-terraform"], "zone": "fr-par-1"}}' headers: Content-Length: - - "461" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "457" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fb3a2bb5-5ede-4909-bb10-a9632bdc89e1 + - 7f535549-cbb2-4aca-836e-13430f399ad3 status: 200 OK code: 200 - duration: 89.713412ms + duration: 98.789949ms - id: 6 request: proto: HTTP/1.1 @@ -317,7 +269,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/volumes/06d5871f-9092-40a3-b244-82e7609434c9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 method: PATCH response: proto: HTTP/2.0 @@ -327,29 +279,21 @@ interactions: trailer: {} content_length: 436 uncompressed: false - 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"}}' + body: '{"volume": {"id": "3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3", "name": "terraform-test", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:54.382410+00:00", "modification_date": "2025-10-29T22:53:55.488610+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 54e34c3e-937a-4107-9bf1-f6f3e2942b50 + - e74db1bf-405b-4e7a-ad7d-fe3e08a2cf6d status: 200 OK code: 200 - duration: 135.741971ms + duration: 117.698273ms - id: 7 request: proto: HTTP/1.1 @@ -366,7 +310,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 method: GET response: proto: HTTP/2.0 @@ -376,29 +320,21 @@ interactions: trailer: {} content_length: 436 uncompressed: false - 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"}}' + body: '{"volume": {"id": "3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3", "name": "terraform-test", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:54.382410+00:00", "modification_date": "2025-10-29T22:53:55.488610+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:25 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ab2e4e14-936b-4aaa-aef4-919998cca410 + - cc7a47dc-6d0f-4ce0-9198-c9a3fdb889dc status: 200 OK code: 200 - duration: 85.04985ms + duration: 80.766228ms - id: 8 request: proto: HTTP/1.1 @@ -415,7 +351,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 method: GET response: proto: HTTP/2.0 @@ -425,29 +361,21 @@ interactions: trailer: {} content_length: 436 uncompressed: false - 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"}}' + body: '{"volume": {"id": "3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3", "name": "terraform-test", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:54.382410+00:00", "modification_date": "2025-10-29T22:53:55.488610+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 14862ff4-3454-4c16-a55a-e8e815f7b460 + - e9b8efa3-f4d5-42f7-b82c-8f2a16f66525 status: 200 OK code: 200 - duration: 94.577531ms + duration: 80.61242ms - id: 9 request: proto: HTTP/1.1 @@ -464,7 +392,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 method: GET response: proto: HTTP/2.0 @@ -474,29 +402,21 @@ interactions: trailer: {} content_length: 436 uncompressed: false - 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"}}' + body: '{"volume": {"id": "3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3", "name": "terraform-test", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:54.382410+00:00", "modification_date": "2025-10-29T22:53:55.488610+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1e84d94f-33e3-4fe2-8e14-0bfe9408a6bd + - c72914ee-a4dd-4f17-90bf-daaee1b9213b status: 200 OK code: 200 - duration: 91.011807ms + duration: 138.837751ms - id: 10 request: proto: HTTP/1.1 @@ -513,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/volumes/06d5871f-9092-40a3-b244-82e7609434c9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 method: GET response: proto: HTTP/2.0 @@ -523,29 +443,21 @@ interactions: trailer: {} content_length: 436 uncompressed: false - 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"}}' + body: '{"volume": {"id": "3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3", "name": "terraform-test", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:54.382410+00:00", "modification_date": "2025-10-29T22:53:55.488610+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 6aede94d-4fcd-40e9-9092-f508aedd3da8 + - 43cfafae-3a25-463b-91d8-8c5750b4db5b status: 200 OK code: 200 - duration: 92.163095ms + duration: 89.913081ms - id: 11 request: proto: HTTP/1.1 @@ -562,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/06d5871f-9092-40a3-b244-82e7609434c9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 method: DELETE response: proto: HTTP/2.0 @@ -574,25 +486,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2f54811e-2be0-44c5-96c8-f799795747bb + - e2ef3ca9-f5a4-4977-813d-7b19fb9ce56d status: 204 No Content code: 204 - duration: 143.101427ms + duration: 137.401395ms - id: 12 request: proto: HTTP/1.1 @@ -609,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/volumes/06d5871f-9092-40a3-b244-82e7609434c9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 method: GET response: proto: HTTP/2.0 @@ -619,26 +523,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"06d5871f-9092-40a3-b244-82e7609434c9","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:04:26 GMT + - Wed, 29 Oct 2025 22:53:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 12973a97-665e-4abb-9b59-54f2a92141fb + - 8f10ad8c-3a94-48ba-92b7-e956dff4e3c0 status: 404 Not Found code: 404 - duration: 25.426556ms + duration: 25.679376ms 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 75ae59280..1decbd034 100644 --- a/internal/services/instance/testdata/volume-different-name-generated.cassette.yaml +++ b/internal/services/instance/testdata/volume-different-name-generated.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 126 + content_length: 119 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vol-mystifying-galileo","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"l_ssd","size":20000000000}' + body: '{"name":"tf-vol-nice-merkle","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"l_ssd","size":20000000000}' form: {} headers: Content-Type: @@ -27,33 +27,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 440 uncompressed: false - 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"}}' + body: '{"volume": {"id": "505e8f0c-928e-4002-b3e3-c719bc4b58da", "name": "tf-vol-nice-merkle", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:52.091544+00:00", "modification_date": "2025-10-29T22:53:52.091544+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "440" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT + - Wed, 29 Oct 2025 22:53:52 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c7019bd-a6e8-4d4f-a699-649b83fdec37 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b5113011-5a3b-4764-9716-6ec75fc24503 + - e1fc1e1c-2cc9-492c-a1c2-0a05d98cb142 status: 201 Created code: 201 - duration: 214.001529ms + duration: 205.405258ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da method: GET response: proto: HTTP/2.0 @@ -78,31 +70,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 440 uncompressed: false - 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"}}' + body: '{"volume": {"id": "505e8f0c-928e-4002-b3e3-c719bc4b58da", "name": "tf-vol-nice-merkle", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:52.091544+00:00", "modification_date": "2025-10-29T22:53:52.091544+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "440" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 94740ead-424e-4648-a311-dc6f5b28c670 + - fca1e292-fe1e-4b4b-af98-c2cd686a2c64 status: 200 OK code: 200 - duration: 92.205037ms + duration: 89.299883ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da method: GET response: proto: HTTP/2.0 @@ -127,31 +111,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 440 uncompressed: false - 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"}}' + body: '{"volume": {"id": "505e8f0c-928e-4002-b3e3-c719bc4b58da", "name": "tf-vol-nice-merkle", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:52.091544+00:00", "modification_date": "2025-10-29T22:53:52.091544+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "440" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 829be53c-8d4f-48ac-ac47-b9e3822517ba + - 651a1511-8d03-45cc-8513-fdb2de796d5d status: 200 OK code: 200 - duration: 95.726918ms + duration: 79.311807ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da method: GET response: proto: HTTP/2.0 @@ -176,31 +152,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 440 uncompressed: false - 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"}}' + body: '{"volume": {"id": "505e8f0c-928e-4002-b3e3-c719bc4b58da", "name": "tf-vol-nice-merkle", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:52.091544+00:00", "modification_date": "2025-10-29T22:53:52.091544+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "440" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:51 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - c5c6eb0c-f0b6-425b-be81-23b4877489a2 + - fb5b7e9a-359a-4f00-938a-4b1bc56ae1c4 status: 200 OK code: 200 - duration: 113.350411ms + duration: 83.573877ms - id: 4 request: proto: HTTP/1.1 @@ -217,7 +185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da method: GET response: proto: HTTP/2.0 @@ -225,31 +193,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 440 uncompressed: false - 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"}}' + body: '{"volume": {"id": "505e8f0c-928e-4002-b3e3-c719bc4b58da", "name": "tf-vol-nice-merkle", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:52.091544+00:00", "modification_date": "2025-10-29T22:53:52.091544+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "440" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 23cdf2cb-e2e4-453e-92bd-31fcd0132233 + - 3ec5f4a7-494d-4e07-845f-8b9c0236c816 status: 200 OK code: 200 - duration: 89.121848ms + duration: 105.761122ms - id: 5 request: proto: HTTP/1.1 @@ -266,7 +226,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da method: GET response: proto: HTTP/2.0 @@ -274,31 +234,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 440 uncompressed: false - 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"}}' + body: '{"volume": {"id": "505e8f0c-928e-4002-b3e3-c719bc4b58da", "name": "tf-vol-nice-merkle", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:52.091544+00:00", "modification_date": "2025-10-29T22:53:52.091544+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "440" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - baf991d2-a860-40f0-9516-487a4eed1d8c + - 57ff75df-de7b-4e18-b8fc-42d4810fbf33 status: 200 OK code: 200 - duration: 97.740433ms + duration: 91.2975ms - id: 6 request: proto: HTTP/1.1 @@ -315,7 +267,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da method: GET response: proto: HTTP/2.0 @@ -323,31 +275,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 440 uncompressed: false - 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"}}' + body: '{"volume": {"id": "505e8f0c-928e-4002-b3e3-c719bc4b58da", "name": "tf-vol-nice-merkle", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:52.091544+00:00", "modification_date": "2025-10-29T22:53:52.091544+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "440" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 8ec1ef66-5fbf-4e38-bc37-341440e9dfd9 + - 58a0fadd-a843-4a49-bc82-c2eb5ee5cc0d status: 200 OK code: 200 - duration: 124.93212ms + duration: 88.904684ms - id: 7 request: proto: HTTP/1.1 @@ -364,7 +308,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da method: DELETE response: proto: HTTP/2.0 @@ -376,25 +320,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 800a39b8-88fa-4067-8655-1eb12f5b61b2 + - 2e1ce0a5-d899-4f4a-ba00-c7cab037805d status: 204 No Content code: 204 - duration: 139.35805ms + duration: 143.55465ms - id: 8 request: proto: HTTP/1.1 @@ -411,7 +347,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da method: GET response: proto: HTTP/2.0 @@ -421,26 +357,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1c7019bd-a6e8-4d4f-a699-649b83fdec37","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "505e8f0c-928e-4002-b3e3-c719bc4b58da"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:52 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 17352019-c342-40f1-a349-5c9f71fa8b38 + - 154d7707-2b4c-4d62-81b5-8aee62219e09 status: 404 Not Found code: 404 - duration: 30.246935ms + duration: 32.282743ms 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 85665a139..7bfc4c8cb 100644 --- a/internal/services/instance/testdata/volume-resize-not-block.cassette.yaml +++ b/internal/services/instance/testdata/volume-resize-not-block.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 121 + content_length: 120 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vol-magical-knuth","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"l_ssd","size":20000000000}' + body: '{"name":"tf-vol-jolly-galois","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"l_ssd","size":20000000000}' form: {} headers: Content-Type: @@ -27,33 +27,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 441 uncompressed: false - 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"}}' + body: '{"volume": {"id": "fde8340c-6c3d-49f3-83c7-e37e8a1e65c8", "name": "tf-vol-jolly-galois", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.640566+00:00", "modification_date": "2025-10-29T22:53:48.640566+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "441" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:53:48 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cfc553e8-cbfc-41ec-8b60-f0ff99680a51 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - bf25c62b-e039-4f10-b6f3-653ff4d0879a + - c23323ce-2386-47b9-bb40-6c05b9b9c15a status: 201 Created code: 201 - duration: 234.033672ms + duration: 253.350172ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 method: GET response: proto: HTTP/2.0 @@ -78,31 +70,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 441 uncompressed: false - 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"}}' + body: '{"volume": {"id": "fde8340c-6c3d-49f3-83c7-e37e8a1e65c8", "name": "tf-vol-jolly-galois", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.640566+00:00", "modification_date": "2025-10-29T22:53:48.640566+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "441" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 444667ba-1350-4728-a4ea-62a5894b662d + - 19226f7c-9a37-4ebe-b955-1e5357a97354 status: 200 OK code: 200 - duration: 90.313513ms + duration: 102.301292ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 method: GET response: proto: HTTP/2.0 @@ -127,31 +111,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 441 uncompressed: false - 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"}}' + body: '{"volume": {"id": "fde8340c-6c3d-49f3-83c7-e37e8a1e65c8", "name": "tf-vol-jolly-galois", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.640566+00:00", "modification_date": "2025-10-29T22:53:48.640566+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "441" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 001470c1-58bd-4e78-8b72-5ca29b85c662 + - 43013534-b2bf-4dcb-943e-0362636e1c42 status: 200 OK code: 200 - duration: 85.112635ms + duration: 98.739422ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 method: GET response: proto: HTTP/2.0 @@ -176,31 +152,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 441 uncompressed: false - 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"}}' + body: '{"volume": {"id": "fde8340c-6c3d-49f3-83c7-e37e8a1e65c8", "name": "tf-vol-jolly-galois", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.640566+00:00", "modification_date": "2025-10-29T22:53:48.640566+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "441" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 955d38fb-3eb2-4ba3-a1e2-0772384289f0 + - e31f7f4d-ed90-4874-b4e1-aae5d51e8dab status: 200 OK code: 200 - duration: 100.137148ms + duration: 114.779564ms - id: 4 request: proto: HTTP/1.1 @@ -217,7 +185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 method: GET response: proto: HTTP/2.0 @@ -225,31 +193,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 441 uncompressed: false - 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"}}' + body: '{"volume": {"id": "fde8340c-6c3d-49f3-83c7-e37e8a1e65c8", "name": "tf-vol-jolly-galois", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.640566+00:00", "modification_date": "2025-10-29T22:53:48.640566+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "441" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - fe0d2c72-e8ff-4de0-bc37-a22dba71b78b + - 7a7d2eef-ad7f-4ff0-80b4-5cb74d7ced1e status: 200 OK code: 200 - duration: 100.184156ms + duration: 85.927367ms - id: 5 request: proto: HTTP/1.1 @@ -266,7 +226,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 method: GET response: proto: HTTP/2.0 @@ -274,31 +234,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 441 uncompressed: false - 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"}}' + body: '{"volume": {"id": "fde8340c-6c3d-49f3-83c7-e37e8a1e65c8", "name": "tf-vol-jolly-galois", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.640566+00:00", "modification_date": "2025-10-29T22:53:48.640566+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "441" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 5138cdc6-2e6c-41ab-af92-5b13eb6c647a + - 36eab6ee-c759-4f50-87ea-a72251b23aa6 status: 200 OK code: 200 - duration: 118.526156ms + duration: 85.59186ms - id: 6 request: proto: HTTP/1.1 @@ -315,7 +267,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 method: GET response: proto: HTTP/2.0 @@ -323,31 +275,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 441 uncompressed: false - 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"}}' + body: '{"volume": {"id": "fde8340c-6c3d-49f3-83c7-e37e8a1e65c8", "name": "tf-vol-jolly-galois", "volume_type": "l_ssd", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:48.640566+00:00", "modification_date": "2025-10-29T22:53:48.640566+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "441" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:55 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - e9fad18b-9743-4db9-93d8-5927098a10e9 + - 90239f18-3d1c-420c-b471-2cd015f0b5aa status: 200 OK code: 200 - duration: 91.940333ms + duration: 104.947601ms - id: 7 request: proto: HTTP/1.1 @@ -364,7 +308,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 method: DELETE response: proto: HTTP/2.0 @@ -376,25 +320,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - ce4f47e1-39b8-48fb-b576-f9abfc3b9b3d + - 3e5f3028-b795-48b7-95ba-f512f780b469 status: 204 No Content code: 204 - duration: 145.237025ms + duration: 157.306061ms - id: 8 request: proto: HTTP/1.1 @@ -411,7 +347,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 method: GET response: proto: HTTP/2.0 @@ -421,26 +357,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"cfc553e8-cbfc-41ec-8b60-f0ff99680a51","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "fde8340c-6c3d-49f3-83c7-e37e8a1e65c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:56 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 2fb3cd1b-74af-4d73-a4b5-65f50af875b9 + - 453077cc-51e3-4063-903c-11ac25e9811c status: 404 Not Found code: 404 - duration: 45.382937ms + duration: 31.538941ms diff --git a/internal/services/instance/testdata/volume-scratch.cassette.yaml b/internal/services/instance/testdata/volume-scratch.cassette.yaml index bd86a1d8c..51d2ee69e 100644 --- a/internal/services/instance/testdata/volume-scratch.cassette.yaml +++ b/internal/services/instance/testdata/volume-scratch.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 124 + content_length: 123 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vol-awesome-wilson","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"scratch","size":20000000000}' + body: '{"name":"tf-vol-amazing-tharp","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"scratch","size":20000000000}' form: {} headers: Content-Type: @@ -27,33 +27,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 444 uncompressed: false - 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"}}' + body: '{"volume": {"id": "1f39febc-62b8-4a74-8de7-0dd9ac5473c8", "name": "tf-vol-amazing-tharp", "volume_type": "scratch", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:47.148636+00:00", "modification_date": "2025-10-29T22:53:47.148636+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "444" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:53 GMT + - Wed, 29 Oct 2025 22:53:47 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53449c04-3c85-4341-89e3-d5391d6189c5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1f39febc-62b8-4a74-8de7-0dd9ac5473c8 Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 23e3a250-b86d-4e58-a274-36ce849aae08 + - f2984b81-8d3e-464b-82dd-36fe07c1e4b5 status: 201 Created code: 201 - duration: 204.663279ms + duration: 199.4934ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +62,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1f39febc-62b8-4a74-8de7-0dd9ac5473c8 method: GET response: proto: HTTP/2.0 @@ -78,31 +70,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 444 uncompressed: false - 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"}}' + body: '{"volume": {"id": "1f39febc-62b8-4a74-8de7-0dd9ac5473c8", "name": "tf-vol-amazing-tharp", "volume_type": "scratch", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:47.148636+00:00", "modification_date": "2025-10-29T22:53:47.148636+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "444" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:53 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 4e4b6ae9-fb39-4281-979d-1bc630a8d7f9 + - a7cd1417-4f25-4498-ac88-90ef072f100e status: 200 OK code: 200 - duration: 94.459664ms + duration: 78.467317ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1f39febc-62b8-4a74-8de7-0dd9ac5473c8 method: GET response: proto: HTTP/2.0 @@ -127,31 +111,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 444 uncompressed: false - 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"}}' + body: '{"volume": {"id": "1f39febc-62b8-4a74-8de7-0dd9ac5473c8", "name": "tf-vol-amazing-tharp", "volume_type": "scratch", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:47.148636+00:00", "modification_date": "2025-10-29T22:53:47.148636+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "444" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:53 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - f5d183a3-15d6-4b81-946d-83122d20565b + - 6874d9cf-5e9f-4c0d-84b3-884fabe7c4ed status: 200 OK code: 200 - duration: 96.291327ms + duration: 94.488955ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1f39febc-62b8-4a74-8de7-0dd9ac5473c8 method: GET response: proto: HTTP/2.0 @@ -176,31 +152,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 444 uncompressed: false - 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"}}' + body: '{"volume": {"id": "1f39febc-62b8-4a74-8de7-0dd9ac5473c8", "name": "tf-vol-amazing-tharp", "volume_type": "scratch", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:47.148636+00:00", "modification_date": "2025-10-29T22:53:47.148636+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "444" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:53 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 1f04342b-3ef0-47be-ac34-e74b92461b70 + - 569c4878-d575-452d-96e6-52dced7e444d status: 200 OK code: 200 - duration: 101.677353ms + duration: 87.478927ms - id: 4 request: proto: HTTP/1.1 @@ -217,7 +185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1f39febc-62b8-4a74-8de7-0dd9ac5473c8 method: GET response: proto: HTTP/2.0 @@ -225,31 +193,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 444 uncompressed: false - 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"}}' + body: '{"volume": {"id": "1f39febc-62b8-4a74-8de7-0dd9ac5473c8", "name": "tf-vol-amazing-tharp", "volume_type": "scratch", "export_uri": null, "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "server": null, "size": 20000000000, "state": "available", "creation_date": "2025-10-29T22:53:47.148636+00:00", "modification_date": "2025-10-29T22:53:47.148636+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "444" Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - b60efbfe-d7fd-4c5e-9f04-281e5dc96f0c + - 7e974bf4-dd97-4e21-80fa-4dcff78fe7c8 status: 200 OK code: 200 - duration: 87.137581ms + duration: 93.432439ms - id: 5 request: proto: HTTP/1.1 @@ -266,7 +226,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1f39febc-62b8-4a74-8de7-0dd9ac5473c8 method: DELETE response: proto: HTTP/2.0 @@ -278,25 +238,17 @@ interactions: uncompressed: false body: "" headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 7624ab07-2f6e-498f-ad54-30713c24364b + - 6368ce38-0d88-4bbd-82fd-a66f227a8d0a status: 204 No Content code: 204 - duration: 167.885003ms + duration: 152.160749ms - id: 6 request: proto: HTTP/1.1 @@ -313,7 +265,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1f39febc-62b8-4a74-8de7-0dd9ac5473c8 method: GET response: proto: HTTP/2.0 @@ -323,26 +275,18 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"53449c04-3c85-4341-89e3-d5391d6189c5","type":"not_found"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "1f39febc-62b8-4a74-8de7-0dd9ac5473c8"}' headers: Content-Length: - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:54 GMT + - Wed, 29 Oct 2025 22:53: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 + - Scaleway API Gateway (fr-par-3;edge03) X-Request-Id: - - 21789751-dd6b-47f2-94e9-222abd2465cc + - 0f38536a-d172-4112-b445-f8c556d82b88 status: 404 Not Found code: 404 - duration: 35.252457ms + duration: 33.998891ms